forked from pion/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtcprioritytype_test.go
61 lines (53 loc) · 1.33 KB
/
rtcprioritytype_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
56
57
58
59
60
61
package webrtc
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewRTCPriorityType(t *testing.T) {
testCases := []struct {
priorityString string
priorityUint16 uint16
expectedPriority RTCPriorityType
}{
{"unknown", 0, RTCPriorityType(Unknown)},
{"very-low", 100, RTCPriorityTypeVeryLow},
{"low", 200, RTCPriorityTypeLow},
{"medium", 300, RTCPriorityTypeMedium},
{"high", 1000, RTCPriorityTypeHigh},
}
for i, testCase := range testCases {
assert.Equal(t,
testCase.expectedPriority,
newRTCPriorityTypeFromString(testCase.priorityString),
"testCase: %d %v", i, testCase,
)
// There is no uint that produces generate RTCPriorityType(Unknown).
if i == 0 {
continue
}
assert.Equal(t,
testCase.expectedPriority,
newRTCPriorityTypeFromUint16(testCase.priorityUint16),
"testCase: %d %v", i, testCase,
)
}
}
func TestRTCPriorityType_String(t *testing.T) {
testCases := []struct {
priority RTCPriorityType
expectedString string
}{
{RTCPriorityType(Unknown), "unknown"},
{RTCPriorityTypeVeryLow, "very-low"},
{RTCPriorityTypeLow, "low"},
{RTCPriorityTypeMedium, "medium"},
{RTCPriorityTypeHigh, "high"},
}
for i, testCase := range testCases {
assert.Equal(t,
testCase.expectedString,
testCase.priority.String(),
"testCase: %d %v", i, testCase,
)
}
}