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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
package codecs
import (
"errors"
"reflect"
"testing"
)
func TestVP8Packet_Unmarshal(t *testing.T) {
pck := VP8Packet{}
// Nil packet
raw, err := pck.Unmarshal(nil)
if raw != nil {
t.Fatal("Result should be nil in case of error")
}
if !errors.Is(err, errNilPacket) {
t.Fatal("Error should be:", errNilPacket)
}
// Nil payload
raw, err = pck.Unmarshal([]byte{})
if raw != nil {
t.Fatal("Result should be nil in case of error")
}
if !errors.Is(err, errShortPacket) {
t.Fatal("Error should be:", errShortPacket)
}
// Payload smaller than header size
raw, err = pck.Unmarshal([]byte{0x00, 0x11, 0x22})
if raw != nil {
t.Fatal("Result should be nil in case of error")
}
if !errors.Is(err, errShortPacket) {
t.Fatal("Error should be:", errShortPacket)
}
// Normal payload
raw, err = pck.Unmarshal([]byte{0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x90})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, only X
raw, err = pck.Unmarshal([]byte{0x80, 0x00, 0x00, 0x00})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, X and I
raw, err = pck.Unmarshal([]byte{0x80, 0x80, 0x00, 0x00})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, X and I, PID 16bits
raw, err = pck.Unmarshal([]byte{0x80, 0x80, 0x81, 0x00})
if raw != nil {
t.Fatal("Result should be nil in case of error")
}
if !errors.Is(err, errShortPacket) {
t.Fatal("Error should be:", errShortPacket)
}
// Header size, X and L
raw, err = pck.Unmarshal([]byte{0x80, 0x40, 0x00, 0x00})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, X and T
raw, err = pck.Unmarshal([]byte{0x80, 0x20, 0x00, 0x00})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, X and K
raw, err = pck.Unmarshal([]byte{0x80, 0x10, 0x00, 0x00})
if raw == nil {
t.Fatal("Result shouldn't be nil in case of success")
}
if err != nil {
t.Fatal("Error should be nil in case of success")
}
// Header size, all flags
raw, err = pck.Unmarshal([]byte{0xff, 0xff, 0x00, 0x00})
if raw != nil {
t.Fatal("Result should be nil in case of error")
}
if !errors.Is(err, errShortPacket) {
t.Fatal("Error should be:", errShortPacket)
}
}
func TestVP8Payloader_Payload(t *testing.T) {
testCases := map[string]struct {
payloader VP8Payloader
mtu uint16
payload [][]byte
expected [][][]byte
}{
"WithoutPictureID": {
payloader: VP8Payloader{},
mtu: 2,
payload: [][]byte{
{0x90, 0x90, 0x90},
{0x91, 0x91},
},
expected: [][][]byte{
{{0x10, 0x90}, {0x00, 0x90}, {0x00, 0x90}},
{{0x10, 0x91}, {0x00, 0x91}},
},
},
"WithPictureID_1byte": {
payloader: VP8Payloader{
EnablePictureID: true,
pictureID: 0x20,
},
mtu: 5,
payload: [][]byte{
{0x90, 0x90, 0x90},
{0x91, 0x91},
},
expected: [][][]byte{
{
{0x90, 0x80, 0x20, 0x90, 0x90},
{0x80, 0x80, 0x20, 0x90},
},
{
{0x90, 0x80, 0x21, 0x91, 0x91},
},
},
},
"WithPictureID_2bytes": {
payloader: VP8Payloader{
EnablePictureID: true,
pictureID: 0x120,
},
mtu: 6,
payload: [][]byte{
{0x90, 0x90, 0x90},
{0x91, 0x91},
},
expected: [][][]byte{
{
{0x90, 0x80, 0x81, 0x20, 0x90, 0x90},
{0x80, 0x80, 0x81, 0x20, 0x90},
},
{
{0x90, 0x80, 0x81, 0x21, 0x91, 0x91},
},
},
},
}
for name, testCase := range testCases {
testCase := testCase
t.Run(name, func(t *testing.T) {
pck := testCase.payloader
for i := range testCase.payload {
res := pck.Payload(testCase.mtu, testCase.payload[i])
if !reflect.DeepEqual(testCase.expected[i], res) {
t.Fatalf("Generated packet[%d] differs, expected: %v, got: %v", i, testCase.expected[i], res)
}
}
})
}
t.Run("Error", func(t *testing.T) {
pck := VP8Payloader{}
payload := []byte{0x90, 0x90, 0x90}
// Positive MTU, nil payload
res := pck.Payload(1, nil)
if len(res) != 0 {
t.Fatal("Generated payload should be empty")
}
// Positive MTU, small payload
// MTU of 1 results in fragment size of 0
res = pck.Payload(1, payload)
if len(res) != 0 {
t.Fatal("Generated payload should be empty")
}
})
}
func TestVP8IsPartitionHead(t *testing.T) {
vp8 := &VP8Packet{}
t.Run("SmallPacket", func(t *testing.T) {
if vp8.IsPartitionHead([]byte{0x00}) {
t.Fatal("Small packet should not be the head of a new partition")
}
})
t.Run("SFlagON", func(t *testing.T) {
if !vp8.IsPartitionHead([]byte{0x10, 0x00, 0x00, 0x00}) {
t.Fatal("Packet with S flag should be the head of a new partition")
}
})
t.Run("SFlagOFF", func(t *testing.T) {
if vp8.IsPartitionHead([]byte{0x00, 0x00, 0x00, 0x00}) {
t.Fatal("Packet without S flag should not be the head of a new partition")
}
})
}
|