X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fcsit%2Fvariables%2Fvpnservice%2FVariables.py;fp=test%2Fcsit%2Fvariables%2Fvpnservice%2FVariables.py;h=0000000000000000000000000000000000000000;hb=59e81c38620fa1b61e15771191e35771450b9499;hp=2f203fd1bf78cd1aca36841e3be1e190722808e0;hpb=072f6e3a8d1bdf8f4c663843589c22d93ba07791;p=integration%2Ftest.git diff --git a/test/csit/variables/vpnservice/Variables.py b/test/csit/variables/vpnservice/Variables.py deleted file mode 100644 index 2f203fd1bf..0000000000 --- a/test/csit/variables/vpnservice/Variables.py +++ /dev/null @@ -1,62 +0,0 @@ -def get_variables(): - variables = {} - vpn_instance = { - "vpn-instance": [ - { - "description": "Test VPN Instance 1", - "vpn-instance-name": "testVpn1", - "ipv4-family": { - "route-distinguisher": "1000:1", - "export-route-policy": "3000:1,4000:1", - "import-route-policy": "1000:1,2000:1", - "apply-label": { - "apply-label-per-route": "true" - } - } - } - ] - } - vm_interface = { - "interface": [ - { - "name": "s1-eth1", - "type": "iana-if-type:l2vlan", - "odl-interface:of-port-id": "openflow:1:1", - "enabled": "true" - } - ] - } - vm_vpninterface = { - "vpn-interface": [ - { - "odl-l3vpn:adjacency": [ - { - "odl-l3vpn:ip_address": "10.0.0.1", - "odl-l3vpn:mac_address": "12:f8:57:a8:b9:a1" - } - ], - "vpn-instance-name": "testVpn1", - "name": "s1-eth1" - } - ] - } - bgp_router = { - "bgp-router": { - "local-as-identifier": "10.10.10.10", - "local-as-number": 108 - } - } - bgp_neighbor = { - "bgp-neighbor": [ - { - "as-number": 105, - "ip-address": "169.144.42.168" - } - ] - } - variables = {'vpn_instance': vpn_instance, - 'vm_interface': vm_interface, - 'vm_vpninterface': vm_vpninterface, - 'bgp_router': bgp_router, - 'bgp_neighbor': bgp_neighbor} - return variables