Files
webrtc/internal/sctp/packet_test.go
Sean DuBois 5849e549a7 Implement Marshal for multiple structs, with some tests
* Add test for Packet marshal
* Implement Packet, ChunkHeader, ChunkInitAck
* Improve error messages, and de-dupe some comments
2018-07-21 12:27:38 -07:00

55 lines
2.3 KiB
Go

package sctp
import (
"bytes"
"testing"
"github.com/pkg/errors"
)
func TestPacketUnmarshal(t *testing.T) {
pkt := &Packet{}
if err := pkt.Unmarshal([]byte{}); err == nil {
t.Errorf("Unmarshal should fail when a packet is too small to be SCTP")
}
headerOnly := []byte{0x13, 0x88, 0x13, 0x88, 0x00, 0x00, 0x00, 0x00, 0x06, 0xa9, 0x00, 0xe1}
err := pkt.Unmarshal(headerOnly)
if err != nil {
t.Error(errors.Wrap(err, "Unmarshal failed for SCTP packet with no chunks"))
} else if pkt.SourcePort != 5000 {
t.Error(errors.Errorf("Unmarshal passed for SCTP packet, but got incorrect source port exp: %d act: %d", 5000, pkt.SourcePort))
} else if pkt.DestinationPort != 5000 {
t.Error(errors.Errorf("Unmarshal passed for SCTP packet, but got incorrect destination port exp: %d act: %d", 5000, pkt.DestinationPort))
} else if pkt.VerificationTag != 0 {
t.Error(errors.Errorf("Unmarshal passed for SCTP packet, but got incorrect verification tag exp: %d act: %d", 0, pkt.VerificationTag))
}
rawChunk := []byte{0x13, 0x88, 0x13, 0x88, 0x00, 0x00, 0x00, 0x00, 0x81, 0x46, 0x9d, 0xfc, 0x01, 0x00, 0x00, 0x56, 0x55,
0xb9, 0x64, 0xa5, 0x00, 0x02, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0xe8, 0x6d, 0x10, 0x30, 0xc0, 0x00, 0x00, 0x04, 0x80,
0x08, 0x00, 0x09, 0xc0, 0x0f, 0xc1, 0x80, 0x82, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x24, 0x9f, 0xeb, 0xbb, 0x5c, 0x50,
0xc9, 0xbf, 0x75, 0x9c, 0xb1, 0x2c, 0x57, 0x4f, 0xa4, 0x5a, 0x51, 0xba, 0x60, 0x17, 0x78, 0x27, 0x94, 0x5c, 0x31, 0xe6,
0x5d, 0x5b, 0x09, 0x47, 0xe2, 0x22, 0x06, 0x80, 0x04, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x80, 0x03, 0x00, 0x06, 0x80, 0xc1, 0x00, 0x00}
if err := pkt.Unmarshal(rawChunk); err != nil {
t.Error(errors.Wrap(err, "Unmarshal failed, has chunk"))
}
}
func TestPacketMarshal(t *testing.T) {
pkt := &Packet{}
headerOnly := []byte{0x13, 0x88, 0x13, 0x88, 0x00, 0x00, 0x00, 0x00, 0x06, 0xa9, 0x00, 0xe1}
if err := pkt.Unmarshal(headerOnly); err != nil {
t.Error(errors.Wrap(err, "Unmarshal failed for SCTP packet with no chunks"))
}
headerOnlyMarshaled, err := pkt.Marshal()
if err != nil {
t.Error(errors.Wrap(err, "Marshal failed for SCTP packet with no chunks"))
} else if !bytes.Equal(headerOnly, headerOnlyMarshaled) {
t.Error(errors.Errorf("Unmarshal/Marshaled header only packet did not match \nheaderOnly: % 02x \nheaderOnlyMarshaled % 02x", headerOnly, headerOnlyMarshaled))
}
}