diff options
Diffstat (limited to 'packet/bmp_test.go')
-rw-r--r-- | packet/bmp_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packet/bmp_test.go b/packet/bmp_test.go index c1226088..e07c2455 100644 --- a/packet/bmp_test.go +++ b/packet/bmp_test.go @@ -16,6 +16,7 @@ package bgp import ( + "github.com/stretchr/testify/assert" "reflect" "testing" ) @@ -64,3 +65,9 @@ func Test_RouteMonitoring(t *testing.T) { p0 := NewBMPPeerHeader(0, false, 1000, "fe80::6e40:8ff:feab:2c2a", 70000, "10.0.0.2", 1) verify(t, NewBMPRouteMonitoring(*p0, m)) } + +func Test_BogusHeader(t *testing.T) { + h, err := ParseBMPMessage(make([]byte, 10)) + assert.Nil(t, h) + assert.NotNil(t, err) +} |