mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
270 lines
6.5 KiB
Go
270 lines
6.5 KiB
Go
// Copyright (C) 2018 Nippon Telegraph and Telephone Corporation.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
// implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package apiutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
api "github.com/osrg/gobgp/api"
|
|
"github.com/osrg/gobgp/pkg/packet/bgp"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_MultiProtocolCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.MultiProtocolCapability{
|
|
Family: &api.Family{
|
|
Afi: api.Family_AFI_IP,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
c := n.(*bgp.CapMultiProtocol)
|
|
assert.Equal(bgp.RF_IPv4_UC, c.CapValue)
|
|
|
|
output := NewMultiProtocolCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_RouteRefreshCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.RouteRefreshCapability{}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
output := NewRouteRefreshCapability(n.(*bgp.CapRouteRefresh))
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_CarryingLabelInfoCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.CarryingLabelInfoCapability{}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
output := NewCarryingLabelInfoCapability(n.(*bgp.CapCarryingLabelInfo))
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_ExtendedNexthopCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.ExtendedNexthopCapability{
|
|
Tuples: []*api.ExtendedNexthopCapabilityTuple{
|
|
{
|
|
NlriFamily: &api.Family{
|
|
Afi: api.Family_AFI_IP,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
NexthopFamily: &api.Family{
|
|
Afi: api.Family_AFI_IP6,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
c := n.(*bgp.CapExtendedNexthop)
|
|
assert.Equal(1, len(c.Tuples))
|
|
assert.Equal(uint16(bgp.AFI_IP), c.Tuples[0].NLRIAFI)
|
|
assert.Equal(uint16(bgp.SAFI_UNICAST), c.Tuples[0].NLRISAFI)
|
|
assert.Equal(uint16(bgp.AFI_IP6), c.Tuples[0].NexthopAFI)
|
|
|
|
output := NewExtendedNexthopCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_GracefulRestartCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.GracefulRestartCapability{
|
|
Flags: 0x08 | 0x04, // restarting|notification
|
|
Time: 90,
|
|
Tuples: []*api.GracefulRestartCapabilityTuple{
|
|
{
|
|
Family: &api.Family{
|
|
Afi: api.Family_AFI_IP,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
Flags: 0x80, // forward
|
|
},
|
|
},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
c := n.(*bgp.CapGracefulRestart)
|
|
assert.Equal(1, len(c.Tuples))
|
|
assert.Equal(uint8(0x08|0x04), c.Flags)
|
|
assert.Equal(uint16(90), c.Time)
|
|
assert.Equal(uint16(bgp.AFI_IP), c.Tuples[0].AFI)
|
|
assert.Equal(uint8(bgp.SAFI_UNICAST), c.Tuples[0].SAFI)
|
|
assert.Equal(uint8(0x80), c.Tuples[0].Flags)
|
|
|
|
output := NewGracefulRestartCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_FourOctetASNumberCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.FourOctetASNumberCapability{
|
|
As: 100,
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
c := n.(*bgp.CapFourOctetASNumber)
|
|
assert.Equal(uint32(100), c.CapValue)
|
|
|
|
output := NewFourOctetASNumberCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_AddPathCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.AddPathCapability{
|
|
Tuples: []*api.AddPathCapabilityTuple{
|
|
{
|
|
Family: &api.Family{
|
|
Afi: api.Family_AFI_IP,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
Mode: api.AddPathMode_MODE_BOTH,
|
|
},
|
|
},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
c := n.(*bgp.CapAddPath)
|
|
assert.Equal(1, len(c.Tuples))
|
|
assert.Equal(bgp.RF_IPv4_UC, c.Tuples[0].RouteFamily)
|
|
assert.Equal(bgp.BGP_ADD_PATH_BOTH, c.Tuples[0].Mode)
|
|
|
|
output := NewAddPathCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_EnhancedRouteRefreshCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.EnhancedRouteRefreshCapability{}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
output := NewEnhancedRouteRefreshCapability(n.(*bgp.CapEnhancedRouteRefresh))
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_LongLivedGracefulRestartCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.LongLivedGracefulRestartCapability{
|
|
Tuples: []*api.LongLivedGracefulRestartCapabilityTuple{
|
|
{
|
|
Family: &api.Family{
|
|
Afi: api.Family_AFI_IP,
|
|
Safi: api.Family_SAFI_UNICAST,
|
|
},
|
|
Flags: 0x80, // forward
|
|
Time: 90,
|
|
},
|
|
},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
c := n.(*bgp.CapLongLivedGracefulRestart)
|
|
assert.Equal(1, len(c.Tuples))
|
|
assert.Equal(uint16(bgp.AFI_IP), c.Tuples[0].AFI)
|
|
assert.Equal(uint8(bgp.SAFI_UNICAST), c.Tuples[0].SAFI)
|
|
assert.Equal(uint8(0x80), c.Tuples[0].Flags)
|
|
assert.Equal(uint32(90), c.Tuples[0].RestartTime)
|
|
|
|
output := NewLongLivedGracefulRestartCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_RouteRefreshCiscoCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.RouteRefreshCiscoCapability{}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
output := NewRouteRefreshCiscoCapability(n.(*bgp.CapRouteRefreshCisco))
|
|
assert.Equal(input, output)
|
|
}
|
|
|
|
func Test_UnknownCapability(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
input := &api.UnknownCapability{
|
|
Code: 0xff,
|
|
Value: []byte{0x11, 0x22, 0x33, 0x44},
|
|
}
|
|
|
|
a, err := ptypes.MarshalAny(input)
|
|
assert.Nil(err)
|
|
n, err := unmarshalCapability(a)
|
|
assert.Nil(err)
|
|
|
|
c := n.(*bgp.CapUnknown)
|
|
assert.Equal(bgp.BGPCapabilityCode(0xff), c.CapCode)
|
|
assert.Equal([]byte{0x11, 0x22, 0x33, 0x44}, c.CapValue)
|
|
|
|
output := NewUnknownCapability(c)
|
|
assert.Equal(input, output)
|
|
}
|