158 lines
5.3 KiB
Go
158 lines
5.3 KiB
Go
package pdu
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
)
|
|
|
|
// region encode
|
|
// See examples: https://www.openmarket.com/docs/Content/apis/v4smpp/mt-examples.htm
|
|
func TestEncodeFunctionCorrectlyEncodesAllFields(t *testing.T) {
|
|
p := &SUBMIT_SM{
|
|
header: &PDU_HEADER{
|
|
command_length: 0,
|
|
command_id: 4,
|
|
command_status: 0,
|
|
sequence_number: 378019,
|
|
},
|
|
service_type: "OMV4",
|
|
source_addr_ton: 3,
|
|
source_addr_npi: 1,
|
|
source_addr: "80362",
|
|
dest_addr_ton: 1,
|
|
dest_addr_npi: 1,
|
|
destination_addr: "812345001000",
|
|
esm_class: 0,
|
|
protocol_id: 0,
|
|
priority_flag: 0,
|
|
schedule_delivery_time: "",
|
|
validity_period: "180105120000004+",
|
|
registered_delivery: 1,
|
|
data_coding: 1, // The example uses 0 and claims to use GSM but the message is encoded as ASCII...
|
|
sm_default_msg_id: 0,
|
|
short_message: "Reply Yes to opt in or No to opt out.",
|
|
}
|
|
p.UpdateSize()
|
|
buf := ByteBufferPool.Get(p.Size())
|
|
err := p.Encode(buf)
|
|
if err != nil {
|
|
t.Fatalf("expected no error, got %v", err)
|
|
}
|
|
|
|
expected := []byte{0, 0, 0, 107, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 196, 163, 79, 77, 86, 52, 0, 3, 1, 56, 48, 51, 54, 50, 0, 1, 1, 56, 49, 50, 51, 52, 53, 48, 48, 49, 48, 48, 48, 0, 0, 0, 0, 0, 49, 56, 48, 49, 48, 53, 49, 50, 48, 48, 48, 48, 48, 48, 52, 43, 0, 1, 0, 1, 0, 37, 82, 101, 112, 108, 121, 32, 89, 101, 115, 32, 116, 111, 32, 111, 112, 116, 32, 105, 110, 32, 111, 114, 32, 78, 111, 32, 116, 111, 32, 111, 112, 116, 32, 111, 117, 116, 46}
|
|
if !bytes.Equal(buf.Bytes(), expected) {
|
|
t.Fatalf("expected %v, got %v", expected, buf.Bytes())
|
|
}
|
|
}
|
|
|
|
func TestEncodeFunctionCorrectlyEncodesAllFieldsGSM7Message(t *testing.T) {
|
|
p := &SUBMIT_SM{
|
|
header: &PDU_HEADER{
|
|
command_length: 0,
|
|
command_id: 4,
|
|
command_status: 0,
|
|
sequence_number: 378019,
|
|
},
|
|
service_type: "OMV4",
|
|
source_addr_ton: 3,
|
|
source_addr_npi: 1,
|
|
source_addr: "80362",
|
|
dest_addr_ton: 1,
|
|
dest_addr_npi: 1,
|
|
destination_addr: "812345001000",
|
|
esm_class: 0,
|
|
protocol_id: 0,
|
|
priority_flag: 0,
|
|
schedule_delivery_time: "",
|
|
validity_period: "180105120000004+",
|
|
registered_delivery: 1,
|
|
data_coding: 0, // The example uses 0 and claims to use GSM but the message is encoded as ASCII...
|
|
sm_default_msg_id: 0,
|
|
short_message: "Reply Yes to opt in or No to opt out.",
|
|
}
|
|
p.UpdateSize()
|
|
buf := ByteBufferPool.Get(p.Size())
|
|
err := p.Encode(buf)
|
|
if err != nil {
|
|
t.Fatalf("expected no error, got %v", err)
|
|
}
|
|
|
|
expected := []byte{0, 0, 0, 103, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 196, 163, 79, 77, 86, 52, 0, 3, 1, 56, 48, 51, 54, 50, 0, 1, 1, 56, 49, 50, 51, 52, 53, 48, 48, 49, 48, 48, 48, 0, 0, 0, 0, 0, 49, 56, 48, 49, 48, 53, 49, 50, 48, 48, 48, 48, 48, 48, 52, 43, 0, 1, 0, 0, 0, 33, 210, 50, 156, 157, 7, 101, 203, 115, 16, 253, 13, 122, 195, 233, 160, 180, 27, 244, 150, 131, 156, 111, 16, 253, 13, 122, 195, 233, 160, 119, 157, 238, 2}
|
|
if !bytes.Equal(buf.Bytes(), expected) {
|
|
t.Fatalf("expected %v, got %v", expected, buf.Bytes())
|
|
}
|
|
}
|
|
|
|
// region decode
|
|
|
|
// region size
|
|
func TestCalculateSizeTypicalInstance(t *testing.T) {
|
|
p := &SUBMIT_SM{
|
|
service_type: "test_service",
|
|
source_addr: "12345",
|
|
destination_addr: "67890",
|
|
schedule_delivery_time: "",
|
|
validity_period: "",
|
|
short_message: "Hello, World!",
|
|
data_coding: 1,
|
|
}
|
|
expectedSize := 68
|
|
actualSize := p.Size()
|
|
if actualSize != expectedSize {
|
|
t.Errorf("Expected size %d, but got %d", expectedSize, actualSize)
|
|
}
|
|
}
|
|
|
|
func TestCalculateSizeTypicalGSM7Instance(t *testing.T) {
|
|
p := &SUBMIT_SM{
|
|
service_type: "test_service",
|
|
source_addr: "12345",
|
|
destination_addr: "67890",
|
|
schedule_delivery_time: "",
|
|
validity_period: "",
|
|
short_message: "Hello, World!",
|
|
data_coding: 0,
|
|
}
|
|
expectedSize := 67
|
|
actualSize := p.Size()
|
|
if actualSize != expectedSize {
|
|
t.Errorf("Expected size %d, but got %d", expectedSize, actualSize)
|
|
}
|
|
}
|
|
|
|
func TestCalculateSizeMaxLengths(t *testing.T) {
|
|
maxLen := 255
|
|
p := &SUBMIT_SM{
|
|
service_type: string(make([]byte, maxLen)),
|
|
source_addr: string(make([]byte, maxLen)),
|
|
destination_addr: string(make([]byte, maxLen)),
|
|
schedule_delivery_time: string(make([]byte, maxLen)),
|
|
validity_period: string(make([]byte, maxLen)),
|
|
short_message: string(make([]byte, maxLen)),
|
|
data_coding: 1,
|
|
}
|
|
expectedSize := 1563
|
|
actualSize := p.Size()
|
|
if actualSize != expectedSize {
|
|
t.Errorf("Expected size %d, but got %d", expectedSize, actualSize)
|
|
}
|
|
}
|
|
|
|
func TestHandlesEmptyStringsForAllStringFields(t *testing.T) {
|
|
p := &SUBMIT_SM{
|
|
service_type: "",
|
|
source_addr: "",
|
|
destination_addr: "",
|
|
schedule_delivery_time: "",
|
|
validity_period: "",
|
|
short_message: "",
|
|
}
|
|
expectedSize := 33
|
|
actualSize := p.Size()
|
|
if actualSize != expectedSize {
|
|
t.Errorf("Expected size %d, but got %d", expectedSize, actualSize)
|
|
}
|
|
}
|
|
|
|
// region benchmark
|