-
Oliver Herms authoredOliver Herms authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
fsm_open_sent_test.go 1.72 KiB
package server
import (
"testing"
"github.com/bio-routing/bio-rd/protocols/bgp/packet"
btesting "github.com/bio-routing/bio-rd/testing"
"github.com/stretchr/testify/assert"
)
func TestOpenMsgReceived(t *testing.T) {
tests := []struct {
asn uint32
name string
msg packet.BGPOpen
wantsCease bool
}{
{
name: "valid open message (16bit ASN)",
asn: 12345,
msg: packet.BGPOpen{
HoldTime: 90,
BGPIdentifier: 1,
Version: 4,
ASN: 12345,
},
},
{
name: "valid open message (32bit ASN)",
asn: 202739,
msg: packet.BGPOpen{
HoldTime: 90,
BGPIdentifier: 1,
Version: 4,
ASN: 23456,
OptParmLen: 1,
OptParams: []packet.OptParam{
{
Type: packet.CapabilitiesParamType,
Length: 6,
Value: packet.Capabilities{
packet.Capability{
Code: packet.ASN4CapabilityCode,
Length: 4,
Value: packet.ASN4Capability{
ASN4: 202739,
},
},
},
},
},
},
},
{
name: "open message does not match configured remote ASN",
asn: 12345,
msg: packet.BGPOpen{
HoldTime: 90,
BGPIdentifier: 1,
Version: 4,
ASN: 54321,
},
wantsCease: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
fsm := newFSM(&peer{
peerASN: test.asn,
})
fsm.con = &btesting.MockConn{}
s := &openSentState{
fsm: fsm,
}
state, _ := s.handleOpenMessage(&test.msg)
if test.wantsCease {
assert.IsType(t, &ceaseState{}, state, "state")
return
}
assert.IsType(t, &openConfirmState{}, state, "state")
assert.Equal(t, test.asn, s.peerASNRcvd, "asn")
})
}
}