blob: 84f1312fd0cf95eb41028ae22451c041967d61fb (
plain)
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
|
package bgp
import (
"reflect"
"testing"
)
func TestUnmarshalUnicastNLRI(t *testing.T) {
tests := []struct {
name string
input []byte
expect *PathAttributePrefixSID
}{}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := GetPathAttribute(tt.input)
if err != nil {
t.Fatalf("test failed with error: %+v", err)
}
if !reflect.DeepEqual(tt.expect, got) {
t.Fatalf("test failed as expected nlri %+v does not match actual nlri %+v", tt.expect, got)
}
})
}
}
|