X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftest_data%2Fhoneycomb%2Fbgp.py;h=52513f081358c7b03ce581b627b9bbeebf10cdeb;hb=refs%2Fchanges%2F54%2F14854%2F9;hp=f9dc4ab233d5f6abe3fc1d1e04df7f12a01129cd;hpb=5a02dd13563a5c67e336f04eb526cbea206da29b;p=csit.git diff --git a/resources/test_data/honeycomb/bgp.py b/resources/test_data/honeycomb/bgp.py index f9dc4ab233..52513f0813 100644 --- a/resources/test_data/honeycomb/bgp.py +++ b/resources/test_data/honeycomb/bgp.py @@ -18,6 +18,7 @@ from copy import deepcopy # Internal BGP peers for CRUD tests address_internal = "192.168.0.2" address_internal2 = "192.168.0.3" +holdtime_internal = 60 peer_internal = { "bgp-openconfig-extensions:neighbor": [{ "neighbor-address": address_internal, @@ -26,21 +27,19 @@ peer_internal = { }, "timers": { "config": { - "connect-retry": 10, - "hold-time": 60 + "connect-retry": 3, + "hold-time": holdtime_internal } }, "transport": { "config": { - "remote-port": 17900, + "remote-port": 179, "passive-mode": False } }, "afi-safis": { "afi-safi": [{ - "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST", - "receive": True, - "send-max": 0 + "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST" }] } }] @@ -55,20 +54,18 @@ peer_internal_update = { "timers": { "config": { "connect-retry": 5, - "hold-time": 120 + "hold-time": holdtime_internal*2 } }, "transport": { "config": { - "remote-port": 17901, + "remote-port": 180, "passive-mode": True } }, "afi-safis": { "afi-safi": [{ - "afi-safi-name": "openconfig-bgp-types:IPV6-UNICAST", - "receive": False, - "send-max": 1 + "afi-safi-name": "openconfig-bgp-types:IPV6-UNICAST" }] } }] @@ -78,7 +75,7 @@ peer_internal2 = deepcopy(peer_internal) peer_internal2["bgp-openconfig-extensions:neighbor"][0]["neighbor-address"] = \ address_internal2 -# Application BGP peer for CRUD tests +# Application BGP peer for CRUD test address_application = "192.168.0.4" peer_application = { "bgp-openconfig-extensions:neighbor": [{ @@ -89,24 +86,22 @@ peer_application = { "afi-safis": { "afi-safi": [ { - "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST", - "receive": True, - "send-max": 0 + "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST" }, { "afi-safi-name": - "openconfig-bgp-types:IPV4-LABELLED-UNICAST", - "receive": True, - "send-max": 0 + "openconfig-bgp-types:IPV4-LABELLED-UNICAST" }] } }] } +# IPv4 route for CRUD test route_address_ipv4 = "192.168.0.5/32" route_id_ipv4 = 0 route_data_ipv4 = { "bgp-inet:ipv4-route": [{ + "route-key": route_address_ipv4, "path-id": route_id_ipv4, "prefix": route_address_ipv4, "attributes": { @@ -124,8 +119,10 @@ route_data_ipv4 = { }] } +# IPv4 route for testing Update operation route_data_ipv4_update = { "bgp-inet:ipv4-route": [{ + "route-key": route_address_ipv4, "path-id": route_id_ipv4, "prefix": route_address_ipv4, "attributes": { @@ -143,10 +140,12 @@ route_data_ipv4_update = { }] } +# IPv4 route for testing multiple routes route_address_ipv4_2 = "192.168.0.6/32" route_id_ipv4_2 = 1 route_data_ipv4_2 = { "bgp-inet:ipv4-route": [{ + "route-key": route_address_ipv4_2, "path-id": route_id_ipv4_2, "prefix": route_address_ipv4_2, "attributes": { @@ -164,10 +163,12 @@ route_data_ipv4_2 = { }] } +# IPv6 route for CRUD test route_address_ipv6 = "3ffe:62::1/64" route_id_ipv6 = 0 route_data_ipv6 = { "bgp-inet:ipv6-route": [{ + "route-key": route_address_ipv6, "path-id": route_id_ipv6, "prefix": route_address_ipv6, "attributes": { @@ -185,8 +186,162 @@ route_data_ipv6 = { }] } +# IPv4 route operational data in routing table table1_oper = { "destination-prefix": route_address_ipv4, "next-hop": "192.168.1.1", - "vpp-ipv4-route-state": {} -} \ No newline at end of file + "vpp-ipv4-unicast-routing:vpp-ipv4-route": {} +} + +# Peer configurations for traffic test +dut1_peer = { + "bgp-openconfig-extensions:neighbor": [{ + "neighbor-address": "192.168.1.1", + "config": { + "peer-type": "INTERNAL" + }, + "timers": { + "config": { + "connect-retry": 3, + "hold-time": 60 + } + }, + "transport": { + "config": { + "remote-port": 179, + "passive-mode": False + } + }, + "afi-safis": { + "afi-safi": [ + { + "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST" + }, + { + "afi-safi-name": "openconfig-bgp-types:IPV6-UNICAST" + }, + { + "afi-safi-name": "LINKSTATE" + } + ] + } + }] +} + +dut2_peer = { + "bgp-openconfig-extensions:neighbor": [{ + "neighbor-address": "192.168.1.2", + "config": { + "peer-type": "INTERNAL" + }, + "timers": { + "config": { + "connect-retry": 3, + "hold-time": 60 + } + }, + "transport": { + "config": { + "remote-port": 179, + "passive-mode": True + } + }, + "afi-safis": { + "afi-safi": [ + { + "afi-safi-name": "openconfig-bgp-types:IPV4-UNICAST" + }, + { + "afi-safi-name": "openconfig-bgp-types:IPV6-UNICAST" + }, + { + "afi-safi-name": "LINKSTATE" + } + ] + } + }] +} + +# IPv4 route for traffic test +dut1_route_address = "192.168.0.5/32" +dut1_route_id = 0 +dut1_route = { + "bgp-inet:ipv4-route": [{ + "route-key": dut1_route_address, + "path-id": dut1_route_id, + "prefix": dut1_route_address, + "attributes": { + "as-path": {}, + "origin": { + "value": "igp" + }, + "local-pref": { + "pref": 100 + }, + "ipv4-next-hop": { + "global": "192.168.1.3" + } + } + }] +} + +# IPv4 route in peer operational data +rib_operational = { + "loc-rib": {"tables": [ + { + "afi": "bgp-types:ipv4-address-family", + "safi": "bgp-types:unicast-subsequent-address-family", + "bgp-inet:ipv4-routes": { + "ipv4-route": dut1_route["bgp-inet:ipv4-route"] + } + } + ]} +} + +route_operational = { + "next-hop": {"next-hop-address": "192.168.1.3"}, + "vpp-ipv4-unicast-routing:vpp-ipv4-route": {}, + "destination-prefix": dut1_route_address +} + +# IPv6 route for traffic test +dut1_route_ip6_prefix = "3ffe:62::/64" +dut1_route_ip6_id = 0 +dut1_route_ip6 = { + "bgp-inet:ipv6-route": [{ + "route-key": dut1_route_ip6_prefix, + "path-id": dut1_route_ip6_id, + "prefix": dut1_route_ip6_prefix, + "attributes": { + "as-path": {}, + "origin": { + "value": "igp" + }, + "local-pref": { + "pref": 100 + }, + "ipv6-next-hop": { + "global": "3ffe:63::1" + } + } + }] +} + +# IPv6 route in peer operational data +rib_ip6_operational = { + "loc-rib": {"tables": [ + { + "afi": "bgp-types:ipv6-address-family", + "safi": "bgp-types:unicast-subsequent-address-family", + "bgp-inet:ipv6-routes": { + "ipv6-route": dut1_route_ip6["bgp-inet:ipv6-route"] + } + } + ]} +} + +route_ip6_operational = { + "next-hop": {"next-hop-address": "3ffe:63::1"}, + "vpp-ipv6-unicast-routing:vpp-ipv6-route": {}, + "destination-prefix": dut1_route_ip6_prefix +}