-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathparam_test.go
48 lines (38 loc) · 1.07 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
// 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)
assert.NoErrorf(t, err, "failed to parse param type #%d", i)
p, err := buildParam(pType, tc.binary)
assert.NoErrorf(t, err, "failed to unmarshal #%d", i)
b, err := p.marshal()
assert.NoErrorf(t, err, "failed to marshal #%d", i)
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)
assert.NoErrorf(t, err, "failed to parse param type #%d", i)
_, err = buildParam(pType, tc.binary)
assert.Errorf(t, err, "expected buildParam #%d: '%s' to fail.", i, tc.name)
}
}