1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
package rtcp
import (
"errors"
"reflect"
"testing"
)
var _ Packet = (*TransportLayerNack)(nil) // assert is a Packet
func TestTransportLayerNackUnmarshal(t *testing.T) {
for _, test := range []struct {
Name string
Data []byte
Want TransportLayerNack
WantError error
}{
{
Name: "valid",
Data: []byte{
// TransportLayerNack
0x81, 0xcd, 0x0, 0x3,
// sender=0x902f9e2e
0x90, 0x2f, 0x9e, 0x2e,
// media=0x902f9e2e
0x90, 0x2f, 0x9e, 0x2e,
// nack 0xAAAA, 0x5555
0xaa, 0xaa, 0x55, 0x55,
},
Want: TransportLayerNack{
SenderSSRC: 0x902f9e2e,
MediaSSRC: 0x902f9e2e,
Nacks: []NackPair{{0xaaaa, 0x5555}},
},
},
{
Name: "short report",
Data: []byte{
0x81, 0xcd, 0x0, 0x2,
// ssrc=0x902f9e2e
0x90, 0x2f, 0x9e, 0x2e,
// report ends early
},
WantError: errPacketTooShort,
},
{
Name: "wrong type",
Data: []byte{
// v=2, p=0, count=1, SR, len=7
0x81, 0xc8, 0x0, 0x7,
// ssrc=0x902f9e2e
0x90, 0x2f, 0x9e, 0x2e,
// ssrc=0xbc5e9a40
0xbc, 0x5e, 0x9a, 0x40,
// fracLost=0, totalLost=0
0x0, 0x0, 0x0, 0x0,
// lastSeq=0x46e1
0x0, 0x0, 0x46, 0xe1,
// jitter=273
0x0, 0x0, 0x1, 0x11,
// lsr=0x9f36432
0x9, 0xf3, 0x64, 0x32,
// delay=150137
0x0, 0x2, 0x4a, 0x79,
},
WantError: errWrongType,
},
{
Name: "nil",
Data: nil,
WantError: errPacketTooShort,
},
} {
var tln TransportLayerNack
err := tln.Unmarshal(test.Data)
if got, want := err, test.WantError; !errors.Is(got, want) {
t.Fatalf("Unmarshal %q rr: err = %v, want %v", test.Name, got, want)
}
if err != nil {
continue
}
if got, want := tln, test.Want; !reflect.DeepEqual(got, want) {
t.Fatalf("Unmarshal %q rr: got %v, want %v", test.Name, got, want)
}
}
}
func TestTransportLayerNackRoundTrip(t *testing.T) {
for _, test := range []struct {
Name string
Report TransportLayerNack
WantError error
}{
{
Name: "valid",
Report: TransportLayerNack{
SenderSSRC: 0x902f9e2e,
MediaSSRC: 0x902f9e2e,
Nacks: []NackPair{{1, 0xAA}, {1034, 0x05}},
},
},
} {
data, err := test.Report.Marshal()
if got, want := err, test.WantError; !errors.Is(got, want) {
t.Fatalf("Marshal %q: err = %v, want %v", test.Name, got, want)
}
if err != nil {
continue
}
var decoded TransportLayerNack
if err := decoded.Unmarshal(data); err != nil {
t.Fatalf("Unmarshal %q: %v", test.Name, err)
}
if got, want := decoded, test.Report; !reflect.DeepEqual(got, want) {
t.Fatalf("%q tln round trip: got %#v, want %#v", test.Name, got, want)
}
}
}
func testNackPair(t *testing.T, s []uint16, n NackPair) {
l := n.PacketList()
if !reflect.DeepEqual(l, s) {
t.Errorf("%v: expected %v, got %v", n, s, l)
}
}
func TestNackPair(t *testing.T) {
testNackPair(t, []uint16{42}, NackPair{42, 0})
testNackPair(t, []uint16{42, 43}, NackPair{42, 1})
testNackPair(t, []uint16{42, 44}, NackPair{42, 2})
testNackPair(t, []uint16{42, 43, 44}, NackPair{42, 3})
testNackPair(t, []uint16{42, 42 + 16}, NackPair{42, 0x8000})
}
func TestNackPairRange(t *testing.T) {
n := NackPair{42, 2}
out := make([]uint16, 0)
n.Range(func(s uint16) bool {
out = append(out, s)
return true
})
if !reflect.DeepEqual(out, []uint16{42, 44}) {
t.Errorf("Got %v", out)
}
out = make([]uint16, 0)
n.Range(func(s uint16) bool {
out = append(out, s)
return false
})
if !reflect.DeepEqual(out, []uint16{42}) {
t.Errorf("Got %v", out)
}
}
func TestTransportLayerNackPairGeneration(t *testing.T) {
for _, test := range []struct {
Name string
SequenceNumbers []uint16
Expected []NackPair
}{
{
"No Sequence Numbers",
[]uint16{},
[]NackPair{},
},
{
"Single Sequence Number",
[]uint16{100},
[]NackPair{
{PacketID: 100, LostPackets: 0x0},
},
},
{
"Multiple in range, Single NACKPair",
[]uint16{100, 101, 105, 115},
[]NackPair{
{PacketID: 100, LostPackets: 0x4011},
},
},
{
"Multiple Ranges, Multiple NACKPair",
[]uint16{100, 117, 500, 501, 502},
[]NackPair{
{PacketID: 100, LostPackets: 0},
{PacketID: 117, LostPackets: 0},
{PacketID: 500, LostPackets: 0x3},
},
},
} {
actual := NackPairsFromSequenceNumbers(test.SequenceNumbers)
if !reflect.DeepEqual(actual, test.Expected) {
t.Fatalf("%q NackPair generation mismatch: got %#v, want %#v", test.Name, actual, test.Expected)
}
}
}
|