-
Notifications
You must be signed in to change notification settings - Fork 50
/
data_sdt_test.go
44 lines (39 loc) · 1.17 KB
/
data_sdt_test.go
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
package astits
import (
"bytes"
"testing"
"github.com/asticode/go-astikit"
"github.com/stretchr/testify/assert"
)
var sdt = &SDTData{
OriginalNetworkID: 2,
Services: []*SDTDataService{{
Descriptors: descriptors,
HasEITPresentFollowing: true,
HasEITSchedule: true,
HasFreeCSAMode: true,
RunningStatus: 5,
ServiceID: 3,
}},
TransportStreamID: 1,
}
func sdtBytes() []byte {
buf := &bytes.Buffer{}
w := astikit.NewBitsWriter(astikit.BitsWriterOptions{Writer: buf})
w.Write(uint16(2)) // Original network ID
w.Write(uint8(0)) // Reserved for future use
w.Write(uint16(3)) // Service #1 id
w.Write("000000") // Service #1 reserved for future use
w.Write("1") // Service #1 EIT schedule flag
w.Write("1") // Service #1 EIT present/following flag
w.Write("101") // Service #1 running status
w.Write("1") // Service #1 free CA mode
descriptorsBytes(w) // Service #1 descriptors
return buf.Bytes()
}
func TestParseSDTSection(t *testing.T) {
var b = sdtBytes()
d, err := parseSDTSection(astikit.NewBytesIterator(b), len(b), uint16(1))
assert.Equal(t, d, sdt)
assert.NoError(t, err)
}