dc479b51db499dd640c4d733621ee6153af27a63
[sdnvpn.git] / sdnvpn / test / functest / testcase_8.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2017 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 """
11 Test whether router assoc can coexist with floating IP
12 - Create two VMs, one in a subnet with a router
13 - Assoc the two networks in a VPN iRT=eRT
14   One with router assoc, other with net assoc
15 - Try to ping from one VM to the other
16 - Assign a floating IP to the VM in the router assoc network
17 - Ping it
18 """
19 import argparse
20
21 import functest.utils.functest_logger as ft_logger
22 import functest.utils.openstack_utils as os_utils
23
24 import sdnvpn.lib.utils as test_utils
25 from sdnvpn.lib.results import Results
26 import sdnvpn.lib.config as sdnvpn_config
27
28 parser = argparse.ArgumentParser()
29
30 parser.add_argument("-r", "--report",
31                     help="Create json result file",
32                     action="store_true")
33
34 args = parser.parse_args()
35
36 logger = ft_logger.Logger("sdnvpn-testcase-8").getLogger()
37
38 COMMON_CONFIG = sdnvpn_config.CommonConfig()
39 TESTCASE_CONFIG = sdnvpn_config.TestcaseConfig('testcase_8')
40
41
42 def main():
43     results = Results(COMMON_CONFIG.line_length)
44
45     results.add_to_summary(0, "=")
46     results.add_to_summary(2, "STATUS", "SUBTEST")
47     results.add_to_summary(0, "=")
48
49     nova_client = os_utils.get_nova_client()
50     neutron_client = os_utils.get_neutron_client()
51     glance_client = os_utils.get_glance_client()
52
53     image_id = os_utils.create_glance_image(glance_client,
54                                             TESTCASE_CONFIG.image_name,
55                                             COMMON_CONFIG.image_path,
56                                             disk=COMMON_CONFIG.image_format,
57                                             container="bare",
58                                             public='public')
59     network_1_id, _, router_1_id = test_utils.create_network(
60         neutron_client,
61         TESTCASE_CONFIG.net_1_name,
62         TESTCASE_CONFIG.subnet_1_name,
63         TESTCASE_CONFIG.subnet_1_cidr,
64         TESTCASE_CONFIG.router_1_name)
65     network_2_id = test_utils.create_net(
66         neutron_client,
67         TESTCASE_CONFIG.net_2_name)
68     test_utils.create_subnet(neutron_client,
69                              TESTCASE_CONFIG.subnet_2_name,
70                              TESTCASE_CONFIG.subnet_2_cidr,
71                              network_2_id)
72
73     sg_id = os_utils.create_security_group_full(neutron_client,
74                                                 TESTCASE_CONFIG.secgroup_name,
75                                                 TESTCASE_CONFIG.secgroup_descr)
76     test_utils.open_icmp(neutron_client, sg_id)
77     test_utils.open_http_port(neutron_client, sg_id)
78
79     vm_2 = test_utils.create_instance(
80         nova_client,
81         TESTCASE_CONFIG.instance_2_name,
82         image_id,
83         network_2_id,
84         sg_id,
85         secgroup_name=TESTCASE_CONFIG.secgroup_name)
86     vm_2_ip = test_utils.get_instance_ip(vm_2)
87
88     u1 = test_utils.generate_ping_userdata([vm_2_ip])
89     vm_1 = test_utils.create_instance(
90         nova_client,
91         TESTCASE_CONFIG.instance_1_name,
92         image_id,
93         network_1_id,
94         sg_id,
95         secgroup_name=TESTCASE_CONFIG.secgroup_name,
96         userdata=u1)
97
98     results.record_action("Create VPN with eRT==iRT")
99     vpn_name = "sdnvpn-7"
100     kwargs = {"import_targets": TESTCASE_CONFIG.targets,
101               "export_targets": TESTCASE_CONFIG.targets,
102               "route_distinguishers": TESTCASE_CONFIG.route_distinguishers,
103               "name": vpn_name}
104     bgpvpn = os_utils.create_bgpvpn(neutron_client, **kwargs)
105     bgpvpn_id = bgpvpn['bgpvpn']['id']
106     logger.debug("VPN created details: %s" % bgpvpn)
107
108     msg = ("Associate router '%s' and net '%s' to the VPN."
109            % (TESTCASE_CONFIG.router_1_name,
110               TESTCASE_CONFIG.net_2_name))
111     results.record_action(msg)
112     results.add_to_summary(0, "-")
113
114     os_utils.create_router_association(
115         neutron_client, bgpvpn_id, router_1_id)
116     os_utils.create_network_association(
117         neutron_client, bgpvpn_id, network_2_id)
118
119     test_utils.wait_for_bgp_router_assoc(
120         neutron_client, bgpvpn_id, router_1_id)
121     test_utils.wait_for_bgp_net_assoc(
122         neutron_client, bgpvpn_id, network_2_id)
123
124     instances_up = test_utils.wait_for_instances_up(vm_1, vm_2)
125     if not instances_up:
126         logger.error("One or more instances is down")
127
128     logger.info("Waiting for the VMs to connect to each other using the"
129                 " updated network configuration")
130     test_utils.wait_before_subtest()
131
132     results.get_ping_status(vm_1, vm_2, expected="PASS", timeout=200)
133     results.add_to_summary(0, "=")
134
135     msg = "Assign a Floating IP to %s" % vm_1.name
136     results.record_action(msg)
137
138     fip = os_utils.create_floating_ip(neutron_client)
139     fip_added = os_utils.add_floating_ip(nova_client, vm_1.id, fip['fip_addr'])
140     if fip_added:
141         results.add_success(msg)
142     else:
143         results.add_failure(msg)
144
145     results.record_action("Ping %s via Floating IP" % vm_1.name)
146     results.add_to_summary(0, "-")
147     results.ping_ip_test(fip['fip_addr'])
148
149     return results.compile_summary()
150
151
152 if __name__ == '__main__':
153     main()