blob: b058a5cc6cd3350bff7e37bdbd433651c12ee443 [file] [log] [blame]
Chetan Gaonkercb122cc2016-05-10 10:58:34 -07001#!/usr/bin/env python
A R Karthick1fa66542017-08-10 14:15:29 -07002# Copyright 2017-present Open Networking Foundation
Chetan Gaonkercfcce782016-05-10 10:10:42 -07003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
A.R Karthick95d044e2016-06-10 18:44:36 -07007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A.R Karthick95d044e2016-06-10 18:44:36 -07009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonker93e302d2016-04-05 10:51:07 -070016from argparse import ArgumentParser
A R Karthick14118c62016-07-27 14:54:04 -070017import os,sys,time,socket,errno
ChetanGaonkereadad482016-08-26 01:21:47 -070018import shutil, platform, re
Chetan Gaonker4d842ad2016-04-26 10:04:24 -070019utils_dir = os.path.join( os.path.dirname(os.path.realpath(__file__)), '../utils')
A R Karthick03bd2812017-03-03 17:49:17 -080020cli_dir = os.path.join( os.path.dirname(os.path.realpath(__file__)), '../cli')
Chetan Gaonker7142a342016-04-07 14:53:12 -070021sys.path.append(utils_dir)
A R Karthick03bd2812017-03-03 17:49:17 -080022sys.path.append(cli_dir)
ChetanGaonker68a047f2016-10-12 10:31:48 -070023sys.path.insert(1, '/usr/local/lib/python2.7/dist-packages')
A R Karthick6708f562017-09-05 12:15:31 -070024from CordTestUtils import get_mac, getstatusoutput
A.R Karthickbe7768c2017-03-17 11:39:41 -070025from OnosCtrl import OnosCtrl
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070026from OltConfig import OltConfig
A R Karthick946141b2017-01-24 16:37:47 -080027from OnosFlowCtrl import OnosFlowCtrl
A R Karthick1f03e912016-05-18 11:39:22 -070028from threadPool import ThreadPool
Chetan Gaonker3533faa2016-04-25 17:50:14 -070029from CordContainer import *
A R Karthicke99ab5c2016-09-30 13:59:57 -070030from CordTestServer import cord_test_server_start,cord_test_server_stop,cord_test_server_shutdown,CORD_TEST_HOST,CORD_TEST_PORT
A R Karthick07608ef2016-08-23 16:51:19 -070031from TestManifest import TestManifest
A.R Karthick57fa9372017-05-24 12:47:03 -070032from VolthaCtrl import VolthaService
A R Karthick1555c7c2017-09-07 14:59:41 -070033from EapolAAA import get_radius_macs
34
A R Karthick6f2ac6f2017-07-26 12:55:24 -070035try:
36 from docker import APIClient as Client
37except:
38 from docker import Client
ChetanGaonkereadad482016-08-26 01:21:47 -070039from docker.utils import kwargs_from_env
A R Karthickea8bfce2016-10-13 16:32:07 -070040from Xos import XosServiceProfile
A R Karthick07608ef2016-08-23 16:51:19 -070041try:
42 from Fabric import FabricMAAS
43except:
44 FabricMAAS = None
Chetan Gaonker93e302d2016-04-05 10:51:07 -070045
Chetan Gaonker93e302d2016-04-05 10:51:07 -070046class CordTester(Container):
Chetan Gaonker93e302d2016-04-05 10:51:07 -070047 sandbox = '/root/test'
Chetan Gaonker7142a342016-04-07 14:53:12 -070048 sandbox_setup = '/root/test/src/test/setup'
Chetan Gaonker4d842ad2016-04-26 10:04:24 -070049 tester_base = os.path.dirname(os.path.realpath(__file__))
50 tester_paths = os.path.realpath(__file__).split(os.path.sep)
A R Karthickb7e80902016-05-17 09:38:31 -070051 tester_path_index = tester_paths.index('src') - 1
Chetan Gaonker7142a342016-04-07 14:53:12 -070052 sandbox_host = os.path.sep.join(tester_paths[:tester_path_index+1])
Chetan Gaonker93e302d2016-04-05 10:51:07 -070053
54 host_guest_map = ( (sandbox_host, sandbox),
Chetan Gaonker85b7bd52016-04-20 10:29:12 -070055 ('/lib/modules', '/lib/modules'),
56 ('/var/run/docker.sock', '/var/run/docker.sock')
Chetan Gaonker93e302d2016-04-05 10:51:07 -070057 )
58 basename = 'cord-tester'
A R Karthick36cfcef2016-08-18 15:20:07 -070059 switch_on_olt = False
A R Karthickf7a613b2017-02-24 09:36:44 -080060 IMAGE = 'cordtest/nose'
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -070061 ALL_TESTS = ('tls', 'dhcp', 'dhcprelay','igmp', 'subscriber',
62 'cordSubscriber', 'vrouter', 'flows', 'proxyarp', 'acl', 'xos', 'fabric',
Chetan Gaonkerefb55282017-01-27 23:07:41 +000063 'cbench', 'cluster', 'netCondition', 'cordvtn', 'iperf', 'mini', 'vsg')
Chetan Gaonker93e302d2016-04-05 10:51:07 -070064
Thangavelu K Sa61d1da2017-09-05 05:32:21 -070065 dhcp_data_dir = os.path.join(tester_base, '..', 'setup')
66 default_config = { 'default-lease-time' : 600, 'max-lease-time' : 7200, }
67 default_options = [ ('subnet-mask', '255.255.255.0'),
Thangavelu K Saf3a1512017-09-06 06:34:14 -070068 ('broadcast-address', '192.168.100.255'),
69 ('domain-name-servers', '192.168.100.1'),
Thangavelu K Sa61d1da2017-09-05 05:32:21 -070070 ('domain-name', '"mydomain.cord-tester"'),
71 ]
Thangavelu K Saf3a1512017-09-06 06:34:14 -070072 default_subnet_config = [ ('192.168.100.2',
Thangavelu K Sa61d1da2017-09-05 05:32:21 -070073'''
Thangavelu K Saf3a1512017-09-06 06:34:14 -070074subnet 192.168.100.0 netmask 255.255.255.0 {
75 range 192.168.100.10 192.168.100.100;
Thangavelu K Sa61d1da2017-09-05 05:32:21 -070076}
77'''), ]
78 host_ip_map = {}
79 relay_interfaces_last = ()
80 interface_to_mac_map = {}
81 configs = {}
82
83
A R Karthicka013a272016-08-16 16:40:19 -070084 def __init__(self, tests, instance = 0, num_instances = 1, ctlr_ip = None,
A R Karthick07608ef2016-08-23 16:51:19 -070085 name = '', image = IMAGE, prefix = '', tag = 'candidate',
A R Karthick1555c7c2017-09-07 14:59:41 -070086 env = None, rm = False, update = False, network = None, radius = None):
A R Karthick1f03e912016-05-18 11:39:22 -070087 self.tests = tests
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070088 self.ctlr_ip = ctlr_ip
A R Karthick1555c7c2017-09-07 14:59:41 -070089 #Uncomment to enable configuring radius server ports on ovs bridge
90 self.radius = radius
Chetan Gaonker93e302d2016-04-05 10:51:07 -070091 self.rm = rm
A R Karthicke4660f52017-02-23 12:08:41 -080092 self.name = name or self.get_name(num_instances)
A R Karthick07608ef2016-08-23 16:51:19 -070093 super(CordTester, self).__init__(self.name, image = image, prefix = prefix, tag = tag)
Chetan Gaonker93e302d2016-04-05 10:51:07 -070094 host_config = self.create_host_config(host_guest_map = self.host_guest_map, privileged = True)
95 volumes = []
Chetan Gaonkerb84835f2016-04-19 15:12:10 -070096 for _, g in self.host_guest_map:
Chetan Gaonker93e302d2016-04-05 10:51:07 -070097 volumes.append(g)
Chetan Gaonker85b7bd52016-04-20 10:29:12 -070098 if update is True or not self.img_exists():
A R Karthick07608ef2016-08-23 16:51:19 -070099 self.build_image(self.image_name)
A R Karthicka013a272016-08-16 16:40:19 -0700100 self.create = True
101 #check if are trying to run tests on existing container
A R Karthicke4660f52017-02-23 12:08:41 -0800102 if not self.exists():
A R Karthicka013a272016-08-16 16:40:19 -0700103 ##Remove test container if any
104 self.remove_container(self.name, force=True)
105 else:
106 self.create = False
A R Karthicke4660f52017-02-23 12:08:41 -0800107 self.rm = False
A R Karthick078e63a2016-07-28 13:59:31 -0700108 self.olt = False
A R Karthicke8bd80e2017-08-01 12:36:24 -0700109 self.switch_started = False
A.R Karthick5968e0d2017-05-16 14:50:46 -0700110 olt_config_file = 'olt_config.json'
111 if env is not None:
112 if env.has_key('OLT_CONFIG'):
113 self.olt = True
114 if env.has_key('OLT_CONFIG_FILE'):
115 olt_config_file = os.path.basename(env['OLT_CONFIG_FILE'])
A.R Karthick5968e0d2017-05-16 14:50:46 -0700116 olt_conf_file = os.path.join(self.tester_base, olt_config_file)
A R Karthick078e63a2016-07-28 13:59:31 -0700117 olt_config = OltConfig(olt_conf_file)
A R Karthicka4d958a2017-09-05 19:01:37 -0700118 self.olt_conf_file = olt_conf_file
A R Karthick078e63a2016-07-28 13:59:31 -0700119 self.port_map, _ = olt_config.olt_port_map()
A.R Karthick369f89e2017-03-02 15:22:45 -0800120 self.vcpes = olt_config.get_vcpes()
A R Karthick078e63a2016-07-28 13:59:31 -0700121 #Try using the host interface in olt conf to setup the switch
A.R Karthick88e80b92016-12-05 20:23:45 -0800122 self.switches = self.port_map['switches']
A R Karthick168e2342017-08-15 16:13:10 -0700123 voltha_network = VolthaService.get_network('voltha')
124 voltha_rest_ip = VolthaService.get_ip('chameleon')
A R Karthick1f03e912016-05-18 11:39:22 -0700125 if env is not None:
A.R Karthick88e80b92016-12-05 20:23:45 -0800126 env['TEST_SWITCH'] = self.switches[0]
127 env['TEST_SWITCHES'] = ','.join(self.switches)
A R Karthick1f03e912016-05-18 11:39:22 -0700128 env['TEST_HOST'] = self.name
129 env['TEST_INSTANCE'] = instance
130 env['TEST_INSTANCES'] = num_instances
A R Karthick168e2342017-08-15 16:13:10 -0700131 if voltha_rest_ip:
132 env['VOLTHA_HOST'] = voltha_rest_ip
A R Karthicka013a272016-08-16 16:40:19 -0700133 if self.create:
134 print('Starting test container %s, image %s, tag %s' %(self.name, self.image, self.tag))
135 self.start(rm = False, volumes = volumes, environment = env,
136 host_config = host_config, tty = True)
A R Karthick85eb1862017-01-23 16:10:57 -0800137 if network is not None:
138 Container.connect_to_network(self.name, network)
A R Karthick168e2342017-08-15 16:13:10 -0700139 if voltha_network:
140 print('Connecting container to VOLTHA container network %s' %(voltha_network))
141 Container.connect_to_network(self.name, voltha_network)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700142
A.R Karthicke4631062016-11-03 14:28:19 -0700143 def execute_switch(self, cmd, shell = False):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700144 if self.olt:
145 return os.system(cmd)
146 return self.execute(cmd, shell = shell)
147
A R Karthick946141b2017-01-24 16:37:47 -0800148 def test_flow(self, switch):
149 if not self.olt:
150 return False
151 egress = 1
152 ingress = 2
153 egress_map = { 'ether': '00:00:00:00:00:03', 'ip': '192.168.30.1' }
154 ingress_map = { 'ether': '00:00:00:00:00:04', 'ip': '192.168.40.1' }
155 device_id = 'of:{}'.format(get_mac(switch))
A R Karthick973010f2017-02-06 16:41:51 -0800156 ctlr = self.ctlr_ip.split(',')[0]
A R Karthick946141b2017-01-24 16:37:47 -0800157 flow = OnosFlowCtrl(deviceId = device_id,
158 egressPort = egress,
159 ingressPort = ingress,
160 ethType = '0x800',
161 ipSrc = ('IPV4_SRC', ingress_map['ip']+'/32'),
162 ipDst = ('IPV4_DST', egress_map['ip']+'/32'),
A R Karthick973010f2017-02-06 16:41:51 -0800163 controller = ctlr
A R Karthick946141b2017-01-24 16:37:47 -0800164 )
165 result = flow.addFlow()
166 if result != True:
167 return result
168 time.sleep(1)
169 #find and remove the flow
170 flow_id = flow.findFlow(device_id, IN_PORT = ('port', ingress),
171 ETH_TYPE = ('ethType','0x800'), IPV4_SRC = ('ip', ingress_map['ip']+'/32'),
172 IPV4_DST = ('ip', egress_map['ip']+'/32'))
173 result = False
174 if flow_id:
175 result = True
176 flow.removeFlow(device_id, flow_id)
177 return result
178
179 def ctlr_switch_availability(self, switch):
180 '''Test Add and verify flows with IPv4 selectors'''
181 if not self.olt:
182 return False
183 device_id = 'of:{}'.format(get_mac(switch))
A R Karthick973010f2017-02-06 16:41:51 -0800184 ctlr = self.ctlr_ip.split(',')[0]
185 devices = OnosCtrl.get_devices(controller = ctlr)
A R Karthick946141b2017-01-24 16:37:47 -0800186 if devices:
187 device = filter(lambda d: d['id'] == device_id, devices)
A R Karthicke8bd80e2017-08-01 12:36:24 -0700188 if device:
189 return True
A R Karthick946141b2017-01-24 16:37:47 -0800190 return False
191
A R Karthicke8bd80e2017-08-01 12:36:24 -0700192 def start_switch(self, manifest, boot_delay = 2):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700193 """Start OVS"""
194 ##Determine if OVS has to be started locally or not
195 s_file,s_sandbox = ('of-bridge-local.sh',self.tester_base) if self.olt else ('of-bridge.sh',self.sandbox_setup)
A.R Karthick88e80b92016-12-05 20:23:45 -0800196 ovs_cmd = os.path.join(s_sandbox, s_file)
A R Karthicke8bd80e2017-08-01 12:36:24 -0700197 switches = filter(lambda sw: sw.startswith('br-int'), self.switches)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700198 if self.olt:
A R Karthick36cfcef2016-08-18 15:20:07 -0700199 if CordTester.switch_on_olt is True:
200 return
201 CordTester.switch_on_olt = True
A R Karthicke8bd80e2017-08-01 12:36:24 -0700202 ovs_cmd += ' {} {}'.format(len(switches), self.ctlr_ip)
203 if manifest.voltha_enable and manifest.voltha_loc and Onos.ssl_key:
204 ovs_cmd += ' {}'.format(manifest.voltha_loc)
205 print('Starting OVS on the host with %d switches for controller: %s' %(len(switches), self.ctlr_ip))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700206 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800207 ovs_cmd += ' {}'.format(self.switches[0])
208 print('Starting OVS on test container %s for controller: %s' %(self.name, self.ctlr_ip))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700209 self.execute_switch(ovs_cmd)
A R Karthick946141b2017-01-24 16:37:47 -0800210 time.sleep(5)
211 ## Wait for the controller to see the switch
A R Karthicke8bd80e2017-08-01 12:36:24 -0700212 for switch in switches:
A.R Karthick88e80b92016-12-05 20:23:45 -0800213 status = 1
214 tries = 0
A R Karthick946141b2017-01-24 16:37:47 -0800215 result = self.ctlr_switch_availability(switch) and self.test_flow(switch)
216 if result == True:
217 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800218 while status != 0 and tries < 500:
219 cmd = 'sudo ovs-ofctl dump-flows {0} | grep \"type=0x8942\"'.format(switch)
220 status = self.execute_switch(cmd, shell = True)
221 tries += 1
A R Karthick946141b2017-01-24 16:37:47 -0800222 if status != 0 and tries > 100:
223 if self.ctlr_switch_availability(switch):
224 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800225 if tries % 10 == 0:
226 print('Waiting for test switch %s to be connected to ONOS controller ...' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700227
A.R Karthick88e80b92016-12-05 20:23:45 -0800228 if status != 0:
229 print('Test Switch %s not connected to ONOS container.'
230 'Please remove ONOS container and restart the test' %switch)
231 if self.rm:
232 self.kill()
233 sys.exit(1)
234 else:
235 print('Test Switch %s connected to ONOS container.' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700236
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700237 if boot_delay:
238 time.sleep(boot_delay)
239
A R Karthicke8bd80e2017-08-01 12:36:24 -0700240 self.switch_started = True
241
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700242 def setup_dhcpd(self, manifest, boot_delay = 5):
A R Karthicka4d958a2017-09-05 19:01:37 -0700243 if not self.olt or not manifest.start_switch:
A R Karthick6708f562017-09-05 12:15:31 -0700244 return False
245 if self.service_running("/usr/sbin/dhcpd"):
246 print('DHCPD already running in container %s' %self.name)
247 return True
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700248 setup_for_relay = self.dhcp_relay_setup()
249 dhcp_start_status = self.dhcpd_start()
250 if setup_for_relay and dhcp_start_status:
251 return True
252 else:
253 return False
254
255 def dhcp_relay_setup(self):
A R Karthick6708f562017-09-05 12:15:31 -0700256 ctlr = self.ctlr_ip.split(',')[0]
A R Karthicka4d958a2017-09-05 19:01:37 -0700257 did = OnosCtrl.get_device_id(controller = ctlr, mfr = 'Nicira', olt_conf_file = self.olt_conf_file)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700258 self.relay_device_id = did
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700259 if self.port_map:
A R Karthicka4d958a2017-09-05 19:01:37 -0700260 ##get the relay port for the OVS switch
261 relay_port = None
262 for host_intf, ports in self.port_map['switch_relay_port_list']:
263 if host_intf.startswith('br-int'):
264 relay_port = ports[0]
265 break
266
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700267 ##Per subscriber, we use 1 relay port
268 try:
A R Karthicka4d958a2017-09-05 19:01:37 -0700269 relay_port = self.port_map[relay_port]
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700270 except:
271 relay_port = self.port_map['uplink']
272 self.relay_interface_port = relay_port
273 self.relay_interfaces = (self.port_map[self.relay_interface_port],)
274 else:
275 print 'Setup dhcpd we must have port_map'
276 return False
277 if self.port_map:
278 ##generate a ip/mac client virtual interface config for onos
279 interface_list = []
280 for port in self.port_map['ports']:
281 port_num = self.port_map[port]
282 if port_num == self.port_map['uplink']:
283 continue
284 ip = self.get_host_ip(port_num)
285 mac = self.get_mac(port)
286 interface_list.append((port_num, ip, mac))
287
288 #configure dhcp server virtual interface on the same subnet as first client interface
289 relay_ip = self.get_host_ip(interface_list[0][0])
290 relay_mac = self.get_mac(self.port_map[self.relay_interface_port])
291 interface_list.append((self.relay_interface_port, relay_ip, relay_mac))
292 self.onos_interface_load(interface_list)
293 return True
294
A R Karthick6708f562017-09-05 12:15:31 -0700295 def onos_load_config(self, config):
296 ctlr = self.ctlr_ip.split(',')[0]
297 status, code = OnosCtrl.config(config, controller = ctlr)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700298 if status is False:
299 log_test.info('JSON request returned status %d' %code)
300 assert_equal(status, True)
301 time.sleep(3)
302
A R Karthick6708f562017-09-05 12:15:31 -0700303 def onos_interface_load(self, interface_list):
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700304 interface_dict = { 'ports': {} }
305 for port_num, ip, mac in interface_list:
306 port_map = interface_dict['ports']
A R Karthick6708f562017-09-05 12:15:31 -0700307 port = '{}/{}'.format(self.relay_device_id, port_num)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700308 port_map[port] = { 'interfaces': [] }
309 interface_list = port_map[port]['interfaces']
310 interface_map = { 'ips' : [ '{}/{}'.format(ip, 24) ],
311 'mac' : mac,
312 'name': 'vir-{}'.format(port_num)
313 }
314 interface_list.append(interface_map)
315
A R Karthick6708f562017-09-05 12:15:31 -0700316 self.onos_load_config(interface_dict)
317 self.configs['interface_config'] = interface_dict
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700318
A R Karthick6708f562017-09-05 12:15:31 -0700319 def get_host_ip(self, port):
320 if self.host_ip_map.has_key(port):
321 return self.host_ip_map[port]
322 self.host_ip_map[port] = '192.168.100.{}'.format(port)
323 return self.host_ip_map[port]
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700324
A R Karthick6708f562017-09-05 12:15:31 -0700325 def get_mac(self, iface):
326 if self.interface_to_mac_map.has_key(iface):
327 return self.interface_to_mac_map[iface]
328 cmd = 'docker exec %s ip link show %s | awk \'/ether/ {print $2}\'' %(self.name, iface)
329 st, mac = getstatusoutput(cmd)
330 assert st == 0, 'Cannot get MAC for interface {}'.format(iface)
331 mac = mac.strip()
332 self.interface_to_mac_map[iface] = mac
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700333 return mac
334
A R Karthick6708f562017-09-05 12:15:31 -0700335 def service_running(self, pattern):
336 st, _ = getstatusoutput('docker exec {} pgrep -f "{}"'.format(self.name, pattern))
337 return True if st == 0 else False
338
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700339 def dhcpd_conf_generate(cls, config = default_config, options = default_options,
340 subnet = default_subnet_config):
341 conf = ''
342 for k, v in config.items():
343 conf += '{} {};\n'.format(k, v)
344
345 opts = ''
346 for k, v in options:
347 opts += 'option {} {};\n'.format(k, v)
348
349 subnet_config = ''
350 for _, v in subnet:
351 subnet_config += '{}\n'.format(v)
352
353 return '{}{}{}'.format(conf, opts, subnet_config)
354
A R Karthick6708f562017-09-05 12:15:31 -0700355 def dhcpd_start(self, intf_list = None,
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700356 config = default_config, options = default_options,
357 subnet = default_subnet_config):
358 '''Start the dhcpd server by generating the conf file'''
359 if intf_list is None:
A R Karthick6708f562017-09-05 12:15:31 -0700360 intf_list = self.relay_interfaces
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700361 ##stop dhcpd if already running
A R Karthick6708f562017-09-05 12:15:31 -0700362 #self.dhcpd_stop()
363 dhcp_conf = self.dhcpd_conf_generate(config = config, options = options,
364 subnet = subnet)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700365 ##first touch dhcpd.leases if it doesn't exist
A R Karthick6708f562017-09-05 12:15:31 -0700366 lease_file = '{}/dhcpd.leases'.format(self.dhcp_data_dir)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700367 if os.access(lease_file, os.F_OK) is False:
368 with open(lease_file, 'w') as fd: pass
369
A R Karthick6708f562017-09-05 12:15:31 -0700370 conf_file = '{}/dhcpd.conf'.format(self.dhcp_data_dir)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700371 with open(conf_file, 'w') as fd:
372 fd.write(dhcp_conf)
373
374 #now configure the dhcpd interfaces for various subnets
375 index = 0
376 intf_info = []
377 for ip,_ in subnet:
378 intf = intf_list[index]
A R Karthick6708f562017-09-05 12:15:31 -0700379 mac = self.get_mac(intf)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700380 intf_info.append((ip, mac))
381 index += 1
382 cmd = 'ifconfig {} {}'.format(intf, ip)
A R Karthick6708f562017-09-05 12:15:31 -0700383 status = self.execute(cmd, shell = True)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700384
385 intf_str = ','.join(intf_list)
386 dhcpd_cmd = '/usr/sbin/dhcpd -4 --no-pid -cf {0} -lf {1} {2}'.format('/root/test/src/test/setup/dhcpd.conf','/root/test/src/test/setup/dhcpd.leases', intf_str)
387 print('Starting DHCPD server with command: %s' %dhcpd_cmd)
A R Karthick6708f562017-09-05 12:15:31 -0700388 status = self.execute(dhcpd_cmd, shell = True)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700389 if status > 255:
390 status = 1
391 else:
392 return False
393 time.sleep(3)
A R Karthick6708f562017-09-05 12:15:31 -0700394 self.relay_interfaces_last = self.relay_interfaces
395 self.relay_interfaces = intf_list
396 #self.onos_dhcp_relay_load(*intf_info[0])
Thangavelu K Sa61d1da2017-09-05 05:32:21 -0700397 return True
398
A.R Karthick369f89e2017-03-02 15:22:45 -0800399 def setup_vcpes(self, port_num = 0):
400 res = 0
401 for vcpe in self.vcpes:
402 port, s_tag, c_tag = vcpe['port'], vcpe['s_tag'], vcpe['c_tag']
403 if os.access('/sys/class/net/{}'.format(port), os.F_OK):
404 guest_port = 'vcpe{}'.format(port_num)
405 port_num += 1
A.R Karthick5968e0d2017-05-16 14:50:46 -0700406 print('Provisioning guest port %s for %s with host port: %s, s_tag: %d, c_tag: %d\n'
407 %(guest_port, self.name, port, s_tag, c_tag))
A.R Karthick369f89e2017-03-02 15:22:45 -0800408 cmd = 'pipework {} -i {} -l {} {} 0.0.0.0/24'.format(port, guest_port, guest_port, self.name)
409 res = os.system(cmd)
410 if res == 0:
411 vlan_outer_port = '{}.{}'.format(guest_port, s_tag)
412 vlan_inner_port = '{}.{}'.format(vlan_outer_port, c_tag)
413 #configure the s_tag/c_tag interfaces inside the guest container
414 cmds = ('ip link set {} up'.format(guest_port),
415 'ip link add link {} name {} type vlan id {}'.format(guest_port,
416 vlan_outer_port,
417 s_tag),
418 'ip link set {} up'.format(vlan_outer_port),
419 'ip link add link {} name {} type vlan id {}'.format(vlan_outer_port,
420 vlan_inner_port,
421 c_tag),
422 'ip link set {} up'.format(vlan_inner_port),
423 )
424 res += self.execute(cmds, shell = True)
425
426 @classmethod
427 def cleanup_vcpes(cls, vcpes):
428 port_num = 0
429 for vcpe in vcpes:
430 port = vcpe['port']
431 if os.access('/sys/class/net/{}'.format(port), os.F_OK):
432 local_port = 'vcpe{}'.format(port_num)
433 cmd = 'ip link del {}'.format(local_port)
434 os.system(cmd)
435 port_num += 1
436
A R Karthick1f03e912016-05-18 11:39:22 -0700437 def setup_intfs(self, port_num = 0):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700438 tester_intf_subnet = '192.168.100'
439 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800440 switches = self.port_map['switches']
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700441 start_vlan = self.port_map['start_vlan']
A.R Karthick4f583842017-06-09 17:15:47 -0700442 ponsim = self.port_map['ponsim']
A R Karthick07769362016-07-28 17:36:15 -0700443 start_vlan += port_num
444 uplink = self.port_map['uplink']
445 wan = self.port_map['wan']
A.R Karthick4f583842017-06-09 17:15:47 -0700446 if ponsim is True:
447 if not wan:
448 wan = 'ponmgmt'
A.R Karthick369f89e2017-03-02 15:22:45 -0800449 vcpe_port_num = port_num
A.R Karthick88e80b92016-12-05 20:23:45 -0800450 port_list = self.port_map['switch_port_list'] + self.port_map['switch_relay_port_list']
A R Karthick52414732017-01-31 09:59:47 -0800451 print('Provisioning the ports for the test container\n')
A.R Karthick88e80b92016-12-05 20:23:45 -0800452 for host_intf, ports in port_list:
A R Karthicke8bd80e2017-08-01 12:36:24 -0700453 if self.switch_started is False and host_intf.startswith('br-int'):
454 continue
A.R Karthick4f583842017-06-09 17:15:47 -0700455 setup_ponsim = ponsim
456 host_index = 0
457 host_intf_base = 'pon1'
A R Karthickf97ee132017-03-23 09:48:37 -0700458 #if the host interface/switch does not exist, just create a dummy ovs switch
459 #needed if we are running with no-switch option
460 if not os.access('/sys/class/net/{}'.format(host_intf), os.F_OK):
461 os.system('ovs-vsctl add-br {}'.format(host_intf))
A.R Karthick88e80b92016-12-05 20:23:45 -0800462 uplink = self.port_map[host_intf]['uplink']
A.R Karthick4f583842017-06-09 17:15:47 -0700463 if setup_ponsim is True:
464 if host_intf.find('_') < 0:
465 print('Invalid host interface specified with ponsim. Disabling ponsim setup')
466 setup_ponsim = False
467 else:
468 try:
469 host_index = int(host_intf.split('_')[-1])
470 host_intf_base = host_intf.split('_')[0]
471 except:
472 print('Invalid host interface with ponsim. Disabling ponsim setup')
473 setup_ponsim = False
A.R Karthick88e80b92016-12-05 20:23:45 -0800474 for port in ports:
475 guest_if = port
A R Karthicke4660f52017-02-23 12:08:41 -0800476 local_if = 'l{}'.format(port_num+1) #port #'{0}_{1}'.format(guest_if, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800477 guest_ip = '{0}.{1}/24'.format(tester_intf_subnet, port_num+1)
A.R Karthick4f583842017-06-09 17:15:47 -0700478 if setup_ponsim is True:
479 if port != self.port_map[uplink]:
480 host_intf = '{}_{}'.format(host_intf_base, host_index)
481 host_index += 1
482
A.R Karthick88e80b92016-12-05 20:23:45 -0800483 ##Use pipeworks to configure container interfaces on host/bridge interfaces
484 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(host_intf, guest_if,
A R Karthick07769362016-07-28 17:36:15 -0700485 local_if, self.name, guest_ip)
A.R Karthick88e80b92016-12-05 20:23:45 -0800486 #if the wan interface is specified for uplink, then use it instead
487 if wan and port == self.port_map[uplink]:
488 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(wan, guest_if,
489 local_if, self.name, guest_ip)
490 else:
491 if start_vlan != 0:
492 pipework_cmd += ' @{}'.format(start_vlan)
493 start_vlan += 1
A.R Karthick4f583842017-06-09 17:15:47 -0700494 print('Running PIPEWORK cmd: %s' %pipework_cmd)
A.R Karthick88e80b92016-12-05 20:23:45 -0800495 res += os.system(pipework_cmd)
496 port_num += 1
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700497
A R Karthicke8bd80e2017-08-01 12:36:24 -0700498 if setup_ponsim is True:
499 ponsim = False
500 wan = None
501
A R Karthick1555c7c2017-09-07 14:59:41 -0700502 if self.switch_started and self.radius:
503 radius_macs = get_radius_macs(len(self.port_map['radius_ports']))
504 radius_intf_index = 0
505 radius_intf_subnet = Radius.SUBNET_PREFIX
506 for host_intf, ports in self.port_map['switch_radius_port_list']:
507 for port in ports:
508 guest_if = 'eth{}'.format(radius_intf_index+2)
509 port_index = self.port_map[port]
510 local_if = 'r{}'.format(port_index)
511 guest_ip = '{}.{}/24'.format(radius_intf_subnet, port_index)
512 mac = radius_macs[radius_intf_index]
513 radius_intf_index += 1
514 port_num += 1
515 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4} {5}'.format(host_intf, guest_if,
516 local_if, self.radius.name,
517 guest_ip, mac)
518 print('Configuring Radius port %s on OVS bridge %s' %(guest_if, host_intf))
519 print('Running pipework command: %s' %(pipework_cmd))
520 res += os.system(pipework_cmd)
521
A.R Karthick369f89e2017-03-02 15:22:45 -0800522 self.setup_vcpes(vcpe_port_num)
A R Karthick1f03e912016-05-18 11:39:22 -0700523 return res, port_num
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700524
525 @classmethod
A.R Karthick88e80b92016-12-05 20:23:45 -0800526 def get_intf_type(cls, intf):
527 intf_type = 0
528 if os.path.isdir('/sys/class/net/{}/bridge'.format(intf)):
529 intf_type = 1 ##linux bridge
530 else:
531 cmd = 'ovs-vsctl list-br | grep -q "^{0}$"'.format(intf)
532 res = os.system(cmd)
533 if res == 0: ##ovs bridge
534 intf_type = 2
535
536 return intf_type
537
538 @classmethod
A.R Karthick5968e0d2017-05-16 14:50:46 -0700539 def cleanup_intfs(cls, olt_conf_file):
540 if not os.access(olt_conf_file, os.F_OK):
541 olt_conf_file = os.path.join(cls.tester_base, os.path.basename(olt_conf_file))
A R Karthickb50f5592016-07-26 12:19:29 -0700542 olt_config = OltConfig(olt_conf_file)
A R Karthickb03cecd2016-07-27 10:27:55 -0700543 port_map, _ = olt_config.olt_port_map()
A.R Karthick369f89e2017-03-02 15:22:45 -0800544 vcpes = olt_config.get_vcpes()
A R Karthickb50f5592016-07-26 12:19:29 -0700545 port_num = 0
A R Karthickb50f5592016-07-26 12:19:29 -0700546 start_vlan = port_map['start_vlan']
A R Karthick07769362016-07-28 17:36:15 -0700547 wan = port_map['wan']
A R Karthickb50f5592016-07-26 12:19:29 -0700548 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800549 port_list = port_map['switch_port_list'] + port_map['switch_relay_port_list']
550 for intf_host, ports in port_list:
551 intf_type = cls.get_intf_type(intf_host)
552 for port in ports:
A R Karthick1555c7c2017-09-07 14:59:41 -0700553 cmds = ()
A R Karthicke4660f52017-02-23 12:08:41 -0800554 local_if = 'l{}'.format(port_num+1) #port #'{0}_{1}'.format(port, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800555 if intf_type == 0:
556 if start_vlan != 0:
557 cmds = ('ip link del {}.{}'.format(intf_host, start_vlan),)
558 start_vlan += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700559 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800560 if intf_type == 1:
561 cmds = ('brctl delif {} {}'.format(intf_host, local_if),
562 'ip link del {}'.format(local_if))
563 else:
564 cmds = ('ovs-vsctl del-port {} {}'.format(intf_host, local_if),
565 'ip link del {}'.format(local_if))
A R Karthickb50f5592016-07-26 12:19:29 -0700566
A.R Karthick88e80b92016-12-05 20:23:45 -0800567 for cmd in cmds:
568 res += os.system(cmd)
569 port_num += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700570
A R Karthick1555c7c2017-09-07 14:59:41 -0700571 for intf_host, ports in port_map['switch_radius_port_list']:
572 intf_type = cls.get_intf_type(intf_host)
573 for port in ports:
574 port_index = port_map[port]
575 local_if = 'r{}'.format(port_index)
576 cmds = ()
577 if intf_type == 2:
578 cmds = ('ovs-vsctl del-port {} {}'.format(intf_host, local_if),
579 'ip link del {}'.format(local_if))
580
581 for cmd in cmds:
582 res += os.system(cmd)
583
A.R Karthick369f89e2017-03-02 15:22:45 -0800584 cls.cleanup_vcpes(vcpes)
585
A R Karthickb50f5592016-07-26 12:19:29 -0700586 @classmethod
A R Karthicke4660f52017-02-23 12:08:41 -0800587 def get_name(cls, num_instances):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700588 cnt_name = '/{0}'.format(cls.basename)
589 cnt_name_len = len(cnt_name)
590 names = list(flatten(n['Names'] for n in cls.dckr.containers(all=True)))
591 test_names = filter(lambda n: n.startswith(cnt_name), names)
592 last_cnt_number = 0
593 if test_names:
594 last_cnt_name = reduce(lambda n1, n2: n1 if int(n1[cnt_name_len:]) > \
595 int(n2[cnt_name_len:]) else n2,
596 test_names)
597 last_cnt_number = int(last_cnt_name[cnt_name_len:])
A R Karthicke4660f52017-02-23 12:08:41 -0800598 if num_instances == 1:
599 last_cnt_number -= 1
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700600 test_cnt_name = cls.basename + str(last_cnt_number+1)
601 return test_cnt_name
602
603 @classmethod
604 def build_image(cls, image):
605 print('Building test container docker image %s' %image)
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700606 ovs_version = '2.5.0'
607 image_format = (ovs_version,)*4
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700608 dockerfile = '''
609FROM ubuntu:14.04
610MAINTAINER chetan@ciena.com
A R Karthickc762df42016-05-25 10:09:21 -0700611RUN apt-get update && \
612 apt-get install -y git git-core autoconf automake autotools-dev pkg-config \
613 make gcc g++ libtool libc6-dev cmake libpcap-dev libxerces-c2-dev \
614 unzip libpcre3-dev flex bison libboost-dev \
615 python python-pip python-setuptools python-scapy tcpdump doxygen doxypy wget \
616 openvswitch-common openvswitch-switch \
A R Karthick07608ef2016-08-23 16:51:19 -0700617 python-twisted python-sqlite sqlite3 python-pexpect telnet arping isc-dhcp-server \
Chetan Gaonker53f16382017-02-20 20:31:22 +0000618 python-paramiko python-maas-client python-keystoneclient python-neutronclient \
A R Karthickc28f6a92017-04-18 16:05:18 -0700619 python-glanceclient python-novaclient python-dev libffi-dev libssl-dev
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700620RUN easy_install nose
A R Karthickc28f6a92017-04-18 16:05:18 -0700621RUN python -m pip install --upgrade pip
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700622RUN mkdir -p /root/ovs
623WORKDIR /root
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700624RUN wget http://openvswitch.org/releases/openvswitch-{}.tar.gz -O /root/ovs/openvswitch-{}.tar.gz && \
625(cd /root/ovs && tar zxpvf openvswitch-{}.tar.gz && \
626 cd openvswitch-{} && \
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700627 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && make && make install)
628RUN service openvswitch-switch restart || /bin/true
A.R Karthickec5b72a2016-11-03 09:53:07 -0700629RUN pip install scapy==2.3.2 scapy-ssl_tls==1.2.2 monotonic configObj docker-py pyyaml nsenter pyroute2 netaddr python-daemon
A R Karthickc28f6a92017-04-18 16:05:18 -0700630RUN pip install -U cryptography
631RUN pip install -U paramiko
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700632RUN mv /usr/sbin/tcpdump /sbin/
633RUN ln -sf /sbin/tcpdump /usr/sbin/tcpdump
A R Karthickf4999472016-07-01 16:42:13 -0700634RUN mv /usr/sbin/dhcpd /sbin/
635RUN ln -sf /sbin/dhcpd /usr/sbin/dhcpd
A.R Karthickcaf82ac2017-04-17 17:45:24 -0700636RUN mv /sbin/dhclient /usr/sbin/
637RUN ln -sf /usr/sbin/dhclient /sbin/dhclient
A R Karthickb7e80902016-05-17 09:38:31 -0700638WORKDIR /root
639RUN wget -nc http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_2.5.dfsg-2.1_amd64.deb \
640 http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/libbison-dev_2.5.dfsg-2.1_amd64.deb
641RUN sudo dpkg -i bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
642RUN rm bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
643RUN wget -nc http://www.nbee.org/download/nbeesrc-jan-10-2013.zip && \
644 unzip nbeesrc-jan-10-2013.zip && \
645 cd nbeesrc-jan-10-2013/src && cmake . && make && \
646 cp ../bin/libn*.so /usr/local/lib && ldconfig && \
647 cp -R ../include/* /usr/include/
648WORKDIR /root
649RUN git clone https://github.com/CPqD/ofsoftswitch13.git && \
650 cd ofsoftswitch13 && \
A R Karthickb7e80902016-05-17 09:38:31 -0700651 ./boot.sh && \
652 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && \
653 make && make install
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700654CMD ["/bin/bash"]
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700655'''.format(*image_format)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700656 super(CordTester, cls).build_image(dockerfile, image)
657 print('Done building docker image %s' %image)
658
A R Karthick1f03e912016-05-18 11:39:22 -0700659 def run_tests(self):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700660 '''Run the list of tests'''
A R Karthick9a5edc42016-08-24 19:10:22 -0700661 res = 0
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000662 print('Modifying scapy tool files before running a test: %s' %self.tests)
663 self.modify_scapy_files_for_specific_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700664 print('Running tests: %s' %self.tests)
665 for t in self.tests:
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700666 test = t.split(':')[0]
A R Karthick24f1de62016-05-12 15:16:38 -0700667 test_file = '{}Test.py'.format(test)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700668 if t.find(':') >= 0:
A R Karthick24f1de62016-05-12 15:16:38 -0700669 test_case = '{0}:{1}'.format(test_file, t.split(':')[1])
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700670 else:
671 test_case = test_file
Chetan Gaonker7142a342016-04-07 14:53:12 -0700672 cmd = 'nosetests -v {0}/src/test/{1}/{2}'.format(self.sandbox, test, test_case)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700673 status = self.execute(cmd, shell = True)
A R Karthick9a5edc42016-08-24 19:10:22 -0700674 if status > 255:
675 status = 1
676 res |= status
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700677 print('Test %s %s' %(test_case, 'Success' if status == 0 else 'Failure'))
678 print('Done running tests')
679 if self.rm:
680 print('Removing test container %s' %self.name)
681 self.kill(remove=True)
682
A R Karthick9a5edc42016-08-24 19:10:22 -0700683 return res
684
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000685 def modify_scapy_files_for_specific_tests(self):
686 name = self.name
A R Karthickf7a613b2017-02-24 09:36:44 -0800687 container_cmd_exec = Container(name = name, image = CordTester.IMAGE)
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000688 tty = False
689 dckr = Client()
690 cmd = 'cp test/src/test/scapy/fields.py /usr/local/lib/python2.7/dist-packages/scapy/fields.py '
691 i = container_cmd_exec.execute(cmd = cmd, tty= tty, stream = True)
692
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700693 @classmethod
694 def list_tests(cls, tests):
695 print('Listing test cases')
696 for test in tests:
A R Karthick24f1de62016-05-12 15:16:38 -0700697 test_file = '{}Test.py'.format(test)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700698 cmd = 'nosetests -v --collect-only {0}/../{1}/{2}'.format(cls.tester_base, test, test_file)
699 os.system(cmd)
700
A R Karthicka013a272016-08-16 16:40:19 -0700701
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700702##default onos/radius/test container images and names
703onos_image_default='onosproject/onos:latest'
A R Karthick07608ef2016-08-23 16:51:19 -0700704nose_image_default= '{}:candidate'.format(CordTester.IMAGE)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700705test_type_default='dhcp'
A R Karthickb608d402017-06-02 11:48:41 -0700706onos_app_version = '3.0-SNAPSHOT'
Chetan Gaonker4d842ad2016-04-26 10:04:24 -0700707cord_tester_base = os.path.dirname(os.path.realpath(__file__))
A.R Karthick5968e0d2017-05-16 14:50:46 -0700708olt_config_default = os.path.join(cord_tester_base, 'olt_config.json')
A R Karthick38d5df42017-07-10 13:33:26 -0700709onos_app_file = os.path.abspath('{0}/../apps/ciena-cordigmp-multitable-'.format(cord_tester_base) + onos_app_version + '.oar')
A R Karthick81acbff2016-06-17 14:45:16 -0700710cord_test_server_address = '{}:{}'.format(CORD_TEST_HOST, CORD_TEST_PORT)
A R Karthick07608ef2016-08-23 16:51:19 -0700711identity_file_default = '/etc/maas/ansible/id_rsa'
A R Karthicke14fc022016-12-08 14:50:29 -0800712onos_log_level = 'INFO'
A R Karthick07608ef2016-08-23 16:51:19 -0700713
714##sets up the ssh key file for the test container
715def set_ssh_key_file(identity_file):
716 ssh_key_file = None
717 if os.access(identity_file, os.F_OK):
718 ##copy it to setup directory
719 identity_dest = os.path.join(CordTester.tester_base, 'id_rsa')
720 if os.path.abspath(identity_file) != identity_dest:
721 try:
722 shutil.copy(identity_file, identity_dest)
723 ssh_key_file = os.path.join(CordTester.sandbox_setup, 'id_rsa')
724 except: pass
725
726 return ssh_key_file
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700727
A R Karthickcaac5542017-03-06 16:20:57 -0800728def openstack_setup(test_cnt_env):
729 admin_rc = os.path.join(os.getenv('HOME'), 'admin-openrc.sh')
A R Karthick8983cb02017-06-09 11:32:53 -0700730 if not os.access(admin_rc, os.F_OK):
731 admin_rc = os.path.join('/opt/cord_profile', 'admin-openrc.sh')
A R Karthickcaac5542017-03-06 16:20:57 -0800732 if os.access(admin_rc, os.F_OK):
733 dest = os.path.join(CordTester.tester_base, 'admin-openrc.sh')
734 shutil.copy(admin_rc, dest)
735 with open(dest, 'r') as f:
736 cfg = {}
737 for data in f.read().splitlines():
738 try:
739 k, v = data.split('=')
740 except:
741 continue
742
743 k = k.split()[-1]
744 cfg[k] = v
745
746 if 'REQUESTS_CA_BUNDLE' in cfg:
747 #copy the certificate to setup directory
748 cert_src = cfg['REQUESTS_CA_BUNDLE']
749 shutil.copy(cert_src, CordTester.tester_base)
750 test_cert_loc = os.path.join(CordTester.sandbox_setup,
751 os.path.basename(cert_src))
752 cfg['REQUESTS_CA_BUNDLE'] = test_cert_loc
753
754 for key, value in cfg.iteritems():
755 test_cnt_env[key] = value
756
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700757def runTest(args):
Chetan Gaonker823cdc52016-05-09 15:51:23 -0700758 #Start the cord test tcp server
A.R Karthickb17e2022017-01-27 11:29:26 -0800759 test_manifest = TestManifest(args = args)
760 test_server_params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -0700761 test_host = test_server_params[0]
762 test_port = CORD_TEST_PORT
763 if len(test_server_params) > 1:
764 test_port = int(test_server_params[1])
A R Karthick81acbff2016-06-17 14:45:16 -0700765
A R Karthick1f03e912016-05-18 11:39:22 -0700766 test_containers = []
767 #These tests end up restarting ONOS/quagga/radius
A R Karthick4e0c0912016-08-17 16:57:42 -0700768 tests_exempt = ('vrouter', 'cordSubscriber', 'proxyarp', 'dhcprelay')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700769 if args.test_type.lower() == 'all':
770 tests = CordTester.ALL_TESTS
Chetan Gaonker503032a2016-05-12 12:06:29 -0700771 args.quagga = True
772 else:
A R Karthickacae3b42016-05-12 15:27:24 -0700773 tests = args.test_type.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700774
A R Karthick1f03e912016-05-18 11:39:22 -0700775 tests_parallel = [ t for t in tests if t.split(':')[0] not in tests_exempt ]
776 tests_not_parallel = [ t for t in tests if t.split(':')[0] in tests_exempt ]
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700777 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -0700778 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
Chetan Gaonker503032a2016-05-12 12:06:29 -0700779 update_map = { 'quagga' : False, 'test' : False, 'radius' : False }
780 update_map[args.update.lower()] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700781
Chetan Gaonker503032a2016-05-12 12:06:29 -0700782 if args.update.lower() == 'all':
783 for c in update_map.keys():
784 update_map[c] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700785
A R Karthick07608ef2016-08-23 16:51:19 -0700786 use_manifest = False
787 if args.manifest:
788 if os.access(args.manifest, os.F_OK):
789 ##copy it to setup directory
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800790 dest = os.path.join(CordTester.tester_base,
791 os.path.basename(args.manifest))
A R Karthick07608ef2016-08-23 16:51:19 -0700792 if os.path.abspath(args.manifest) != dest:
793 try:
794 shutil.copy(args.manifest, dest)
795 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -0800796 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -0700797 use_manifest = True
798 else:
799 print('Unable to access test manifest: %s' %args.manifest)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700800
A R Karthick65d950d2016-12-19 19:41:55 -0800801 onos_ip = test_manifest.onos_ip
802 radius_ip = test_manifest.radius_ip
A R Karthick1555c7c2017-09-07 14:59:41 -0700803 radius = None
A R Karthick65d950d2016-12-19 19:41:55 -0800804 head_node = test_manifest.head_node
A R Karthick5af23712017-01-20 09:49:24 -0800805 iterations = test_manifest.iterations
A.R Karthick263d3fc2017-01-27 12:52:53 -0800806 onos_cord_loc = test_manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -0800807 service_profile = test_manifest.service_profile
808 synchronizer = test_manifest.synchronizer
A.R Karthick5968e0d2017-05-16 14:50:46 -0700809 olt_config_file = test_manifest.olt_config
A.R Karthick57fa9372017-05-24 12:47:03 -0700810 voltha_loc = test_manifest.voltha_loc
811 voltha_intf = test_manifest.voltha_intf
A.R Karthick5968e0d2017-05-16 14:50:46 -0700812 if not os.access(olt_config_file, os.F_OK):
813 olt_config_file = os.path.join(CordTester.tester_base, 'olt_config.json')
814 else:
815 dest = os.path.join(CordTester.tester_base,
816 os.path.basename(olt_config_file))
817 if os.path.abspath(olt_config_file) != dest:
818 try:
819 shutil.copy(olt_config_file, dest)
820 except: pass
821
A.R Karthickf184b342017-01-27 19:30:50 -0800822 onos_cord = None
A R Karthick973010f2017-02-06 16:41:51 -0800823 Onos.update_data_dir(test_manifest.karaf_version)
A R Karthick184945a2017-07-25 17:23:57 -0700824 Onos.set_expose_port(test_manifest.expose_port)
A R Karthick1555c7c2017-09-07 14:59:41 -0700825 Radius.create_network()
A.R Karthick263d3fc2017-01-27 12:52:53 -0800826 if onos_cord_loc:
827 if onos_cord_loc.find(os.path.sep) < 0:
828 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
A.R Karthickf184b342017-01-27 19:30:50 -0800829 if not os.access(onos_cord_loc, os.F_OK):
830 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
831 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800832 if not onos_ip:
833 ##Unexpected case. Specify the external controller ip when running on cord node
834 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
835 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800836 if not service_profile:
A R Karthick03bd2812017-03-03 17:49:17 -0800837 print('Specify service profile for the ONOS cord instance. Eg: rcord')
A.R Karthickf184b342017-01-27 19:30:50 -0800838 sys.exit(1)
839 if not synchronizer:
840 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
841 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800842 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800843
844 try:
845 test_server = cord_test_server_start(daemonize = False, cord_test_host = test_host, cord_test_port = test_port,
846 onos_cord = onos_cord)
847 except:
848 ##Most likely a server instance is already running (daemonized earlier)
849 test_server = None
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700850
A R Karthick65d950d2016-12-19 19:41:55 -0800851 Container.IMAGE_PREFIX = test_manifest.image_prefix
852 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -0800853 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -0800854 cluster_mode = True if test_manifest.onos_instances > 1 else False
855 async_mode = cluster_mode and test_manifest.async_mode
856 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
857 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A.R Karthickc4e474d2016-12-12 15:24:57 -0800858 onos_ips = []
A R Karthick65d950d2016-12-19 19:41:55 -0800859 if cluster_mode is True and len(existing_list) > 1:
860 ##don't setup cluster config again
861 cluster_mode = False
A R Karthicka41c1c52017-08-02 15:30:48 -0700862 if voltha_loc:
863 voltha_key = os.path.join(voltha_loc, 'docker', 'onos_cfg', 'onos.jks')
864 Onos.update_ssl_key(voltha_key)
A R Karthick07608ef2016-08-23 16:51:19 -0700865 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -0800866 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -0700867 onos_cnt['image'] = image_names[0]
868 if len(image_names) > 1:
869 if image_names[1].find('/') < 0:
870 onos_cnt['tag'] = image_names[1]
871 else:
872 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -0800873 onos_cnt['image'] = test_manifest.onos_image
A R Karthick07608ef2016-08-23 16:51:19 -0700874
875 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -0800876 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -0700877 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -0800878 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthick07608ef2016-08-23 16:51:19 -0700879 onos = Onos(image = Onos.IMAGE,
A.R Karthickc4e474d2016-12-12 15:24:57 -0800880 tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800881 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800882 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -0800883 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800884 else:
885 onos_ips.append(onos_ip)
886
A R Karthick65d950d2016-12-19 19:41:55 -0800887 num_onos_instances = test_manifest.onos_instances
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700888 if num_onos_instances > 1 and onos is not None:
889 onos_instances = []
890 onos_instances.append(onos)
891 for i in range(1, num_onos_instances):
892 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -0800893 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800894 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -0800895 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -0800896 data_volume = data_volume, async = async_mode,
A R Karthick184945a2017-07-25 17:23:57 -0700897 quagga_config = quagga_config, network = test_manifest.docker_network, instance = i)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700898 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800899 if onos.running:
900 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800901 if async_mode is True and cluster_mode is True:
A.R Karthickc4e474d2016-12-12 15:24:57 -0800902 Onos.start_cluster_async(onos_instances)
903 if not onos_ips:
904 for onos in onos_instances:
905 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800906 if cluster_mode is True:
907 try:
908 for ip in onos_ips:
909 print('Installing cord tester ONOS app %s in ONOS instance %s' %(args.app,ip))
910 OnosCtrl.install_app(args.app, onos_ip = ip)
911 except: pass
A R Karthick1ef70552016-11-17 17:33:36 -0800912 if setup_cluster is True:
913 Onos.setup_cluster(onos_instances)
914 else:
915 print('ONOS instances already running. Skipping ONOS form cluster for %d instances' %num_onos_instances)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700916 ctlr_addr = ','.join(onos_ips)
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700917
A R Karthick65d950d2016-12-19 19:41:55 -0800918 print('Controller IP %s, Test type %s' %(onos_ips, args.test_type))
919 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -0700920 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -0700921 try:
922 Onos.install_cord_apps(onos_ip = onos_ip)
923 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700924
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700925 if not cluster_mode:
926 print('Installing cord tester ONOS app %s' %args.app)
927 try:
928 for ip in onos_ips:
A R Karthick65d950d2016-12-19 19:41:55 -0800929 OnosCtrl.install_app(args.app, onos_ip = ip)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700930 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700931
A.R Karthick57fa9372017-05-24 12:47:03 -0700932 if voltha_loc:
933 #start voltha
A R Karthick168e2342017-08-15 16:13:10 -0700934 voltha = VolthaService(voltha_loc, onos_ips[0], interface = voltha_intf,
935 olt_config = olt_config_file, container_mode = test_manifest.voltha_container_mode)
A.R Karthick57fa9372017-05-24 12:47:03 -0700936 voltha.start()
937
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700938 if radius_ip is None:
A R Karthick1555c7c2017-09-07 14:59:41 -0700939 ##Create Radius container
A R Karthick85eb1862017-01-23 16:10:57 -0800940 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
941 network = test_manifest.docker_network)
A R Karthick1555c7c2017-09-07 14:59:41 -0700942 radius_ip = radius.ip(network = Radius.NETWORK)
A.R Karthick95d044e2016-06-10 18:44:36 -0700943
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700944 print('Radius server running with IP %s' %radius_ip)
A.R Karthick95d044e2016-06-10 18:44:36 -0700945
Chetan Gaonkerb84835f2016-04-19 15:12:10 -0700946 if args.quagga == True:
947 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -0800948 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
949 network = test_manifest.docker_network)
A R Karthick81acbff2016-06-17 14:45:16 -0700950
A R Karthick07608ef2016-08-23 16:51:19 -0700951 try:
952 maas_api_key = FabricMAAS.get_api_key()
953 except:
954 maas_api_key = 'UNKNOWN'
955
956 ssh_key_file = set_ssh_key_file(args.identity_file)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700957 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
Chetan Gaonkerc170f3f2016-04-19 17:24:45 -0700958 'ONOS_AAA_IP' : radius_ip if radius_ip is not None else '',
A R Karthick8d03cc52016-06-28 14:51:59 -0700959 'QUAGGA_IP': test_host,
A R Karthick81acbff2016-06-17 14:45:16 -0700960 'CORD_TEST_HOST' : test_host,
961 'CORD_TEST_PORT' : test_port,
A R Karthick65d950d2016-12-19 19:41:55 -0800962 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
963 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -0700964 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
A R Karthick973010f2017-02-06 16:41:51 -0800965 'MAAS_API_KEY': maas_api_key,
A.R Karthick57fa9372017-05-24 12:47:03 -0700966 'KARAF_VERSION' : test_manifest.karaf_version,
A R Karthickfa2caab2017-07-24 18:04:46 -0700967 'VOLTHA_ENABLED' : int(test_manifest.voltha_enable)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700968 }
A R Karthick07608ef2016-08-23 16:51:19 -0700969
970 if ssh_key_file:
971 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
972
A.R Karthick5968e0d2017-05-16 14:50:46 -0700973 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, os.path.basename(olt_config_file))
974 test_cnt_env['OLT_CONFIG_FILE'] = olt_conf_test_loc
A R Karthick65d950d2016-12-19 19:41:55 -0800975 if test_manifest.olt:
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700976 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
977
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800978 if use_manifest:
979 test_cnt_env['MANIFEST'] = os.path.join(CordTester.sandbox_setup,
980 os.path.basename(args.manifest))
981
A.R Karthick5968e0d2017-05-16 14:50:46 -0700982
A R Karthick5af23712017-01-20 09:49:24 -0800983 if iterations is not None:
984 test_cnt_env['ITERATIONS'] = iterations
985
A R Karthickcaac5542017-03-06 16:20:57 -0800986 openstack_setup(test_cnt_env)
987
A R Karthicka013a272016-08-16 16:40:19 -0700988 if args.num_containers > 1 and args.container:
989 print('Cannot specify number of containers with container option')
990 sys.exit(1)
991 if args.container:
992 args.keep = True
A R Karthick1f03e912016-05-18 11:39:22 -0700993 port_num = 0
994 num_tests = len(tests_parallel)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700995 if num_tests > 0 and num_tests < args.num_containers:
996 tests_parallel *= args.num_containers/num_tests
997 num_tests = len(tests_parallel)
A R Karthick1f03e912016-05-18 11:39:22 -0700998 tests_per_container = max(1, num_tests/args.num_containers)
A R Karthicke4660f52017-02-23 12:08:41 -0800999 last_batch = num_tests % args.num_containers
A R Karthick1f03e912016-05-18 11:39:22 -07001000 test_slice_start = 0
1001 test_slice_end = test_slice_start + tests_per_container
1002 num_test_containers = min(num_tests, args.num_containers)
1003 if tests_parallel:
1004 print('Running %s tests across %d containers in parallel' %(tests_parallel, num_test_containers))
A R Karthicke4660f52017-02-23 12:08:41 -08001005 for container in xrange(num_test_containers):
1006 if container + 1 == num_test_containers:
1007 test_slice_end += last_batch
A R Karthick1f03e912016-05-18 11:39:22 -07001008 test_cnt = CordTester(tests_parallel[test_slice_start:test_slice_end],
1009 instance = container, num_instances = num_test_containers,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001010 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -07001011 name = args.container,
1012 image = nose_cnt['image'],
1013 prefix = Container.IMAGE_PREFIX,
1014 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -07001015 env = test_cnt_env,
1016 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -08001017 update = update_map['test'],
A R Karthick1555c7c2017-09-07 14:59:41 -07001018 network = test_manifest.docker_network,
1019 radius = radius)
A R Karthick1f03e912016-05-18 11:39:22 -07001020 test_slice_start = test_slice_end
1021 test_slice_end = test_slice_start + tests_per_container
1022 update_map['test'] = False
1023 test_containers.append(test_cnt)
A R Karthicka013a272016-08-16 16:40:19 -07001024 if not test_cnt.create:
1025 continue
A R Karthick65d950d2016-12-19 19:41:55 -08001026 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick07608ef2016-08-23 16:51:19 -07001027 if not args.no_switch:
A R Karthicke8bd80e2017-08-01 12:36:24 -07001028 test_cnt.start_switch(test_manifest)
A R Karthicka013a272016-08-16 16:40:19 -07001029 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -07001030 _, port_num = test_cnt.setup_intfs(port_num = port_num)
1031
A R Karthick9a5edc42016-08-24 19:10:22 -07001032 status = 0
1033 if len(test_containers) > 1:
A R Karthicke4660f52017-02-23 12:08:41 -08001034 thread_pool = ThreadPool(len(test_containers), queue_size = 1, wait_timeout=1)
1035 for test_cnt in test_containers:
1036 thread_pool.addTask(test_cnt.run_tests)
1037 thread_pool.cleanUpThreads()
A R Karthick9a5edc42016-08-24 19:10:22 -07001038 else:
A R Karthickcee37412016-08-29 10:10:56 -07001039 if test_containers:
1040 status = test_containers[0].run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -07001041
1042 ##Run the linear tests
1043 if tests_not_parallel:
1044 test_cnt = CordTester(tests_not_parallel,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001045 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -07001046 name = args.container,
1047 image = nose_cnt['image'],
1048 prefix = Container.IMAGE_PREFIX,
1049 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -07001050 env = test_cnt_env,
1051 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -08001052 update = update_map['test'],
1053 network = test_manifest.docker_network)
A R Karthick65d950d2016-12-19 19:41:55 -08001054 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick36cfcef2016-08-18 15:20:07 -07001055 #For non parallel tests, we just restart the switch also for OLT's
1056 CordTester.switch_on_olt = False
A R Karthick07608ef2016-08-23 16:51:19 -07001057 if not args.no_switch:
A R Karthicke8bd80e2017-08-01 12:36:24 -07001058 test_cnt.start_switch(test_manifest)
A R Karthicka013a272016-08-16 16:40:19 -07001059 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -07001060 test_cnt.setup_intfs(port_num = port_num)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001061 test_cnt.run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -07001062
A R Karthick81acbff2016-06-17 14:45:16 -07001063 if test_server:
A.R Karthickf184b342017-01-27 19:30:50 -08001064 if onos_cord:
1065 onos_cord.restore()
A R Karthick81acbff2016-06-17 14:45:16 -07001066 cord_test_server_stop(test_server)
1067
A R Karthick9a5edc42016-08-24 19:10:22 -07001068 return status
1069
A R Karthick81acbff2016-06-17 14:45:16 -07001070##Starts onos/radius/quagga containers as appropriate
1071def setupCordTester(args):
1072 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -07001073 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
A R Karthick92a0e5a2016-06-22 17:11:05 -07001074 update_map = { 'quagga' : False, 'radius' : False, 'test': False }
A R Karthick81acbff2016-06-17 14:45:16 -07001075 update_map[args.update.lower()] = True
A R Karthick65d950d2016-12-19 19:41:55 -08001076 test_manifest = TestManifest(args = args)
1077
A R Karthick81acbff2016-06-17 14:45:16 -07001078 if args.update.lower() == 'all':
1079 for c in update_map.keys():
1080 update_map[c] = True
1081
A R Karthick07608ef2016-08-23 16:51:19 -07001082 use_manifest = False
1083 if args.manifest:
1084 if os.access(args.manifest, os.F_OK):
1085 ##copy it to setup directory
A.R Karthick8b2f1e32017-02-09 15:10:07 -08001086 dest = os.path.join(CordTester.tester_base,
1087 os.path.basename(args.manifest))
A R Karthick07608ef2016-08-23 16:51:19 -07001088 if os.path.abspath(args.manifest) != dest:
1089 try:
1090 shutil.copy(args.manifest, dest)
1091 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -08001092 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -07001093 use_manifest = True
1094
A.R Karthickf184b342017-01-27 19:30:50 -08001095 onos_ip = test_manifest.onos_ip
1096 radius_ip = test_manifest.radius_ip
A R Karthick1555c7c2017-09-07 14:59:41 -07001097 radius = None
A.R Karthickf184b342017-01-27 19:30:50 -08001098 head_node = test_manifest.head_node
1099 iterations = test_manifest.iterations
1100 service_profile = test_manifest.service_profile
1101 synchronizer = test_manifest.synchronizer
A.R Karthick57fa9372017-05-24 12:47:03 -07001102 voltha_loc = test_manifest.voltha_loc
1103 voltha_intf = test_manifest.voltha_intf
A.R Karthickf184b342017-01-27 19:30:50 -08001104 onos_cord = None
A.R Karthick263d3fc2017-01-27 12:52:53 -08001105 onos_cord_loc = test_manifest.onos_cord
A R Karthick973010f2017-02-06 16:41:51 -08001106 Onos.update_data_dir(test_manifest.karaf_version)
A R Karthick184945a2017-07-25 17:23:57 -07001107 Onos.set_expose_port(test_manifest.expose_port)
A.R Karthick5968e0d2017-05-16 14:50:46 -07001108 olt_config_file = test_manifest.olt_config
1109 if not os.access(olt_config_file, os.F_OK):
1110 olt_config_file = os.path.join(CordTester.tester_base, 'olt_config.json')
1111 else:
1112 dest = os.path.join(CordTester.tester_base,
1113 os.path.basename(olt_config_file))
1114 if os.path.abspath(olt_config_file) != dest:
1115 try:
1116 shutil.copy(olt_config_file, dest)
1117 except: pass
A R Karthick973010f2017-02-06 16:41:51 -08001118
A R Karthick1555c7c2017-09-07 14:59:41 -07001119 Radius.create_network()
A.R Karthick263d3fc2017-01-27 12:52:53 -08001120 if onos_cord_loc:
1121 if onos_cord_loc.find(os.path.sep) < 0:
1122 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
1123 if not os.access(onos_cord_loc, os.F_OK):
1124 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
1125 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -08001126 if not onos_ip:
A R Karthickd44cea12016-07-20 12:16:41 -07001127 ##Unexpected case. Specify the external controller ip when running on cord node
1128 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
1129 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -08001130 if not service_profile:
A R Karthick03bd2812017-03-03 17:49:17 -08001131 print('Specify service profile for the ONOS cord instance. Eg: rcord')
A.R Karthickf184b342017-01-27 19:30:50 -08001132 sys.exit(1)
1133 if not synchronizer:
1134 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
1135 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -08001136 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A R Karthickd44cea12016-07-20 12:16:41 -07001137
A R Karthick65d950d2016-12-19 19:41:55 -08001138 Container.IMAGE_PREFIX = test_manifest.image_prefix
A R Karthick81acbff2016-06-17 14:45:16 -07001139 #don't spawn onos if the user had started it externally
A R Karthick65d950d2016-12-19 19:41:55 -08001140 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -07001141 onos_cnt['image'] = image_names[0]
1142 if len(image_names) > 1:
1143 if image_names[1].find('/') < 0:
1144 onos_cnt['tag'] = image_names[1]
1145 else:
1146 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -08001147 onos_cnt['image'] = test_manifest.onos_image
A R Karthick81acbff2016-06-17 14:45:16 -07001148
A R Karthick07608ef2016-08-23 16:51:19 -07001149 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -08001150 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -07001151 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -08001152 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -08001153 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -08001154 cluster_mode = True if test_manifest.onos_instances > 1 else False
1155 async_mode = cluster_mode and test_manifest.async_mode
1156 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
1157 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A R Karthickc41c2422016-12-09 10:59:19 -08001158 #cleanup existing volumes before forming a new cluster
1159 if setup_cluster is True:
1160 print('Cleaning up existing cluster volumes')
1161 data_dir = os.path.join(Onos.setup_dir, 'cord-onos*-data')
1162 try:
1163 os.system('rm -rf {}'.format(data_dir))
1164 except: pass
1165
A R Karthick2b93d6a2016-09-06 15:19:09 -07001166 onos = None
A.R Karthickc4e474d2016-12-12 15:24:57 -08001167 onos_ips = []
A R Karthicka41c1c52017-08-02 15:30:48 -07001168 if voltha_loc:
1169 voltha_key = os.path.join(voltha_loc, 'docker', 'onos_cfg', 'onos.jks')
1170 Onos.update_ssl_key(voltha_key)
A R Karthick81acbff2016-06-17 14:45:16 -07001171 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -08001172 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthickec2db322016-11-17 15:06:01 -08001173 onos = Onos(image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -08001174 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -08001175 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -08001176 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -08001177 else:
1178 onos_ips.append(onos_ip)
A R Karthick81acbff2016-06-17 14:45:16 -07001179
A R Karthick65d950d2016-12-19 19:41:55 -08001180 num_onos_instances = test_manifest.onos_instances
A R Karthick2b93d6a2016-09-06 15:19:09 -07001181 if num_onos_instances > 1 and onos is not None:
1182 onos_instances = []
1183 onos_instances.append(onos)
1184 for i in range(1, num_onos_instances):
1185 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -08001186 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -08001187 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -08001188 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -08001189 data_volume = data_volume, async = async_mode,
A R Karthick184945a2017-07-25 17:23:57 -07001190 quagga_config = quagga_config, network = test_manifest.docker_network, instance = i)
A R Karthick2b93d6a2016-09-06 15:19:09 -07001191 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -08001192 if onos.running:
1193 onos_ips.append(onos.ipaddr)
1194 if async_mode is True:
1195 Onos.start_cluster_async(onos_instances)
1196 if not onos_ips:
1197 for onos in onos_instances:
1198 onos_ips.append(onos.ipaddr)
A R Karthick51e6fd82016-11-22 14:39:19 -08001199 if setup_cluster is True:
1200 Onos.setup_cluster(onos_instances)
A R Karthick2b93d6a2016-09-06 15:19:09 -07001201
1202 ctlr_addr = ','.join(onos_ips)
1203 print('Onos IP %s' %ctlr_addr)
A R Karthick65d950d2016-12-19 19:41:55 -08001204 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -07001205 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -07001206 try:
1207 Onos.install_cord_apps(onos_ip = onos_ip)
1208 except: pass
A R Karthickbd9b8a32016-07-21 09:56:45 -07001209
A R Karthickedab01c2016-09-08 14:05:44 -07001210 print('Installing cord tester ONOS app %s' %args.app)
A R Karthick07608ef2016-08-23 16:51:19 -07001211 try:
A R Karthick2b93d6a2016-09-06 15:19:09 -07001212 for ip in onos_ips:
1213 OnosCtrl.install_app(args.app, onos_ip = ip)
A R Karthick07608ef2016-08-23 16:51:19 -07001214 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -07001215
A.R Karthick57fa9372017-05-24 12:47:03 -07001216 if voltha_loc:
1217 #start voltha
A R Karthick168e2342017-08-15 16:13:10 -07001218 voltha = VolthaService(voltha_loc, onos_ips[0], interface = voltha_intf,
1219 olt_config = olt_config_file, container_mode = test_manifest.voltha_container_mode)
A.R Karthick57fa9372017-05-24 12:47:03 -07001220 voltha.start()
1221
A R Karthick81acbff2016-06-17 14:45:16 -07001222 ##Start Radius container if not started
1223 if radius_ip is None:
A R Karthick85eb1862017-01-23 16:10:57 -08001224 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
1225 network = test_manifest.docker_network)
A R Karthick1555c7c2017-09-07 14:59:41 -07001226 radius_ip = radius.ip(network = Radius.NETWORK)
A R Karthick81acbff2016-06-17 14:45:16 -07001227
1228 print('Radius server running with IP %s' %radius_ip)
A R Karthick81acbff2016-06-17 14:45:16 -07001229
1230 if args.quagga == True:
1231 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -08001232 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
1233 network = test_manifest.docker_network)
A R Karthick8d03cc52016-06-28 14:51:59 -07001234 print('Quagga started')
A R Karthick81acbff2016-06-17 14:45:16 -07001235
A.R Karthickb17e2022017-01-27 11:29:26 -08001236 params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -07001237 ip = params[0]
1238 port = CORD_TEST_PORT
1239 if len(params) > 1:
1240 port = int(params[1])
A R Karthick92a0e5a2016-06-22 17:11:05 -07001241
A R Karthick07608ef2016-08-23 16:51:19 -07001242 try:
1243 maas_api_key = FabricMAAS.get_api_key()
1244 except:
1245 maas_api_key = 'UNKNOWN'
1246
1247 ssh_key_file = set_ssh_key_file(args.identity_file)
1248
A R Karthick92a0e5a2016-06-22 17:11:05 -07001249 #provision the test container
1250 if not args.dont_provision:
A R Karthick2b93d6a2016-09-06 15:19:09 -07001251 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
A R Karthick1555c7c2017-09-07 14:59:41 -07001252 'ONOS_AAA_IP' : radius_ip if radius_ip is not None else '',
A R Karthick8d03cc52016-06-28 14:51:59 -07001253 'QUAGGA_IP': ip,
A R Karthick92a0e5a2016-06-22 17:11:05 -07001254 'CORD_TEST_HOST' : ip,
1255 'CORD_TEST_PORT' : port,
A R Karthick65d950d2016-12-19 19:41:55 -08001256 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
1257 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -07001258 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
A R Karthick973010f2017-02-06 16:41:51 -08001259 'MAAS_API_KEY': maas_api_key,
A.R Karthick57fa9372017-05-24 12:47:03 -07001260 'KARAF_VERSION' : test_manifest.karaf_version,
A R Karthickfa2caab2017-07-24 18:04:46 -07001261 'VOLTHA_ENABLED' : int(test_manifest.voltha_enable)
A R Karthick92a0e5a2016-06-22 17:11:05 -07001262 }
A R Karthick07608ef2016-08-23 16:51:19 -07001263
1264 if ssh_key_file:
1265 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
A.R Karthick5968e0d2017-05-16 14:50:46 -07001266 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, os.path.basename(olt_config_file))
1267 test_cnt_env['OLT_CONFIG_FILE'] = olt_conf_test_loc
A R Karthick65d950d2016-12-19 19:41:55 -08001268 if test_manifest.olt:
A R Karthick92a0e5a2016-06-22 17:11:05 -07001269 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
A R Karthick5af23712017-01-20 09:49:24 -08001270 if test_manifest.iterations is not None:
1271 test_cnt_env['ITERATIONS'] = iterations
A.R Karthick8b2f1e32017-02-09 15:10:07 -08001272 if use_manifest:
1273 test_cnt_env['MANIFEST'] = os.path.join(CordTester.sandbox_setup,
1274 os.path.basename(args.manifest))
A R Karthickcaac5542017-03-06 16:20:57 -08001275
1276 openstack_setup(test_cnt_env)
1277
A R Karthick92a0e5a2016-06-22 17:11:05 -07001278 test_cnt = CordTester((),
A R Karthick2b93d6a2016-09-06 15:19:09 -07001279 ctlr_ip = ctlr_addr,
A R Karthick92a0e5a2016-06-22 17:11:05 -07001280 image = nose_cnt['image'],
A R Karthick07608ef2016-08-23 16:51:19 -07001281 prefix = Container.IMAGE_PREFIX,
A R Karthick92a0e5a2016-06-22 17:11:05 -07001282 tag = nose_cnt['tag'],
1283 env = test_cnt_env,
1284 rm = False,
A R Karthick85eb1862017-01-23 16:10:57 -08001285 update = update_map['test'],
A R Karthick1555c7c2017-09-07 14:59:41 -07001286 network = test_manifest.docker_network,
1287 radius = radius)
A R Karthick92a0e5a2016-06-22 17:11:05 -07001288
A R Karthick65d950d2016-12-19 19:41:55 -08001289 if test_manifest.start_switch or not test_manifest.olt:
A R Karthicke8bd80e2017-08-01 12:36:24 -07001290 test_cnt.start_switch(test_manifest)
A R Karthick92a0e5a2016-06-22 17:11:05 -07001291 if test_cnt.olt:
1292 test_cnt.setup_intfs(port_num = 0)
Thangavelu K Sa61d1da2017-09-05 05:32:21 -07001293 if test_manifest.setup_dhcpd and test_manifest.start_switch:
1294 test_cnt.setup_dhcpd(test_manifest)
A R Karthick92a0e5a2016-06-22 17:11:05 -07001295 print('Test container %s started and provisioned to run tests using nosetests' %(test_cnt.name))
1296
1297 #Finally start the test server and daemonize
A R Karthick14118c62016-07-27 14:54:04 -07001298 try:
A R Karthickbd82f362016-11-10 15:08:52 -08001299 cord_test_server_start(daemonize = not args.foreground, cord_test_host = ip, cord_test_port = port,
1300 onos_cord = onos_cord, foreground = args.foreground)
A R Karthick14118c62016-07-27 14:54:04 -07001301 except socket.error, e:
1302 #the test agent address could be remote or already running. Exit gracefully
1303 sys.exit(0)
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001304
A R Karthick9a5edc42016-08-24 19:10:22 -07001305 return 0
1306
Chetan Gaonker503032a2016-05-12 12:06:29 -07001307def cleanupTests(args):
A R Karthick757eb4d2017-01-09 14:51:16 -08001308 if args.manifest and os.access(args.manifest, os.F_OK):
1309 manifest = TestManifest(manifest = args.manifest)
1310 args.prefix = manifest.image_prefix
1311 args.olt = manifest.olt
A.R Karthick5968e0d2017-05-16 14:50:46 -07001312 args.olt_config = manifest.olt_config
A R Karthick757eb4d2017-01-09 14:51:16 -08001313 args.onos = manifest.onos_image
1314 args.server = manifest.server
A.R Karthickb17e2022017-01-27 11:29:26 -08001315 args.onos_ip = manifest.onos_ip
1316 args.radius_ip = manifest.radius_ip
1317 args.onos_cord = manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -08001318 args.service_profile = manifest.service_profile
1319 args.synchronizer = manifest.synchronizer
A.R Karthick57fa9372017-05-24 12:47:03 -07001320 args.voltha_loc = manifest.voltha_loc
A.R Karthickb17e2022017-01-27 11:29:26 -08001321 else:
1322 args.onos_ip = None
1323 args.radius_ip = None
1324 if args.test_controller:
1325 ips = args.test_controller.split('/')
1326 args.onos_ip = ips[0]
1327 if len(ips) > 1:
1328 args.radius_ip = ips[1]
A R Karthick757eb4d2017-01-09 14:51:16 -08001329
A R Karthick2b93d6a2016-09-06 15:19:09 -07001330 image_name = args.onos
A R Karthick07608ef2016-08-23 16:51:19 -07001331 prefix = args.prefix
1332 if prefix:
1333 prefix += '/'
1334 test_container = '{}{}:candidate'.format(prefix, CordTester.IMAGE)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001335 print('Cleaning up Test containers ...')
1336 Container.cleanup(test_container)
A R Karthickb50f5592016-07-26 12:19:29 -07001337 if args.olt:
1338 print('Cleaning up test container OLT configuration')
A.R Karthick5968e0d2017-05-16 14:50:46 -07001339 CordTester.cleanup_intfs(args.olt_config)
A R Karthick2b93d6a2016-09-06 15:19:09 -07001340
1341 onos_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == image_name ]
1342 if len(onos_list) > 1:
1343 for onos in onos_list:
1344 Container.dckr.kill(onos)
1345 Container.dckr.remove_container(onos, force=True)
A R Karthickec2db322016-11-17 15:06:01 -08001346 for index in range(len(onos_list)):
1347 volume = '{}-data'.format(Onos.NAME) if index == 0 else '{}-{}-data'.format(Onos.NAME, index+1)
1348 Onos.remove_data_map(volume, Onos.guest_data_dir)
A R Karthick9d48c652016-09-15 09:16:36 -07001349 Onos.cleanup_runtime()
A R Karthickec2db322016-11-17 15:06:01 -08001350
A R Karthick394976f2017-01-31 14:25:16 -08001351 radius_container = '{}{}:candidate'.format(prefix, Radius.IMAGE)
1352 quagga_container = '{}{}:candidate'.format(prefix, Quagga.IMAGE)
1353 Container.cleanup(radius_container)
1354 Container.cleanup(quagga_container)
A.R Karthick57fa9372017-05-24 12:47:03 -07001355 if args.voltha_loc:
1356 voltha = VolthaService(args.voltha_loc, args.onos_ip)
1357 voltha.stop()
1358
A.R Karthickb17e2022017-01-27 11:29:26 -08001359 if args.onos_cord:
A.R Karthickf184b342017-01-27 19:30:50 -08001360 #try restoring the onos cord instance
1361 try:
1362 onos_cord = OnosCord(args.onos_ip, args.onos_cord, args.service_profile, args.synchronizer, start = False)
1363 onos_cord.restore(force = True)
1364 except Exception as e:
1365 print(e)
A.R Karthickb17e2022017-01-27 11:29:26 -08001366
A.R Karthick842f0122016-09-28 14:48:47 -07001367 if args.xos:
1368 ##cleanup XOS images
1369 xos_images = ( '{}:{}'.format(XosServer.IMAGE,XosServer.TAG),
1370 '{}:{}'.format(XosSynchronizerOpenstack.IMAGE,
1371 XosSynchronizerOpenstack.TAG),
1372 '{}:{}'.format(XosSynchronizerOnboarding.IMAGE,
1373 XosSynchronizerOnboarding.TAG),
1374 '{}:{}'.format(XosSynchronizerOpenvpn.IMAGE,
1375 XosSynchronizerOpenvpn.TAG),
1376 '{}:{}'.format(XosPostgresql.IMAGE,
1377 XosPostgresql.TAG),
1378 '{}:{}'.format(XosSyndicateMs.IMAGE,
1379 XosSyndicateMs.TAG),
1380 )
1381 for img in xos_images:
1382 print('Cleaning up XOS image: %s' %img)
1383 Container.cleanup(img)
1384
A R Karthicke99ab5c2016-09-30 13:59:57 -07001385 server_params = args.server.split(':')
1386 server_host = server_params[0]
1387 server_port = CORD_TEST_PORT
1388 if len(server_params) > 1:
1389 server_port = int(server_params[1])
1390 cord_test_server_shutdown(server_host, server_port)
A R Karthick9a5edc42016-08-24 19:10:22 -07001391 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -07001392
1393def listTests(args):
1394 if args.test == 'all':
1395 tests = CordTester.ALL_TESTS
1396 else:
A R Karthickacae3b42016-05-12 15:27:24 -07001397 tests = args.test.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001398 CordTester.list_tests(tests)
A R Karthickcee37412016-08-29 10:10:56 -07001399 return 0
ChetanGaonkereadad482016-08-26 01:21:47 -07001400
1401def getMetrics(args):
A R Karthickcee37412016-08-29 10:10:56 -07001402 try:
1403 detail = c.inspect_container(args.container)
1404 except:
1405 print('Unknown container %s' %args.container)
1406 return 0
1407 user_hz = os.sysconf(os.sysconf_names['SC_CLK_TCK'])
ChetanGaonkereadad482016-08-26 01:21:47 -07001408 state = detail["State"]
1409 if bool(state["Paused"]):
1410 print("Container is in Paused State")
1411 elif bool(state["Running"]):
1412 print("Container is in Running State")
1413 elif int(state["ExitCode"]) == 0:
1414 print("Container is in Stopped State")
1415 else:
1416 print("Container is in Crashed State")
1417
A R Karthickcee37412016-08-29 10:10:56 -07001418 print("Ip Address of the container: " +detail['NetworkSettings']['IPAddress'])
ChetanGaonkereadad482016-08-26 01:21:47 -07001419
1420 if bool(detail["State"]["Running"]):
1421 container_id = detail['Id']
1422 cpu_usage = {}
A R Karthickcee37412016-08-29 10:10:56 -07001423 cur_usage = 0
1424 last_usage = 0
1425 for i in range(2):
1426 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
1427 for line in f:
1428 m = re.search(r"(system|user)\s+(\d+)", line)
1429 if m:
1430 cpu_usage[m.group(1)] = int(m.group(2))
1431 cpu = cpu_usage["system"] + cpu_usage["user"]
1432 last_usage = cur_usage
1433 cur_usage = cpu
1434 time.sleep(1)
1435 cpu_percent = (cur_usage - last_usage)*100.0/user_hz
1436 print("CPU Usage: %.2f %%" %(cpu_percent))
ChetanGaonkereadad482016-08-26 01:21:47 -07001437 else:
1438 print(0)
1439
1440 if bool(detail["State"]["Running"]):
1441 container_id = detail['Id']
A R Karthickcee37412016-08-29 10:10:56 -07001442 print("Docker Port Info:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001443 cmd = "sudo docker port {}".format(container_id)
1444 os.system(cmd)
1445
1446 if bool(detail["State"]["Running"]):
1447 container_id = detail['Id']
1448 with open('/sys/fs/cgroup/memory/docker/' + container_id + '/memory.stat', 'r') as f:
1449 for line in f:
1450 m = re.search(r"total_rss\s+(\d+)", line)
1451 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001452 mem = int(m.group(1))
1453 print("Memory: %s KB "%(mem/1024.0))
ChetanGaonkereadad482016-08-26 01:21:47 -07001454 o = re.search(r"usage\s+(\d+)", line)
1455 if o:
A R Karthickcee37412016-08-29 10:10:56 -07001456 print("Usage: %s "%(o.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001457 p = re.search(r"max_usage\s+(\d+)", line)
1458 if p:
A R Karthickcee37412016-08-29 10:10:56 -07001459 print("Max Usage: %s "%(p.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001460
1461 if bool(detail["State"]["Running"]):
1462 container_id = detail['Id']
1463 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
1464 for line in f:
1465 m = re.search(r"user\s+(\d+)", line)
1466 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001467 user_ticks = int(m.group(1))
1468 print("Time spent by running processes: %.2f ms"%(user_ticks*1000.0/user_hz))
1469 print("List Networks:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001470 cmd = "docker network ls"
1471 os.system(cmd)
A R Karthick9a5edc42016-08-24 19:10:22 -07001472 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -07001473
1474def buildImages(args):
A R Karthick07608ef2016-08-23 16:51:19 -07001475 tag = 'candidate'
1476 prefix = args.prefix
1477 if prefix:
1478 prefix += '/'
Chetan Gaonker503032a2016-05-12 12:06:29 -07001479 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001480 image_name = '{}{}:{}'.format(prefix, Quagga.IMAGE, tag)
1481 Quagga.build_image(image_name)
A.R Karthick95d044e2016-06-10 18:44:36 -07001482
Chetan Gaonker503032a2016-05-12 12:06:29 -07001483 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001484 image_name = '{}{}:{}'.format(prefix, Radius.IMAGE, tag)
1485 Radius.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001486
1487 if args.image == 'all' or args.image == 'test':
A R Karthick07608ef2016-08-23 16:51:19 -07001488 image_name = '{}{}:{}'.format(prefix, CordTester.IMAGE, tag)
1489 CordTester.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001490
A R Karthick9a5edc42016-08-24 19:10:22 -07001491 return 0
1492
A R Karthickbec27762016-07-28 10:59:34 -07001493def startImages(args):
A R Karthickbec27762016-07-28 10:59:34 -07001494 ##starts the latest ONOS image
A R Karthick07608ef2016-08-23 16:51:19 -07001495 onos_cnt = {'tag': 'latest'}
1496 image_names = args.onos.rsplit(':', 1)
1497 onos_cnt['image'] = image_names[0]
1498 if len(image_names) > 1:
1499 if image_names[1].find('/') < 0:
1500 onos_cnt['tag'] = image_names[1]
1501 else:
1502 #tag cannot have slashes
1503 onos_cnt['image'] = args.onos
1504
A R Karthickbec27762016-07-28 10:59:34 -07001505 if args.image == 'all' or args.image == 'onos':
A R Karthick07608ef2016-08-23 16:51:19 -07001506 onos = Onos(image = onos_cnt['image'], tag = onos_cnt['tag'])
A R Karthickbec27762016-07-28 10:59:34 -07001507 print('ONOS started with ip %s' %(onos.ip()))
1508
1509 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001510 quagga = Quagga(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001511 print('Quagga started with ip %s' %(quagga.ip()))
1512
1513 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001514 radius = Radius(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001515 print('Radius started with ip %s' %(radius.ip()))
1516
A R Karthick9a5edc42016-08-24 19:10:22 -07001517 return 0
1518
A R Karthickea8bfce2016-10-13 16:32:07 -07001519def xosCommand(args):
1520 update = False
1521 profile = args.profile
1522 if args.command == 'update':
1523 update = True
1524 xos = XosServiceProfile(profile = profile, update = update)
1525 if args.command == 'build':
1526 xos.build_images(force = True)
1527 if args.command == 'start':
1528 xos.start_services()
1529 if args.command == 'stop':
1530 xos.stop_services(rm = True)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001531 return 0
1532
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001533if __name__ == '__main__':
Chetan Gaonker678743f2016-04-26 09:54:31 -07001534 parser = ArgumentParser(description='Cord Tester')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001535 subparser = parser.add_subparsers()
1536 parser_run = subparser.add_parser('run', help='Run cord tester')
1537 parser_run.add_argument('-t', '--test-type', default=test_type_default, help='Specify test type or test case to run')
1538 parser_run.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001539 parser_run.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1540 parser_run.add_argument('-a', '--app', default=onos_app_file, type=str, help='Cord ONOS app filename')
A R Karthick07608ef2016-08-23 16:51:19 -07001541 parser_run.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
A.R Karthick5968e0d2017-05-16 14:50:46 -07001542 parser_run.add_argument('-olt-config', '--olt-config', default=olt_config_default, type=str, help='Provide OLT configuration')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001543 parser_run.add_argument('-e', '--test-controller', default='', type=str, help='External test controller ip for Onos and/or radius server. '
Chetan Gaonker5209fe82016-04-19 10:09:53 -07001544 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip to connect')
A R Karthick81acbff2016-06-17 14:45:16 -07001545 parser_run.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1546 help='ip:port address to connect for cord test server for container requests')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001547 parser_run.add_argument('-k', '--keep', action='store_true', help='Keep test container after tests')
1548 parser_run.add_argument('-s', '--start-switch', action='store_true', help='Start OVS when running under OLT config')
A R Karthick6708f562017-09-05 12:15:31 -07001549 parser_run.add_argument('-dh', '--setup-dhcpd', action='store_true', help='Start dhcpd Server in cord-tester test container')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001550 parser_run.add_argument('-u', '--update', default='none', choices=['test','quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1551 'Eg: --update=quagga to rebuild quagga image.'
1552 ' --update=radius to rebuild radius server image.'
1553 ' --update=test to rebuild cord test image.(Default)'
1554 ' --update=all to rebuild all cord tester images.')
A R Karthick1f03e912016-05-18 11:39:22 -07001555 parser_run.add_argument('-n', '--num-containers', default=1, type=int,
1556 help='Specify number of test containers to spawn for tests')
A R Karthicka013a272016-08-16 16:40:19 -07001557 parser_run.add_argument('-c', '--container', default='', type=str, help='Test container name for running tests')
A R Karthick07608ef2016-08-23 16:51:19 -07001558 parser_run.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1559 parser_run.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1560 parser_run.add_argument('-d', '--no-switch', action='store_true', help='Dont start test switch.')
1561 parser_run.add_argument('-i', '--identity-file', default=identity_file_default,
1562 type=str, help='ssh identity file to access compute nodes from test container')
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001563 parser_run.add_argument('-j', '--onos-instances', default=1, type=int,
1564 help='Specify number to test onos instances to form cluster')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001565 parser_run.add_argument('-v', '--shared-volume', action='store_true', help='Start ONOS cluster instances with shared volume')
A.R Karthickc4e474d2016-12-12 15:24:57 -08001566 parser_run.add_argument('-async', '--async-mode', action='store_true',
1567 help='Start ONOS cluster instances in async mode')
A R Karthicke14fc022016-12-08 14:50:29 -08001568 parser_run.add_argument('-log', '--log-level', default=onos_log_level,
1569 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1570 type=str,
1571 help='Specify the log level for the test cases')
A R Karthickc69d73e2017-01-20 11:44:34 -08001572 parser_run.add_argument('-jvm-heap-size', '--jvm-heap-size', default='', type=str, help='ONOS JVM heap size')
A R Karthick44a95602017-01-23 16:17:16 -08001573 parser_run.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A.R Karthickb17e2022017-01-27 11:29:26 -08001574 parser_run.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1575 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001576 parser_run.add_argument('-service-profile', '--service-profile', default='', type=str,
1577 help='Specify config location for ONOS cord service profile when running on podd.'
1578 'Eg: $HOME/service-profile/cord-pod')
1579 parser_run.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1580 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1581 'Eg: vtn,fabric,cord')
A.R Karthickdda22062017-02-09 14:39:20 -08001582 parser_run.add_argument('-karaf', '--karaf', default='3.0.8', type=str, help='Karaf version for ONOS')
A.R Karthick57fa9372017-05-24 12:47:03 -07001583 parser_run.add_argument('-voltha-loc', '--voltha-loc', default='', type=str,
1584 help='Specify the voltha location in order to start voltha')
1585 parser_run.add_argument('-voltha-intf', '--voltha-intf', default='eth0', type=str,
1586 help='Specify the voltha interface for voltha to listen')
A R Karthickfa2caab2017-07-24 18:04:46 -07001587 parser_run.add_argument('-voltha-enable', '--voltha-enable', action='store_true',
1588 help='Run the tests with voltha environment enabled')
A R Karthick168e2342017-08-15 16:13:10 -07001589 parser_run.add_argument('-voltha-container-mode', '--voltha-container-mode', action='store_true',
1590 help='Run the tests with voltha container environment enabled')
A R Karthick184945a2017-07-25 17:23:57 -07001591 parser_run.add_argument('-expose-port', '--expose-port', action='store_true',
1592 help='Start ONOS by exposing the controller ports to the host.'
1593 'Add +1 for every other onos/cluster instance when running more than 1 ONOS instances')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001594 parser_run.set_defaults(func=runTest)
1595
A R Karthick81acbff2016-06-17 14:45:16 -07001596 parser_setup = subparser.add_parser('setup', help='Setup cord tester environment')
1597 parser_setup.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
1598 parser_setup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1599 help='ip:port address for cord test server to listen for container restart requests')
1600 parser_setup.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1601 parser_setup.add_argument('-a', '--app', default=onos_app_file, type=str, help='Cord ONOS app filename')
1602 parser_setup.add_argument('-e', '--test-controller', default='', type=str, help='External test controller ip for Onos and/or radius server. '
1603 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip to connect')
1604 parser_setup.add_argument('-u', '--update', default='none', choices=['quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1605 'Eg: --update=quagga to rebuild quagga image.'
1606 ' --update=radius to rebuild radius server image.'
1607 ' --update=all to rebuild all cord tester images.')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001608 parser_setup.add_argument('-d', '--dont-provision', action='store_true', help='Dont start test container.')
A R Karthick07608ef2016-08-23 16:51:19 -07001609 parser_setup.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
A.R Karthick5968e0d2017-05-16 14:50:46 -07001610 parser_setup.add_argument('-olt-config', '--olt-config', default=olt_config_default, type=str, help='Provide OLT configuration')
A R Karthicke14fc022016-12-08 14:50:29 -08001611 parser_setup.add_argument('-log', '--log-level', default=onos_log_level, type=str,
1612 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1613 help='Specify the log level for the test cases')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001614 parser_setup.add_argument('-s', '--start-switch', action='store_true', help='Start OVS when running under OLT config')
A R Karthick6708f562017-09-05 12:15:31 -07001615 parser_setup.add_argument('-dh', '--setup-dhcpd', action='store_true', help='Start dhcpd Server in cord-tester container')
A.R Karthickb17e2022017-01-27 11:29:26 -08001616 parser_setup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1617 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001618 parser_setup.add_argument('-service-profile', '--service-profile', default='', type=str,
1619 help='Specify config location for ONOS cord service profile when running on podd.'
1620 'Eg: $HOME/service-profile/cord-pod')
1621 parser_setup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1622 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1623 'Eg: vtn,fabric,cord')
A R Karthick07608ef2016-08-23 16:51:19 -07001624 parser_setup.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1625 parser_setup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1626 parser_setup.add_argument('-i', '--identity-file', default=identity_file_default,
1627 type=str, help='ssh identity file to access compute nodes from test container')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001628 parser_setup.add_argument('-n', '--onos-instances', default=1, type=int,
A R Karthickbd82f362016-11-10 15:08:52 -08001629 help='Specify number of test onos instances to spawn')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001630 parser_setup.add_argument('-v', '--shared-volume', action='store_true',
1631 help='Start ONOS cluster instances with shared volume')
A.R Karthickc4e474d2016-12-12 15:24:57 -08001632 parser_setup.add_argument('-async', '--async-mode', action='store_true',
1633 help='Start ONOS cluster instances in async mode')
A R Karthickbd82f362016-11-10 15:08:52 -08001634 parser_setup.add_argument('-f', '--foreground', action='store_true', help='Run in foreground')
A R Karthickc69d73e2017-01-20 11:44:34 -08001635 parser_setup.add_argument('-jvm-heap-size', '--jvm-heap-size', default='', type=str, help='ONOS JVM heap size')
A R Karthick44a95602017-01-23 16:17:16 -08001636 parser_setup.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A.R Karthickdda22062017-02-09 14:39:20 -08001637 parser_setup.add_argument('-karaf', '--karaf', default='3.0.8', type=str, help='Karaf version for ONOS')
A.R Karthick57fa9372017-05-24 12:47:03 -07001638 parser_setup.add_argument('-voltha-loc', '--voltha-loc', default='', type=str,
1639 help='Specify the voltha location in order to start voltha')
1640 parser_setup.add_argument('-voltha-intf', '--voltha-intf', default='eth0', type=str,
1641 help='Specify the voltha interface for voltha to listen')
A R Karthickfa2caab2017-07-24 18:04:46 -07001642 parser_setup.add_argument('-voltha-enable', '--voltha-enable', action='store_true',
1643 help='Run the tests with voltha environment enabled')
A R Karthick168e2342017-08-15 16:13:10 -07001644 parser_setup.add_argument('-voltha-container-mode', '--voltha-container-mode', action='store_true',
1645 help='Run the tests with voltha container environment enabled')
A R Karthick184945a2017-07-25 17:23:57 -07001646 parser_setup.add_argument('-expose-port', '--expose-port', action='store_true',
1647 help='Start ONOS by exposing the controller ports to the host.'
1648 'Add +1 for every other onos/cluster instance when running more than 1 ONOS instances')
A R Karthick81acbff2016-06-17 14:45:16 -07001649 parser_setup.set_defaults(func=setupCordTester)
1650
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001651 parser_xos = subparser.add_parser('xos', help='Building xos into cord tester environment')
A R Karthickea8bfce2016-10-13 16:32:07 -07001652 parser_xos.add_argument('command', choices=['build', 'update', 'start', 'stop'])
1653 parser_xos.add_argument('-p', '--profile', default='cord-pod', type=str, help='Provide service profile')
1654 parser_xos.set_defaults(func=xosCommand)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001655
Chetan Gaonker503032a2016-05-12 12:06:29 -07001656 parser_list = subparser.add_parser('list', help='List test cases')
1657 parser_list.add_argument('-t', '--test', default='all', help='Specify test type to list test cases. '
1658 'Eg: -t tls to list tls test cases.'
1659 ' -t tls-dhcp-vrouter to list tls,dhcp and vrouter test cases.'
1660 ' -t all to list all test cases.')
1661 parser_list.set_defaults(func=listTests)
1662
1663 parser_build = subparser.add_parser('build', help='Build cord test container images')
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001664 parser_build.add_argument('image', choices=['quagga', 'radius', 'test','all'])
A.R Karthick842f0122016-09-28 14:48:47 -07001665 parser_build.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001666 parser_build.set_defaults(func=buildImages)
1667
ChetanGaonkereadad482016-08-26 01:21:47 -07001668 parser_metrics = subparser.add_parser('metrics', help='Info of container')
1669 parser_metrics.add_argument("container", help="Container name")
1670 parser_metrics.set_defaults(func=getMetrics)
1671
A R Karthickbec27762016-07-28 10:59:34 -07001672 parser_start = subparser.add_parser('start', help='Start cord tester containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001673 parser_start.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1674 parser_start.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
A R Karthickbec27762016-07-28 10:59:34 -07001675 parser_start.add_argument('image', choices=['onos', 'quagga', 'radius', 'all'])
1676 parser_start.set_defaults(func=startImages)
1677
Chetan Gaonker503032a2016-05-12 12:06:29 -07001678 parser_cleanup = subparser.add_parser('cleanup', help='Cleanup test containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001679 parser_cleanup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1680 parser_cleanup.add_argument('-l', '--olt', action = 'store_true', help = 'Cleanup OLT config')
A.R Karthick5968e0d2017-05-16 14:50:46 -07001681 parser_cleanup.add_argument('-olt-config', '--olt-config', default=olt_config_default, type=str, help='Provide OLT configuration')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001682 parser_cleanup.add_argument('-o', '--onos', default=onos_image_default, type=str,
1683 help='ONOS container image to cleanup')
A.R Karthick842f0122016-09-28 14:48:47 -07001684 parser_cleanup.add_argument('-x', '--xos', action='store_true',
1685 help='Cleanup XOS containers')
A R Karthicke99ab5c2016-09-30 13:59:57 -07001686 parser_cleanup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1687 help='ip:port address for cord test server to cleanup')
A.R Karthickb17e2022017-01-27 11:29:26 -08001688 parser_cleanup.add_argument('-e', '--test-controller', default='', type=str,
1689 help='External test controller ip for Onos and/or radius server. '
1690 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip')
1691 parser_cleanup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1692 help='Specify config location for ONOS cord instance when running on podd to restore')
A.R Karthickf184b342017-01-27 19:30:50 -08001693 parser_cleanup.add_argument('-service-profile', '--service-profile', default='', type=str,
1694 help='Specify config location for ONOS cord service profile when running on podd.'
1695 'Eg: $HOME/service-profile/cord-pod')
1696 parser_cleanup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1697 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1698 'Eg: vtn,fabric,cord')
A R Karthick757eb4d2017-01-09 14:51:16 -08001699 parser_cleanup.add_argument('-m', '--manifest', default='', type=str, help='Provide test manifest')
A.R Karthick57fa9372017-05-24 12:47:03 -07001700 parser_cleanup.add_argument('-voltha-loc', '--voltha-loc', default='', type=str,
1701 help='Specify the voltha location')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001702 parser_cleanup.set_defaults(func=cleanupTests)
1703
ChetanGaonkereadad482016-08-26 01:21:47 -07001704 c = Client(**(kwargs_from_env()))
1705
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001706 args = parser.parse_args()
A R Karthick9a5edc42016-08-24 19:10:22 -07001707 res = args.func(args)
1708 sys.exit(res)