-
Notifications
You must be signed in to change notification settings - Fork 79
/
param_test.go
55 lines (48 loc) · 1.12 KB
/
param_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
45
46
47
48
49
50
51
52
53
54
55
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package sctp
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBuildParam_Success(t *testing.T) {
tt := []struct {
binary []byte
}{
{testChunkReconfigParamA()},
}
for i, tc := range tt {
pType, err := parseParamType(tc.binary)
if err != nil {
t.Fatalf("failed to parse param type: %v", err)
}
p, err := buildParam(pType, tc.binary)
if err != nil {
t.Fatalf("failed to unmarshal #%d: %v", i, err)
}
b, err := p.marshal()
if err != nil {
t.Fatalf("failed to marshal: %v", err)
}
assert.Equal(t, tc.binary, b)
}
}
func TestBuildParam_Failure(t *testing.T) {
tt := []struct {
name string
binary []byte
}{
{"invalid ParamType", []byte{0x0, 0x0}},
{"build failure", testChunkReconfigParamA()[:8]},
}
for i, tc := range tt {
pType, err := parseParamType(tc.binary)
if err != nil {
t.Fatalf("failed to parse param type: %v", err)
}
_, err = buildParam(pType, tc.binary)
if err == nil {
t.Errorf("expected unmarshal #%d: '%s' to fail.", i, tc.name)
}
}
}