summaryrefslogtreecommitdiffhomepage
path: root/packet/validate_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'packet/validate_test.go')
-rw-r--r--packet/validate_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/packet/validate_test.go b/packet/validate_test.go
index 801c3868..90d05548 100644
--- a/packet/validate_test.go
+++ b/packet/validate_test.go
@@ -136,6 +136,17 @@ func Test_Validate_mandatory_missing(t *testing.T) {
assert.Equal(1, missing)
}
+func Test_Validate_mandatory_missing_nocheck(t *testing.T) {
+ assert := assert.New(t)
+ message := bgpupdate().Body.(*BGPUpdate)
+ message.PathAttributes = message.PathAttributes[1:]
+ message.NLRI = nil
+
+ res, err := ValidateUpdateMsg(message)
+ assert.Equal(true, res)
+ assert.NoError(err)
+}
+
func Test_Validate_invalid_origin(t *testing.T) {
assert := assert.New(t)
message := bgpupdate().Body.(*BGPUpdate)