Newer
Older
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
62
63
64
65
66
package route
import (
"testing"
"github.com/bio-routing/bio-rd/protocols/bgp/packet"
"github.com/stretchr/testify/assert"
)
func TestCommunitiesString(t *testing.T) {
tests := []struct {
name string
comms []uint32
expected string
}{
{
name: "two attributes",
comms: []uint32{131080, 16778241},
expected: "(2,8) (256,1025)",
},
}
for _, test := range tests {
t.Run(test.name, func(te *testing.T) {
p := &BGPPath{
Communities: test.comms,
}
assert.Equal(te, test.expected, p.CommunitiesString())
})
}
}
func TestLargeCommunitiesString(t *testing.T) {
tests := []struct {
name string
comms []packet.LargeCommunity
expected string
}{
{
name: "two attributes",
comms: []packet.LargeCommunity{
{
GlobalAdministrator: 1,
DataPart1: 2,
DataPart2: 3,
},
{
GlobalAdministrator: 4,
DataPart1: 5,
DataPart2: 6,
},
},
expected: "(1,2,3) (4,5,6)",
},
}
for _, test := range tests {
t.Run(test.name, func(te *testing.T) {
p := &BGPPath{
LargeCommunities: test.comms,
}
assert.Equal(te, test.expected, p.LargeCommunitiesString())
})
}
}