File: transportccextension_test.go

package info (click to toggle)
golang-github-pion-rtp 1.7.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 472 kB
  • sloc: makefile: 2
file content (62 lines) | stat: -rw-r--r-- 1,031 bytes parent folder | download
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
package rtp

import (
	"bytes"
	"errors"
	"testing"
)

func TestTransportCCExtensionTooSmall(t *testing.T) {
	t1 := TransportCCExtension{}

	rawData := []byte{}

	if err := t1.Unmarshal(rawData); !errors.Is(err, errTooSmall) {
		t.Fatal("err != errTooSmall")
	}
}

func TestTransportCCExtension(t *testing.T) {
	t1 := TransportCCExtension{}

	rawData := []byte{
		0x00, 0x02,
	}

	if err := t1.Unmarshal(rawData); err != nil {
		t.Fatal("Unmarshal error on extension data")
	}

	t2 := TransportCCExtension{
		TransportSequence: 2,
	}

	if t1 != t2 {
		t.Error("Unmarshal failed")
	}

	dstData, _ := t2.Marshal()
	if !bytes.Equal(dstData, rawData) {
		t.Error("Marshal failed")
	}
}

func TestTransportCCExtensionExtraBytes(t *testing.T) {
	t1 := TransportCCExtension{}

	rawData := []byte{
		0x00, 0x02, 0x00, 0xff, 0xff,
	}

	if err := t1.Unmarshal(rawData); err != nil {
		t.Fatal("Unmarshal error on extension data")
	}

	t2 := TransportCCExtension{
		TransportSequence: 2,
	}

	if t1 != t2 {
		t.Error("Unmarshal failed")
	}
}