-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcandidate_test.go
47 lines (45 loc) · 1.08 KB
/
candidate_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
package ice
import "testing"
func TestCandidatePriority(t *testing.T) {
for _, test := range []struct {
Candidate *Candidate
WantPriority uint32
}{
{
Candidate: &Candidate{
Type: CandidateTypeHost,
LocalPreference: defaultLocalPreference,
Component: ComponentRTP,
},
WantPriority: 2130706431,
},
{
Candidate: &Candidate{
Type: CandidateTypePeerReflexive,
LocalPreference: defaultLocalPreference,
Component: ComponentRTP,
},
WantPriority: 1862270975,
},
{
Candidate: &Candidate{
Type: CandidateTypeServerReflexive,
LocalPreference: defaultLocalPreference,
Component: ComponentRTP,
},
WantPriority: 1694498815,
},
{
Candidate: &Candidate{
Type: CandidateTypeRelay,
LocalPreference: defaultLocalPreference,
Component: ComponentRTP,
},
WantPriority: 16777215,
},
} {
if got, want := test.Candidate.Priority(), test.WantPriority; got != want {
t.Fatalf("Candidate(%v).Priority() = %d, want %d", test.Candidate, got, want)
}
}
}