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
8 # http://www.apache.org/licenses/LICENSE-2.0
17 import functest.utils.functest_logger as ft_logger
18 import functest.utils.openstack_utils as os_utils
19 from opnfv.deployment.factory import Factory as DeploymentFactory
21 from sdnvpn.lib import config as sdnvpn_config
23 logger = ft_logger.Logger("sndvpn_test_utils").getLogger()
25 common_config = sdnvpn_config.CommonConfig()
31 def create_net(neutron_client, name):
32 logger.debug("Creating network %s", name)
33 net_id = os_utils.create_neutron_net(neutron_client, name)
36 "There has been a problem when creating the neutron network")
41 def create_subnet(neutron_client, name, cidr, net_id):
42 logger.debug("Creating subnet %s in network %s with cidr %s",
44 subnet_id = os_utils.create_neutron_subnet(neutron_client,
50 "There has been a problem when creating the neutron subnet")
55 def create_network(neutron_client, net, subnet1, cidr1,
56 router, subnet2=None, cidr2=None):
57 """Network assoc will not work for networks/subnets created by this function.
59 It is an ODL limitation due to it handling routers as vpns.
60 See https://bugs.opendaylight.org/show_bug.cgi?id=6962"""
61 network_dic = os_utils.create_network_full(neutron_client,
68 "There has been a problem when creating the neutron network")
70 net_id = network_dic["net_id"]
71 subnet_id = network_dic["subnet_id"]
72 router_id = network_dic["router_id"]
74 if subnet2 is not None:
75 logger.debug("Creating and attaching a second subnet...")
76 subnet_id = os_utils.create_neutron_subnet(
77 neutron_client, subnet2, cidr2, net_id)
80 "There has been a problem when creating the second subnet")
82 logger.debug("Subnet '%s' created successfully" % subnet_id)
83 return net_id, subnet_id, router_id
86 def create_instance(nova_client,
98 if 'flavor' not in kwargs:
99 kwargs['flavor'] = common_config.default_flavor
101 logger.info("Creating instance '%s'..." % name)
103 "Configuration:\n name=%s \n flavor=%s \n image=%s \n"
104 " network=%s\n secgroup=%s \n hypervisor=%s \n"
105 " fixed_ip=%s\n files=%s\n userdata=\n%s\n"
106 % (name, kwargs['flavor'], image_id, network_id, sg_id,
107 compute_node, fixed_ip, files, userdata))
108 instance = os_utils.create_instance_and_wait_for_active(
115 av_zone=compute_node,
120 logger.error("Error while booting instance.")
123 logger.debug("Instance '%s' booted successfully. IP='%s'." %
124 (name, instance.networks.itervalues().next()[0]))
125 # Retrieve IP of INSTANCE
126 # instance_ip = instance.networks.get(network_id)[0]
129 logger.debug("Adding '%s' to security group '%s'..."
130 % (name, secgroup_name))
132 logger.debug("Adding '%s' to security group '%s'..."
134 os_utils.add_secgroup_to_instance(nova_client, instance.id, sg_id)
139 def generate_ping_userdata(ips_array):
142 ips = ("%s %s" % (ips, ip))
144 ips = ips.replace(' ', ' ')
145 return ("#!/bin/sh\n"
150 " ping -c 1 $ip 2>&1 >/dev/null\n"
152 " if [ \"Z$RES\" = \"Z0\" ] ; then\n"
153 " echo ping $ip OK\n"
154 " else echo ping $ip KO\n"
162 def generate_userdata_common():
163 return ("#!/bin/sh\n"
164 "sudo mkdir -p /home/cirros/.ssh/\n"
165 "sudo chown cirros:cirros /home/cirros/.ssh/\n"
166 "sudo chown cirros:cirros /home/cirros/id_rsa\n"
167 "mv /home/cirros/id_rsa /home/cirros/.ssh/\n"
168 "sudo echo ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgnWtSS98Am516e"
169 "stBsq0jbyOB4eLMUYDdgzsUHsnxFQCtACwwAg9/2uq3FoGUBUWeHZNsT6jcK9"
170 "sCMEYiS479CUCzbrxcd8XaIlK38HECcDVglgBNwNzX/WDfMejXpKzZG61s98rU"
171 "ElNvZ0YDqhaqZGqxIV4ejalqLjYrQkoly3R+2k= "
172 "cirros@test1>/home/cirros/.ssh/authorized_keys\n"
173 "sudo chown cirros:cirros /home/cirros/.ssh/authorized_keys\n"
174 "chmod 700 /home/cirros/.ssh\n"
175 "chmod 644 /home/cirros/.ssh/authorized_keys\n"
176 "chmod 600 /home/cirros/.ssh/id_rsa\n"
180 def generate_userdata_with_ssh(ips_array):
181 u1 = generate_userdata_common()
185 ips = ("%s %s" % (ips, ip))
187 ips = ips.replace(' ', ' ')
193 " hostname=$(ssh -y -i /home/cirros/.ssh/id_rsa "
194 "cirros@$ip 'hostname' </dev/zero 2>/dev/null)\n"
196 " if [ \"Z$RES\" = \"Z0\" ]; then echo $ip $hostname;\n"
197 " else echo $ip 'not reachable';fi;\n"
205 def get_installerHandler():
206 installer_type = str(os.environ['INSTALLER_TYPE'].lower())
207 installer_ip = get_installer_ip()
209 if installer_type not in ["fuel", "apex"]:
210 raise ValueError("%s is not supported" % installer_type)
212 if installer_type in ["apex"]:
213 developHandler = DeploymentFactory.get_handler(
217 pkey_file="/root/.ssh/id_rsa")
219 if installer_type in ["fuel"]:
220 developHandler = DeploymentFactory.get_handler(
225 return developHandler
229 developHandler = get_installerHandler()
230 return developHandler.get_nodes()
233 def get_installer_ip():
234 return str(os.environ['INSTALLER_IP'])
237 def wait_for_instance(instance):
238 logger.info("Waiting for instance %s to get a DHCP lease..." % instance.id)
239 # The sleep this function replaced waited for 80s
242 pattern = "Lease of .* obtained, lease time"
243 expected_regex = re.compile(pattern)
245 while tries > 0 and not expected_regex.search(console_log):
246 console_log = instance.get_console_output()
247 time.sleep(sleep_time)
250 if not expected_regex.search(console_log):
251 logger.error("Instance %s seems to have failed leasing an IP."
257 def wait_for_instances_up(*args):
258 check = [wait_for_instance(instance) for instance in args]
262 def wait_for_bgp_net_assoc(neutron_client, bgpvpn_id, net_id):
266 logger.debug("Waiting for network %s to associate with BGPVPN %s "
267 % (bgpvpn_id, net_id))
269 while tries > 0 and net_id not in nets:
270 nets = os_utils.get_bgpvpn_networks(neutron_client, bgpvpn_id)
271 time.sleep(sleep_time)
273 if net_id not in nets:
274 logger.error("Association of network %s with BGPVPN %s failed" %
280 def wait_for_bgp_net_assocs(neutron_client, bgpvpn_id, *args):
281 check = [wait_for_bgp_net_assoc(neutron_client, bgpvpn_id, id)
283 # Return True if all associations succeeded
287 def wait_for_bgp_router_assoc(neutron_client, bgpvpn_id, router_id):
291 logger.debug("Waiting for router %s to associate with BGPVPN %s "
292 % (bgpvpn_id, router_id))
293 while tries > 0 and router_id not in routers:
294 routers = os_utils.get_bgpvpn_routers(neutron_client, bgpvpn_id)
295 time.sleep(sleep_time)
297 if router_id not in routers:
298 logger.error("Association of router %s with BGPVPN %s failed" %
299 (router_id, bgpvpn_id))
304 def wait_for_bgp_router_assocs(neutron_client, bgpvpn_id, *args):
305 check = [wait_for_bgp_router_assoc(neutron_client, bgpvpn_id, id)
307 # Return True if all associations succeeded
311 def wait_before_subtest(*args, **kwargs):
312 ''' This is a placeholder.
313 TODO: Replace delay with polling logic. '''
317 def assert_and_get_compute_nodes(nova_client, required_node_number=2):
318 """Get the compute nodes in the deployment
320 Exit if the deployment doesn't have enough compute nodes"""
321 compute_nodes = os_utils.get_hypervisors(nova_client)
323 num_compute_nodes = len(compute_nodes)
324 if num_compute_nodes < 2:
325 logger.error("There are %s compute nodes in the deployment. "
326 "Minimum number of nodes to complete the test is 2."
330 logger.debug("Compute nodes: %s" % compute_nodes)
334 def open_icmp_ssh(neutron_client, security_group_id):
335 os_utils.create_secgroup_rule(neutron_client,
339 os_utils.create_secgroup_rule(neutron_client,
345 def open_bgp_port(neutron_client, security_group_id):
346 os_utils.create_secgroup_rule(neutron_client,
352 def exec_cmd(cmd, verbose):
354 logger.debug("Executing '%s'" % cmd)
355 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE,
356 stderr=subprocess.STDOUT)
358 for line in iter(p.stdout.readline, b''):
365 returncode = p.wait()
367 logger.error("Command %s failed to execute." % cmd)
370 return output, success
373 def check_odl_fib(ip, controller_ip):
374 """Check that there is an entry in the ODL Fib for `ip`"""
375 url = "http://" + controller_ip + \
376 ":8181/restconf/config/odl-fib:fibEntries/"
377 logger.debug("Querring '%s' for FIB entries", url)
378 res = requests.get(url, auth=(ODL_USER, ODL_PASS))
379 if res.status_code != 200:
380 logger.error("OpenDaylight response status code: %s", res.status_code)
382 logger.debug("Checking whether '%s' is in the OpenDaylight FIB"
384 logger.debug("OpenDaylight FIB: \n%s" % res.text)
385 return ip in res.text
388 def run_odl_cmd(odl_node, cmd):
390 Run a command in the OpenDaylight Karaf shell
392 This is a bit flimsy because of shell quote escaping, make sure that
393 the cmd passed does not have any top level double quotes or this
396 karaf_cmd = '/opt/opendaylight/bin/client "%s" ' % cmd
397 return odl_node.run_cmd(karaf_cmd)