summaryrefslogtreecommitdiffhomepage
path: root/server/peer_test.go
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-01-07 01:02:52 -0800
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-01-07 01:02:52 -0800
commit4bd5611c10bd668622f2dd1f7ad7cd72e889fcf4 (patch)
tree1386ed0775fb8d76d3a52455dbfc2e6202b9dd0d /server/peer_test.go
parentbdbb80e9a6eb2928f4942b432dba0fb0595fc658 (diff)
table: fix UpdatePathAttrs2ByteAS
Fix the bug that UpdatePathAttrs2ByteAS modifies the _ORIGINAL_ path attributes in rib. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'server/peer_test.go')
-rw-r--r--server/peer_test.go95
1 files changed, 95 insertions, 0 deletions
diff --git a/server/peer_test.go b/server/peer_test.go
new file mode 100644
index 00000000..eaea842a
--- /dev/null
+++ b/server/peer_test.go
@@ -0,0 +1,95 @@
+// Copyright (C) 2014 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 server
+
+import (
+ "fmt"
+ //"encoding/json"
+ "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/table"
+ "github.com/stretchr/testify/assert"
+ "net"
+ "reflect"
+ "testing"
+)
+
+func peerRC3() *table.PeerInfo {
+ peer := &table.PeerInfo{
+ AS: 66003,
+ ID: net.ParseIP("10.0.255.3").To4(),
+ LocalID: net.ParseIP("10.0.255.1").To4(),
+ }
+ return peer
+}
+
+func createAsPathAttribute(ases []uint32) *bgp.PathAttributeAsPath {
+ aspathParam := []bgp.AsPathParamInterface{bgp.NewAs4PathParam(2, ases)}
+ aspath := bgp.NewPathAttributeAsPath(aspathParam)
+ return aspath
+}
+
+func createMpReach(nexthop string, prefix []bgp.AddrPrefixInterface) *bgp.PathAttributeMpReachNLRI {
+ mp_reach := bgp.NewPathAttributeMpReachNLRI(nexthop, prefix)
+ return mp_reach
+}
+
+func update_fromRC3() *bgp.BGPMessage {
+ pathAttributes := []bgp.PathAttributeInterface{
+ bgp.NewPathAttributeOrigin(1),
+ createAsPathAttribute([]uint32{66003, 4000, 70000}),
+ createMpReach("2001:db8::3",
+ []bgp.AddrPrefixInterface{bgp.NewIPv6AddrPrefix(64, "38:38:38:38::")}),
+ }
+ return bgp.NewBGPUpdateMessage([]bgp.WithdrawnRoute{}, pathAttributes, []bgp.NLRInfo{})
+}
+
+func TestProcessBGPUpdate_fourbyteAS(t *testing.T) {
+ rib1 := table.NewTableManager()
+
+ m := update_fromRC3()
+ peerInfo := peerRC3()
+ msg := table.NewProcessMessage(m, peerInfo)
+ pathList := msg.ToPathList()
+
+ pList, wList, _ := rib1.ProcessPaths(pathList)
+ assert.Equal(t, len(pList), 1)
+ assert.Equal(t, len(wList), 0)
+ fmt.Println(pList)
+ sendMsg := table.CreateUpdateMsgFromPaths(pList)
+ assert.Equal(t, len(sendMsg), 1)
+ table.UpdatePathAttrs2ByteAs(sendMsg[0].Body.(*bgp.BGPUpdate))
+ update := sendMsg[0].Body.(*bgp.BGPUpdate)
+ assert.Equal(t, len(update.PathAttributes), 4)
+ assert.Equal(t, reflect.TypeOf(update.PathAttributes[3]).String(), "*bgp.PathAttributeAs4Path")
+ attr := update.PathAttributes[3].(*bgp.PathAttributeAs4Path)
+ assert.Equal(t, len(attr.Value), 1)
+ assert.Equal(t, attr.Value[0].AS, []uint32{66003, 70000})
+ attrAS := update.PathAttributes[1].(*bgp.PathAttributeAsPath)
+ assert.Equal(t, len(attrAS.Value), 1)
+ assert.Equal(t, attrAS.Value[0].(*bgp.AsPathParam).AS, []uint16{bgp.AS_TRANS, 4000, bgp.AS_TRANS})
+
+ rib2 := table.NewTableManager()
+ pList2, wList2, _ := rib2.ProcessPaths(pathList)
+ assert.Equal(t, len(pList2), 1)
+ assert.Equal(t, len(wList2), 0)
+ sendMsg2 := table.CreateUpdateMsgFromPaths(pList2)
+ assert.Equal(t, len(sendMsg2), 1)
+ update2 := sendMsg2[0].Body.(*bgp.BGPUpdate)
+ assert.Equal(t, len(update2.PathAttributes), 3)
+ attrAS2 := update2.PathAttributes[1].(*bgp.PathAttributeAsPath)
+ assert.Equal(t, len(attrAS2.Value), 1)
+ assert.Equal(t, attrAS2.Value[0].(*bgp.As4PathParam).AS, []uint32{66003, 4000, 70000})
+}