blob: a40999685b5ee88ada7a63889da076bbfa01b0d0 [file] [log] [blame]
Chetan Gaonkercb122cc2016-05-10 10:58:34 -07001#!/usr/bin/env python
A.R Karthick95d044e2016-06-10 18:44:36 -07002#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07003# Copyright 2016-present Ciena Corporation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
A.R Karthick95d044e2016-06-10 18:44:36 -07008#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07009# http://www.apache.org/licenses/LICENSE-2.0
A.R Karthick95d044e2016-06-10 18:44:36 -070010#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070011# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
Chetan Gaonker93e302d2016-04-05 10:51:07 -070017from argparse import ArgumentParser
A R Karthick14118c62016-07-27 14:54:04 -070018import os,sys,time,socket,errno
ChetanGaonkereadad482016-08-26 01:21:47 -070019import shutil, platform, re
Chetan Gaonker4d842ad2016-04-26 10:04:24 -070020utils_dir = os.path.join( os.path.dirname(os.path.realpath(__file__)), '../utils')
Chetan Gaonker7142a342016-04-07 14:53:12 -070021sys.path.append(utils_dir)
ChetanGaonker68a047f2016-10-12 10:31:48 -070022sys.path.insert(1, '/usr/local/lib/python2.7/dist-packages')
A R Karthick946141b2017-01-24 16:37:47 -080023from OnosCtrl import OnosCtrl, get_mac
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070024from OltConfig import OltConfig
A R Karthick946141b2017-01-24 16:37:47 -080025from OnosFlowCtrl import OnosFlowCtrl
A R Karthick1f03e912016-05-18 11:39:22 -070026from threadPool import ThreadPool
Chetan Gaonker3533faa2016-04-25 17:50:14 -070027from CordContainer import *
A R Karthicke99ab5c2016-09-30 13:59:57 -070028from 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 -070029from TestManifest import TestManifest
ChetanGaonkereadad482016-08-26 01:21:47 -070030from docker import Client
31from docker.utils import kwargs_from_env
A R Karthickea8bfce2016-10-13 16:32:07 -070032from Xos import XosServiceProfile
A R Karthick07608ef2016-08-23 16:51:19 -070033try:
34 from Fabric import FabricMAAS
35except:
36 FabricMAAS = None
Chetan Gaonker93e302d2016-04-05 10:51:07 -070037
Chetan Gaonker93e302d2016-04-05 10:51:07 -070038class CordTester(Container):
Chetan Gaonker93e302d2016-04-05 10:51:07 -070039 sandbox = '/root/test'
Chetan Gaonker7142a342016-04-07 14:53:12 -070040 sandbox_setup = '/root/test/src/test/setup'
Chetan Gaonker4d842ad2016-04-26 10:04:24 -070041 tester_base = os.path.dirname(os.path.realpath(__file__))
42 tester_paths = os.path.realpath(__file__).split(os.path.sep)
A R Karthickb7e80902016-05-17 09:38:31 -070043 tester_path_index = tester_paths.index('src') - 1
Chetan Gaonker7142a342016-04-07 14:53:12 -070044 sandbox_host = os.path.sep.join(tester_paths[:tester_path_index+1])
Chetan Gaonker93e302d2016-04-05 10:51:07 -070045
46 host_guest_map = ( (sandbox_host, sandbox),
Chetan Gaonker85b7bd52016-04-20 10:29:12 -070047 ('/lib/modules', '/lib/modules'),
48 ('/var/run/docker.sock', '/var/run/docker.sock')
Chetan Gaonker93e302d2016-04-05 10:51:07 -070049 )
50 basename = 'cord-tester'
A R Karthick36cfcef2016-08-18 15:20:07 -070051 switch_on_olt = False
A R Karthickf7a613b2017-02-24 09:36:44 -080052 IMAGE = 'cordtest/nose'
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -070053 ALL_TESTS = ('tls', 'dhcp', 'dhcprelay','igmp', 'subscriber',
54 'cordSubscriber', 'vrouter', 'flows', 'proxyarp', 'acl', 'xos', 'fabric',
Chetan Gaonkerefb55282017-01-27 23:07:41 +000055 'cbench', 'cluster', 'netCondition', 'cordvtn', 'iperf', 'mini', 'vsg')
Chetan Gaonker93e302d2016-04-05 10:51:07 -070056
A R Karthicka013a272016-08-16 16:40:19 -070057 def __init__(self, tests, instance = 0, num_instances = 1, ctlr_ip = None,
A R Karthick07608ef2016-08-23 16:51:19 -070058 name = '', image = IMAGE, prefix = '', tag = 'candidate',
A R Karthick85eb1862017-01-23 16:10:57 -080059 env = None, rm = False, update = False, network = None):
A R Karthick1f03e912016-05-18 11:39:22 -070060 self.tests = tests
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070061 self.ctlr_ip = ctlr_ip
Chetan Gaonker93e302d2016-04-05 10:51:07 -070062 self.rm = rm
A R Karthicke4660f52017-02-23 12:08:41 -080063 self.name = name or self.get_name(num_instances)
A R Karthick07608ef2016-08-23 16:51:19 -070064 super(CordTester, self).__init__(self.name, image = image, prefix = prefix, tag = tag)
Chetan Gaonker93e302d2016-04-05 10:51:07 -070065 host_config = self.create_host_config(host_guest_map = self.host_guest_map, privileged = True)
66 volumes = []
Chetan Gaonkerb84835f2016-04-19 15:12:10 -070067 for _, g in self.host_guest_map:
Chetan Gaonker93e302d2016-04-05 10:51:07 -070068 volumes.append(g)
Chetan Gaonker85b7bd52016-04-20 10:29:12 -070069 if update is True or not self.img_exists():
A R Karthick07608ef2016-08-23 16:51:19 -070070 self.build_image(self.image_name)
A R Karthicka013a272016-08-16 16:40:19 -070071 self.create = True
72 #check if are trying to run tests on existing container
A R Karthicke4660f52017-02-23 12:08:41 -080073 if not self.exists():
A R Karthicka013a272016-08-16 16:40:19 -070074 ##Remove test container if any
75 self.remove_container(self.name, force=True)
76 else:
77 self.create = False
A R Karthicke4660f52017-02-23 12:08:41 -080078 self.rm = False
A R Karthick078e63a2016-07-28 13:59:31 -070079 self.olt = False
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070080 if env is not None and env.has_key('OLT_CONFIG'):
81 self.olt = True
A R Karthick078e63a2016-07-28 13:59:31 -070082 olt_conf_file = os.path.join(self.tester_base, 'olt_config.json')
83 olt_config = OltConfig(olt_conf_file)
84 self.port_map, _ = olt_config.olt_port_map()
A.R Karthick369f89e2017-03-02 15:22:45 -080085 self.vcpes = olt_config.get_vcpes()
A R Karthick078e63a2016-07-28 13:59:31 -070086 #Try using the host interface in olt conf to setup the switch
A.R Karthick88e80b92016-12-05 20:23:45 -080087 self.switches = self.port_map['switches']
A R Karthick1f03e912016-05-18 11:39:22 -070088 if env is not None:
A.R Karthick88e80b92016-12-05 20:23:45 -080089 env['TEST_SWITCH'] = self.switches[0]
90 env['TEST_SWITCHES'] = ','.join(self.switches)
A R Karthick1f03e912016-05-18 11:39:22 -070091 env['TEST_HOST'] = self.name
92 env['TEST_INSTANCE'] = instance
93 env['TEST_INSTANCES'] = num_instances
A R Karthicka013a272016-08-16 16:40:19 -070094 if self.create:
95 print('Starting test container %s, image %s, tag %s' %(self.name, self.image, self.tag))
96 self.start(rm = False, volumes = volumes, environment = env,
97 host_config = host_config, tty = True)
A R Karthick85eb1862017-01-23 16:10:57 -080098 if network is not None:
99 Container.connect_to_network(self.name, network)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700100
A.R Karthicke4631062016-11-03 14:28:19 -0700101 def execute_switch(self, cmd, shell = False):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700102 if self.olt:
103 return os.system(cmd)
104 return self.execute(cmd, shell = shell)
105
A R Karthick946141b2017-01-24 16:37:47 -0800106 def test_flow(self, switch):
107 if not self.olt:
108 return False
109 egress = 1
110 ingress = 2
111 egress_map = { 'ether': '00:00:00:00:00:03', 'ip': '192.168.30.1' }
112 ingress_map = { 'ether': '00:00:00:00:00:04', 'ip': '192.168.40.1' }
113 device_id = 'of:{}'.format(get_mac(switch))
A R Karthick973010f2017-02-06 16:41:51 -0800114 ctlr = self.ctlr_ip.split(',')[0]
A R Karthick946141b2017-01-24 16:37:47 -0800115 flow = OnosFlowCtrl(deviceId = device_id,
116 egressPort = egress,
117 ingressPort = ingress,
118 ethType = '0x800',
119 ipSrc = ('IPV4_SRC', ingress_map['ip']+'/32'),
120 ipDst = ('IPV4_DST', egress_map['ip']+'/32'),
A R Karthick973010f2017-02-06 16:41:51 -0800121 controller = ctlr
A R Karthick946141b2017-01-24 16:37:47 -0800122 )
123 result = flow.addFlow()
124 if result != True:
125 return result
126 time.sleep(1)
127 #find and remove the flow
128 flow_id = flow.findFlow(device_id, IN_PORT = ('port', ingress),
129 ETH_TYPE = ('ethType','0x800'), IPV4_SRC = ('ip', ingress_map['ip']+'/32'),
130 IPV4_DST = ('ip', egress_map['ip']+'/32'))
131 result = False
132 if flow_id:
133 result = True
134 flow.removeFlow(device_id, flow_id)
135 return result
136
137 def ctlr_switch_availability(self, switch):
138 '''Test Add and verify flows with IPv4 selectors'''
139 if not self.olt:
140 return False
141 device_id = 'of:{}'.format(get_mac(switch))
A R Karthick973010f2017-02-06 16:41:51 -0800142 ctlr = self.ctlr_ip.split(',')[0]
143 devices = OnosCtrl.get_devices(controller = ctlr)
A R Karthick946141b2017-01-24 16:37:47 -0800144 if devices:
145 device = filter(lambda d: d['id'] == device_id, devices)
146 return True
147 return False
148
A R Karthick078e63a2016-07-28 13:59:31 -0700149 def start_switch(self, boot_delay = 2):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700150 """Start OVS"""
151 ##Determine if OVS has to be started locally or not
152 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 -0800153 ovs_cmd = os.path.join(s_sandbox, s_file)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700154 if self.olt:
A R Karthick36cfcef2016-08-18 15:20:07 -0700155 if CordTester.switch_on_olt is True:
156 return
157 CordTester.switch_on_olt = True
A.R Karthick88e80b92016-12-05 20:23:45 -0800158 ovs_cmd += ' {} {}'.format(len(self.switches), self.ctlr_ip)
159 print('Starting OVS on the host with %d switches for controller: %s' %(len(self.switches), self.ctlr_ip))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700160 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800161 ovs_cmd += ' {}'.format(self.switches[0])
162 print('Starting OVS on test container %s for controller: %s' %(self.name, self.ctlr_ip))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700163 self.execute_switch(ovs_cmd)
A R Karthick946141b2017-01-24 16:37:47 -0800164 time.sleep(5)
165 ## Wait for the controller to see the switch
A.R Karthick88e80b92016-12-05 20:23:45 -0800166 for switch in self.switches:
167 status = 1
168 tries = 0
A R Karthick946141b2017-01-24 16:37:47 -0800169 result = self.ctlr_switch_availability(switch) and self.test_flow(switch)
170 if result == True:
171 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800172 while status != 0 and tries < 500:
173 cmd = 'sudo ovs-ofctl dump-flows {0} | grep \"type=0x8942\"'.format(switch)
174 status = self.execute_switch(cmd, shell = True)
175 tries += 1
A R Karthick946141b2017-01-24 16:37:47 -0800176 if status != 0 and tries > 100:
177 if self.ctlr_switch_availability(switch):
178 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800179 if tries % 10 == 0:
180 print('Waiting for test switch %s to be connected to ONOS controller ...' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700181
A.R Karthick88e80b92016-12-05 20:23:45 -0800182 if status != 0:
183 print('Test Switch %s not connected to ONOS container.'
184 'Please remove ONOS container and restart the test' %switch)
185 if self.rm:
186 self.kill()
187 sys.exit(1)
188 else:
189 print('Test Switch %s connected to ONOS container.' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700190
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700191 if boot_delay:
192 time.sleep(boot_delay)
193
A.R Karthick369f89e2017-03-02 15:22:45 -0800194 def setup_vcpes(self, port_num = 0):
195 res = 0
196 for vcpe in self.vcpes:
197 port, s_tag, c_tag = vcpe['port'], vcpe['s_tag'], vcpe['c_tag']
198 if os.access('/sys/class/net/{}'.format(port), os.F_OK):
199 guest_port = 'vcpe{}'.format(port_num)
200 port_num += 1
201 print('Provisioning port %s for %s with s_tag: %d, c_tag: %d\n'
202 %(guest_port, self.name, s_tag, c_tag))
203 cmd = 'pipework {} -i {} -l {} {} 0.0.0.0/24'.format(port, guest_port, guest_port, self.name)
204 res = os.system(cmd)
205 if res == 0:
206 vlan_outer_port = '{}.{}'.format(guest_port, s_tag)
207 vlan_inner_port = '{}.{}'.format(vlan_outer_port, c_tag)
208 #configure the s_tag/c_tag interfaces inside the guest container
209 cmds = ('ip link set {} up'.format(guest_port),
210 'ip link add link {} name {} type vlan id {}'.format(guest_port,
211 vlan_outer_port,
212 s_tag),
213 'ip link set {} up'.format(vlan_outer_port),
214 'ip link add link {} name {} type vlan id {}'.format(vlan_outer_port,
215 vlan_inner_port,
216 c_tag),
217 'ip link set {} up'.format(vlan_inner_port),
218 )
219 res += self.execute(cmds, shell = True)
220
221 @classmethod
222 def cleanup_vcpes(cls, vcpes):
223 port_num = 0
224 for vcpe in vcpes:
225 port = vcpe['port']
226 if os.access('/sys/class/net/{}'.format(port), os.F_OK):
227 local_port = 'vcpe{}'.format(port_num)
228 cmd = 'ip link del {}'.format(local_port)
229 os.system(cmd)
230 port_num += 1
231
A R Karthick1f03e912016-05-18 11:39:22 -0700232 def setup_intfs(self, port_num = 0):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700233 tester_intf_subnet = '192.168.100'
234 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800235 switches = self.port_map['switches']
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700236 start_vlan = self.port_map['start_vlan']
A R Karthick07769362016-07-28 17:36:15 -0700237 start_vlan += port_num
238 uplink = self.port_map['uplink']
239 wan = self.port_map['wan']
A.R Karthick369f89e2017-03-02 15:22:45 -0800240 vcpe_port_num = port_num
A.R Karthick88e80b92016-12-05 20:23:45 -0800241 port_list = self.port_map['switch_port_list'] + self.port_map['switch_relay_port_list']
A R Karthick52414732017-01-31 09:59:47 -0800242 print('Provisioning the ports for the test container\n')
A.R Karthick88e80b92016-12-05 20:23:45 -0800243 for host_intf, ports in port_list:
244 uplink = self.port_map[host_intf]['uplink']
245 for port in ports:
246 guest_if = port
A R Karthicke4660f52017-02-23 12:08:41 -0800247 local_if = 'l{}'.format(port_num+1) #port #'{0}_{1}'.format(guest_if, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800248 guest_ip = '{0}.{1}/24'.format(tester_intf_subnet, port_num+1)
249 ##Use pipeworks to configure container interfaces on host/bridge interfaces
250 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(host_intf, guest_if,
A R Karthick07769362016-07-28 17:36:15 -0700251 local_if, self.name, guest_ip)
A.R Karthick88e80b92016-12-05 20:23:45 -0800252 #if the wan interface is specified for uplink, then use it instead
253 if wan and port == self.port_map[uplink]:
254 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(wan, guest_if,
255 local_if, self.name, guest_ip)
256 else:
257 if start_vlan != 0:
258 pipework_cmd += ' @{}'.format(start_vlan)
259 start_vlan += 1
260 #print('Running PIPEWORK cmd: %s' %pipework_cmd)
261 res += os.system(pipework_cmd)
262 port_num += 1
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700263
A.R Karthick369f89e2017-03-02 15:22:45 -0800264 self.setup_vcpes(vcpe_port_num)
A R Karthick1f03e912016-05-18 11:39:22 -0700265 return res, port_num
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700266
267 @classmethod
A.R Karthick88e80b92016-12-05 20:23:45 -0800268 def get_intf_type(cls, intf):
269 intf_type = 0
270 if os.path.isdir('/sys/class/net/{}/bridge'.format(intf)):
271 intf_type = 1 ##linux bridge
272 else:
273 cmd = 'ovs-vsctl list-br | grep -q "^{0}$"'.format(intf)
274 res = os.system(cmd)
275 if res == 0: ##ovs bridge
276 intf_type = 2
277
278 return intf_type
279
280 @classmethod
A R Karthickb50f5592016-07-26 12:19:29 -0700281 def cleanup_intfs(cls):
282 olt_conf_file = os.path.join(cls.tester_base, 'olt_config.json')
283 olt_config = OltConfig(olt_conf_file)
A R Karthickb03cecd2016-07-27 10:27:55 -0700284 port_map, _ = olt_config.olt_port_map()
A.R Karthick369f89e2017-03-02 15:22:45 -0800285 vcpes = olt_config.get_vcpes()
A R Karthickb50f5592016-07-26 12:19:29 -0700286 port_num = 0
A R Karthickb50f5592016-07-26 12:19:29 -0700287 start_vlan = port_map['start_vlan']
A R Karthick07769362016-07-28 17:36:15 -0700288 wan = port_map['wan']
A R Karthickb50f5592016-07-26 12:19:29 -0700289 cmds = ()
290 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800291 port_list = port_map['switch_port_list'] + port_map['switch_relay_port_list']
292 for intf_host, ports in port_list:
293 intf_type = cls.get_intf_type(intf_host)
294 for port in ports:
A R Karthicke4660f52017-02-23 12:08:41 -0800295 local_if = 'l{}'.format(port_num+1) #port #'{0}_{1}'.format(port, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800296 if intf_type == 0:
297 if start_vlan != 0:
298 cmds = ('ip link del {}.{}'.format(intf_host, start_vlan),)
299 start_vlan += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700300 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800301 if intf_type == 1:
302 cmds = ('brctl delif {} {}'.format(intf_host, local_if),
303 'ip link del {}'.format(local_if))
304 else:
305 cmds = ('ovs-vsctl del-port {} {}'.format(intf_host, local_if),
306 'ip link del {}'.format(local_if))
A R Karthickb50f5592016-07-26 12:19:29 -0700307
A.R Karthick88e80b92016-12-05 20:23:45 -0800308 for cmd in cmds:
309 res += os.system(cmd)
310 port_num += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700311
A.R Karthick369f89e2017-03-02 15:22:45 -0800312 cls.cleanup_vcpes(vcpes)
313
A R Karthickb50f5592016-07-26 12:19:29 -0700314 @classmethod
A R Karthicke4660f52017-02-23 12:08:41 -0800315 def get_name(cls, num_instances):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700316 cnt_name = '/{0}'.format(cls.basename)
317 cnt_name_len = len(cnt_name)
318 names = list(flatten(n['Names'] for n in cls.dckr.containers(all=True)))
319 test_names = filter(lambda n: n.startswith(cnt_name), names)
320 last_cnt_number = 0
321 if test_names:
322 last_cnt_name = reduce(lambda n1, n2: n1 if int(n1[cnt_name_len:]) > \
323 int(n2[cnt_name_len:]) else n2,
324 test_names)
325 last_cnt_number = int(last_cnt_name[cnt_name_len:])
A R Karthicke4660f52017-02-23 12:08:41 -0800326 if num_instances == 1:
327 last_cnt_number -= 1
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700328 test_cnt_name = cls.basename + str(last_cnt_number+1)
329 return test_cnt_name
330
331 @classmethod
332 def build_image(cls, image):
333 print('Building test container docker image %s' %image)
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700334 ovs_version = '2.5.0'
335 image_format = (ovs_version,)*4
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700336 dockerfile = '''
337FROM ubuntu:14.04
338MAINTAINER chetan@ciena.com
A R Karthickc762df42016-05-25 10:09:21 -0700339RUN apt-get update && \
340 apt-get install -y git git-core autoconf automake autotools-dev pkg-config \
341 make gcc g++ libtool libc6-dev cmake libpcap-dev libxerces-c2-dev \
342 unzip libpcre3-dev flex bison libboost-dev \
343 python python-pip python-setuptools python-scapy tcpdump doxygen doxypy wget \
344 openvswitch-common openvswitch-switch \
A R Karthick07608ef2016-08-23 16:51:19 -0700345 python-twisted python-sqlite sqlite3 python-pexpect telnet arping isc-dhcp-server \
Chetan Gaonker53f16382017-02-20 20:31:22 +0000346 python-paramiko python-maas-client python-keystoneclient python-neutronclient \
347 python-glanceclient
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700348RUN easy_install nose
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700349RUN mkdir -p /root/ovs
350WORKDIR /root
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700351RUN wget http://openvswitch.org/releases/openvswitch-{}.tar.gz -O /root/ovs/openvswitch-{}.tar.gz && \
352(cd /root/ovs && tar zxpvf openvswitch-{}.tar.gz && \
353 cd openvswitch-{} && \
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700354 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && make && make install)
355RUN service openvswitch-switch restart || /bin/true
A.R Karthickec5b72a2016-11-03 09:53:07 -0700356RUN pip install scapy==2.3.2 scapy-ssl_tls==1.2.2 monotonic configObj docker-py pyyaml nsenter pyroute2 netaddr python-daemon
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700357RUN mv /usr/sbin/tcpdump /sbin/
358RUN ln -sf /sbin/tcpdump /usr/sbin/tcpdump
A R Karthickf4999472016-07-01 16:42:13 -0700359RUN mv /usr/sbin/dhcpd /sbin/
360RUN ln -sf /sbin/dhcpd /usr/sbin/dhcpd
A R Karthickb7e80902016-05-17 09:38:31 -0700361WORKDIR /root
362RUN wget -nc http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_2.5.dfsg-2.1_amd64.deb \
363 http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/libbison-dev_2.5.dfsg-2.1_amd64.deb
364RUN sudo dpkg -i bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
365RUN rm bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
366RUN wget -nc http://www.nbee.org/download/nbeesrc-jan-10-2013.zip && \
367 unzip nbeesrc-jan-10-2013.zip && \
368 cd nbeesrc-jan-10-2013/src && cmake . && make && \
369 cp ../bin/libn*.so /usr/local/lib && ldconfig && \
370 cp -R ../include/* /usr/include/
371WORKDIR /root
372RUN git clone https://github.com/CPqD/ofsoftswitch13.git && \
373 cd ofsoftswitch13 && \
A R Karthickb7e80902016-05-17 09:38:31 -0700374 ./boot.sh && \
375 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && \
376 make && make install
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700377CMD ["/bin/bash"]
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700378'''.format(*image_format)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700379 super(CordTester, cls).build_image(dockerfile, image)
380 print('Done building docker image %s' %image)
381
A R Karthick1f03e912016-05-18 11:39:22 -0700382 def run_tests(self):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700383 '''Run the list of tests'''
A R Karthick9a5edc42016-08-24 19:10:22 -0700384 res = 0
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000385 print('Modifying scapy tool files before running a test: %s' %self.tests)
386 self.modify_scapy_files_for_specific_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700387 print('Running tests: %s' %self.tests)
388 for t in self.tests:
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700389 test = t.split(':')[0]
A R Karthick24f1de62016-05-12 15:16:38 -0700390 test_file = '{}Test.py'.format(test)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700391 if t.find(':') >= 0:
A R Karthick24f1de62016-05-12 15:16:38 -0700392 test_case = '{0}:{1}'.format(test_file, t.split(':')[1])
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700393 else:
394 test_case = test_file
Chetan Gaonker7142a342016-04-07 14:53:12 -0700395 cmd = 'nosetests -v {0}/src/test/{1}/{2}'.format(self.sandbox, test, test_case)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700396 status = self.execute(cmd, shell = True)
A R Karthick9a5edc42016-08-24 19:10:22 -0700397 if status > 255:
398 status = 1
399 res |= status
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700400 print('Test %s %s' %(test_case, 'Success' if status == 0 else 'Failure'))
401 print('Done running tests')
402 if self.rm:
403 print('Removing test container %s' %self.name)
404 self.kill(remove=True)
405
A R Karthick9a5edc42016-08-24 19:10:22 -0700406 return res
407
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000408 def modify_scapy_files_for_specific_tests(self):
409 name = self.name
A R Karthickf7a613b2017-02-24 09:36:44 -0800410 container_cmd_exec = Container(name = name, image = CordTester.IMAGE)
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000411 tty = False
412 dckr = Client()
413 cmd = 'cp test/src/test/scapy/fields.py /usr/local/lib/python2.7/dist-packages/scapy/fields.py '
414 i = container_cmd_exec.execute(cmd = cmd, tty= tty, stream = True)
415
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700416 @classmethod
417 def list_tests(cls, tests):
418 print('Listing test cases')
419 for test in tests:
A R Karthick24f1de62016-05-12 15:16:38 -0700420 test_file = '{}Test.py'.format(test)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700421 cmd = 'nosetests -v --collect-only {0}/../{1}/{2}'.format(cls.tester_base, test, test_file)
422 os.system(cmd)
423
A R Karthicka013a272016-08-16 16:40:19 -0700424
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700425##default onos/radius/test container images and names
426onos_image_default='onosproject/onos:latest'
A R Karthick07608ef2016-08-23 16:51:19 -0700427nose_image_default= '{}:candidate'.format(CordTester.IMAGE)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700428test_type_default='dhcp'
A.R Karthick95d044e2016-06-10 18:44:36 -0700429onos_app_version = '2.0-SNAPSHOT'
Chetan Gaonker4d842ad2016-04-26 10:04:24 -0700430cord_tester_base = os.path.dirname(os.path.realpath(__file__))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700431onos_app_file = os.path.abspath('{0}/../apps/ciena-cordigmp-'.format(cord_tester_base) + onos_app_version + '.oar')
A R Karthick81acbff2016-06-17 14:45:16 -0700432cord_test_server_address = '{}:{}'.format(CORD_TEST_HOST, CORD_TEST_PORT)
A R Karthick07608ef2016-08-23 16:51:19 -0700433identity_file_default = '/etc/maas/ansible/id_rsa'
A R Karthicke14fc022016-12-08 14:50:29 -0800434onos_log_level = 'INFO'
A R Karthick07608ef2016-08-23 16:51:19 -0700435
436##sets up the ssh key file for the test container
437def set_ssh_key_file(identity_file):
438 ssh_key_file = None
439 if os.access(identity_file, os.F_OK):
440 ##copy it to setup directory
441 identity_dest = os.path.join(CordTester.tester_base, 'id_rsa')
442 if os.path.abspath(identity_file) != identity_dest:
443 try:
444 shutil.copy(identity_file, identity_dest)
445 ssh_key_file = os.path.join(CordTester.sandbox_setup, 'id_rsa')
446 except: pass
447
448 return ssh_key_file
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700449
450def runTest(args):
Chetan Gaonker823cdc52016-05-09 15:51:23 -0700451 #Start the cord test tcp server
A.R Karthickb17e2022017-01-27 11:29:26 -0800452 test_manifest = TestManifest(args = args)
453 test_server_params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -0700454 test_host = test_server_params[0]
455 test_port = CORD_TEST_PORT
456 if len(test_server_params) > 1:
457 test_port = int(test_server_params[1])
A R Karthick81acbff2016-06-17 14:45:16 -0700458
A R Karthick1f03e912016-05-18 11:39:22 -0700459 test_containers = []
460 #These tests end up restarting ONOS/quagga/radius
A R Karthick4e0c0912016-08-17 16:57:42 -0700461 tests_exempt = ('vrouter', 'cordSubscriber', 'proxyarp', 'dhcprelay')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700462 if args.test_type.lower() == 'all':
463 tests = CordTester.ALL_TESTS
Chetan Gaonker503032a2016-05-12 12:06:29 -0700464 args.quagga = True
465 else:
A R Karthickacae3b42016-05-12 15:27:24 -0700466 tests = args.test_type.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700467
A R Karthick1f03e912016-05-18 11:39:22 -0700468 tests_parallel = [ t for t in tests if t.split(':')[0] not in tests_exempt ]
469 tests_not_parallel = [ t for t in tests if t.split(':')[0] in tests_exempt ]
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700470 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -0700471 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
Chetan Gaonker503032a2016-05-12 12:06:29 -0700472 update_map = { 'quagga' : False, 'test' : False, 'radius' : False }
473 update_map[args.update.lower()] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700474
Chetan Gaonker503032a2016-05-12 12:06:29 -0700475 if args.update.lower() == 'all':
476 for c in update_map.keys():
477 update_map[c] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700478
A R Karthick07608ef2016-08-23 16:51:19 -0700479 use_manifest = False
480 if args.manifest:
481 if os.access(args.manifest, os.F_OK):
482 ##copy it to setup directory
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800483 dest = os.path.join(CordTester.tester_base,
484 os.path.basename(args.manifest))
A R Karthick07608ef2016-08-23 16:51:19 -0700485 if os.path.abspath(args.manifest) != dest:
486 try:
487 shutil.copy(args.manifest, dest)
488 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -0800489 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -0700490 use_manifest = True
491 else:
492 print('Unable to access test manifest: %s' %args.manifest)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700493
A R Karthick65d950d2016-12-19 19:41:55 -0800494 onos_ip = test_manifest.onos_ip
495 radius_ip = test_manifest.radius_ip
496 head_node = test_manifest.head_node
A R Karthick5af23712017-01-20 09:49:24 -0800497 iterations = test_manifest.iterations
A.R Karthick263d3fc2017-01-27 12:52:53 -0800498 onos_cord_loc = test_manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -0800499 service_profile = test_manifest.service_profile
500 synchronizer = test_manifest.synchronizer
501 onos_cord = None
A R Karthick973010f2017-02-06 16:41:51 -0800502 Onos.update_data_dir(test_manifest.karaf_version)
503
A.R Karthick263d3fc2017-01-27 12:52:53 -0800504 if onos_cord_loc:
505 if onos_cord_loc.find(os.path.sep) < 0:
506 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
A.R Karthickf184b342017-01-27 19:30:50 -0800507 if not os.access(onos_cord_loc, os.F_OK):
508 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
509 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800510 if not onos_ip:
511 ##Unexpected case. Specify the external controller ip when running on cord node
512 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
513 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800514 if not service_profile:
515 print('Specify service profile location for the ONOS cord instance. Eg: $HOME/service-profile/cord-pod')
516 sys.exit(1)
517 if not synchronizer:
518 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
519 sys.exit(1)
520 if not os.access(service_profile, os.F_OK):
521 print('Service profile location for ONOS cord instance does not exist')
522 sys.exit(1)
523 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800524
525 try:
526 test_server = cord_test_server_start(daemonize = False, cord_test_host = test_host, cord_test_port = test_port,
527 onos_cord = onos_cord)
528 except:
529 ##Most likely a server instance is already running (daemonized earlier)
530 test_server = None
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700531
A R Karthick65d950d2016-12-19 19:41:55 -0800532 Container.IMAGE_PREFIX = test_manifest.image_prefix
533 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -0800534 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -0800535 cluster_mode = True if test_manifest.onos_instances > 1 else False
536 async_mode = cluster_mode and test_manifest.async_mode
537 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
538 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A.R Karthickc4e474d2016-12-12 15:24:57 -0800539 onos_ips = []
A R Karthick65d950d2016-12-19 19:41:55 -0800540 if cluster_mode is True and len(existing_list) > 1:
541 ##don't setup cluster config again
542 cluster_mode = False
A R Karthick07608ef2016-08-23 16:51:19 -0700543 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -0800544 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -0700545 onos_cnt['image'] = image_names[0]
546 if len(image_names) > 1:
547 if image_names[1].find('/') < 0:
548 onos_cnt['tag'] = image_names[1]
549 else:
550 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -0800551 onos_cnt['image'] = test_manifest.onos_image
A R Karthick07608ef2016-08-23 16:51:19 -0700552
553 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -0800554 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -0700555 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -0800556 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthick07608ef2016-08-23 16:51:19 -0700557 onos = Onos(image = Onos.IMAGE,
A.R Karthickc4e474d2016-12-12 15:24:57 -0800558 tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800559 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800560 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -0800561 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800562 else:
563 onos_ips.append(onos_ip)
564
A R Karthick65d950d2016-12-19 19:41:55 -0800565 num_onos_instances = test_manifest.onos_instances
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700566 if num_onos_instances > 1 and onos is not None:
567 onos_instances = []
568 onos_instances.append(onos)
569 for i in range(1, num_onos_instances):
570 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -0800571 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800572 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -0800573 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -0800574 data_volume = data_volume, async = async_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800575 quagga_config = quagga_config, network = test_manifest.docker_network)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700576 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800577 if onos.running:
578 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800579 if async_mode is True and cluster_mode is True:
A.R Karthickc4e474d2016-12-12 15:24:57 -0800580 Onos.start_cluster_async(onos_instances)
581 if not onos_ips:
582 for onos in onos_instances:
583 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800584 if cluster_mode is True:
585 try:
586 for ip in onos_ips:
587 print('Installing cord tester ONOS app %s in ONOS instance %s' %(args.app,ip))
588 OnosCtrl.install_app(args.app, onos_ip = ip)
589 except: pass
A R Karthick1ef70552016-11-17 17:33:36 -0800590 if setup_cluster is True:
591 Onos.setup_cluster(onos_instances)
592 else:
593 print('ONOS instances already running. Skipping ONOS form cluster for %d instances' %num_onos_instances)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700594 ctlr_addr = ','.join(onos_ips)
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700595
A R Karthick65d950d2016-12-19 19:41:55 -0800596 print('Controller IP %s, Test type %s' %(onos_ips, args.test_type))
597 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -0700598 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -0700599 try:
600 Onos.install_cord_apps(onos_ip = onos_ip)
601 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700602
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700603 if not cluster_mode:
604 print('Installing cord tester ONOS app %s' %args.app)
605 try:
606 for ip in onos_ips:
A R Karthick65d950d2016-12-19 19:41:55 -0800607 OnosCtrl.install_app(args.app, onos_ip = ip)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700608 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700609
610 if radius_ip is None:
A R Karthicka661b552016-05-25 10:18:50 -0700611 ##Start Radius container
A R Karthick85eb1862017-01-23 16:10:57 -0800612 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
613 network = test_manifest.docker_network)
A R Karthick75844572017-01-23 16:57:44 -0800614 radius_ip = radius.ip(network = test_manifest.docker_network)
A.R Karthick95d044e2016-06-10 18:44:36 -0700615
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700616 print('Radius server running with IP %s' %radius_ip)
A.R Karthick95d044e2016-06-10 18:44:36 -0700617
Chetan Gaonkerb84835f2016-04-19 15:12:10 -0700618 if args.quagga == True:
619 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -0800620 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
621 network = test_manifest.docker_network)
A R Karthick81acbff2016-06-17 14:45:16 -0700622
A R Karthick07608ef2016-08-23 16:51:19 -0700623 try:
624 maas_api_key = FabricMAAS.get_api_key()
625 except:
626 maas_api_key = 'UNKNOWN'
627
628 ssh_key_file = set_ssh_key_file(args.identity_file)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700629 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
Chetan Gaonkerc170f3f2016-04-19 17:24:45 -0700630 'ONOS_AAA_IP' : radius_ip if radius_ip is not None else '',
A R Karthick8d03cc52016-06-28 14:51:59 -0700631 'QUAGGA_IP': test_host,
A R Karthick81acbff2016-06-17 14:45:16 -0700632 'CORD_TEST_HOST' : test_host,
633 'CORD_TEST_PORT' : test_port,
A R Karthick65d950d2016-12-19 19:41:55 -0800634 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
635 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -0700636 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
A R Karthick973010f2017-02-06 16:41:51 -0800637 'MAAS_API_KEY': maas_api_key,
638 'KARAF_VERSION' : test_manifest.karaf_version
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700639 }
A R Karthick07608ef2016-08-23 16:51:19 -0700640
641 if ssh_key_file:
642 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
643
A R Karthick65d950d2016-12-19 19:41:55 -0800644 if test_manifest.olt:
Chetan Gaonker7142a342016-04-07 14:53:12 -0700645 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, 'olt_config.json')
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700646 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
647
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800648 if use_manifest:
649 test_cnt_env['MANIFEST'] = os.path.join(CordTester.sandbox_setup,
650 os.path.basename(args.manifest))
651
A R Karthick5af23712017-01-20 09:49:24 -0800652 if iterations is not None:
653 test_cnt_env['ITERATIONS'] = iterations
654
A R Karthicka013a272016-08-16 16:40:19 -0700655 if args.num_containers > 1 and args.container:
656 print('Cannot specify number of containers with container option')
657 sys.exit(1)
658 if args.container:
659 args.keep = True
A R Karthick1f03e912016-05-18 11:39:22 -0700660 port_num = 0
661 num_tests = len(tests_parallel)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700662 if num_tests > 0 and num_tests < args.num_containers:
663 tests_parallel *= args.num_containers/num_tests
664 num_tests = len(tests_parallel)
A R Karthick1f03e912016-05-18 11:39:22 -0700665 tests_per_container = max(1, num_tests/args.num_containers)
A R Karthicke4660f52017-02-23 12:08:41 -0800666 last_batch = num_tests % args.num_containers
A R Karthick1f03e912016-05-18 11:39:22 -0700667 test_slice_start = 0
668 test_slice_end = test_slice_start + tests_per_container
669 num_test_containers = min(num_tests, args.num_containers)
670 if tests_parallel:
671 print('Running %s tests across %d containers in parallel' %(tests_parallel, num_test_containers))
A R Karthicke4660f52017-02-23 12:08:41 -0800672 for container in xrange(num_test_containers):
673 if container + 1 == num_test_containers:
674 test_slice_end += last_batch
A R Karthick1f03e912016-05-18 11:39:22 -0700675 test_cnt = CordTester(tests_parallel[test_slice_start:test_slice_end],
676 instance = container, num_instances = num_test_containers,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700677 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -0700678 name = args.container,
679 image = nose_cnt['image'],
680 prefix = Container.IMAGE_PREFIX,
681 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -0700682 env = test_cnt_env,
683 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -0800684 update = update_map['test'],
685 network = test_manifest.docker_network)
A R Karthick1f03e912016-05-18 11:39:22 -0700686 test_slice_start = test_slice_end
687 test_slice_end = test_slice_start + tests_per_container
688 update_map['test'] = False
689 test_containers.append(test_cnt)
A R Karthicka013a272016-08-16 16:40:19 -0700690 if not test_cnt.create:
691 continue
A R Karthick65d950d2016-12-19 19:41:55 -0800692 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick07608ef2016-08-23 16:51:19 -0700693 if not args.no_switch:
694 test_cnt.start_switch()
A R Karthicka013a272016-08-16 16:40:19 -0700695 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -0700696 _, port_num = test_cnt.setup_intfs(port_num = port_num)
697
A R Karthick9a5edc42016-08-24 19:10:22 -0700698 status = 0
699 if len(test_containers) > 1:
A R Karthicke4660f52017-02-23 12:08:41 -0800700 thread_pool = ThreadPool(len(test_containers), queue_size = 1, wait_timeout=1)
701 for test_cnt in test_containers:
702 thread_pool.addTask(test_cnt.run_tests)
703 thread_pool.cleanUpThreads()
A R Karthick9a5edc42016-08-24 19:10:22 -0700704 else:
A R Karthickcee37412016-08-29 10:10:56 -0700705 if test_containers:
706 status = test_containers[0].run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700707
708 ##Run the linear tests
709 if tests_not_parallel:
710 test_cnt = CordTester(tests_not_parallel,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700711 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -0700712 name = args.container,
713 image = nose_cnt['image'],
714 prefix = Container.IMAGE_PREFIX,
715 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -0700716 env = test_cnt_env,
717 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -0800718 update = update_map['test'],
719 network = test_manifest.docker_network)
A R Karthick65d950d2016-12-19 19:41:55 -0800720 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick36cfcef2016-08-18 15:20:07 -0700721 #For non parallel tests, we just restart the switch also for OLT's
722 CordTester.switch_on_olt = False
A R Karthick07608ef2016-08-23 16:51:19 -0700723 if not args.no_switch:
724 test_cnt.start_switch()
A R Karthicka013a272016-08-16 16:40:19 -0700725 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -0700726 test_cnt.setup_intfs(port_num = port_num)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700727 test_cnt.run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700728
A R Karthick81acbff2016-06-17 14:45:16 -0700729 if test_server:
A.R Karthickf184b342017-01-27 19:30:50 -0800730 if onos_cord:
731 onos_cord.restore()
A R Karthick81acbff2016-06-17 14:45:16 -0700732 cord_test_server_stop(test_server)
733
A R Karthick9a5edc42016-08-24 19:10:22 -0700734 return status
735
A R Karthick81acbff2016-06-17 14:45:16 -0700736##Starts onos/radius/quagga containers as appropriate
737def setupCordTester(args):
738 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -0700739 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
A R Karthick92a0e5a2016-06-22 17:11:05 -0700740 update_map = { 'quagga' : False, 'radius' : False, 'test': False }
A R Karthick81acbff2016-06-17 14:45:16 -0700741 update_map[args.update.lower()] = True
A R Karthick65d950d2016-12-19 19:41:55 -0800742 test_manifest = TestManifest(args = args)
743
A R Karthick81acbff2016-06-17 14:45:16 -0700744 if args.update.lower() == 'all':
745 for c in update_map.keys():
746 update_map[c] = True
747
A R Karthick07608ef2016-08-23 16:51:19 -0700748 use_manifest = False
749 if args.manifest:
750 if os.access(args.manifest, os.F_OK):
751 ##copy it to setup directory
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800752 dest = os.path.join(CordTester.tester_base,
753 os.path.basename(args.manifest))
A R Karthick07608ef2016-08-23 16:51:19 -0700754 if os.path.abspath(args.manifest) != dest:
755 try:
756 shutil.copy(args.manifest, dest)
757 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -0800758 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -0700759 use_manifest = True
760
A.R Karthickf184b342017-01-27 19:30:50 -0800761 onos_ip = test_manifest.onos_ip
762 radius_ip = test_manifest.radius_ip
763 head_node = test_manifest.head_node
764 iterations = test_manifest.iterations
765 service_profile = test_manifest.service_profile
766 synchronizer = test_manifest.synchronizer
767 onos_cord = None
A.R Karthick263d3fc2017-01-27 12:52:53 -0800768 onos_cord_loc = test_manifest.onos_cord
A R Karthick973010f2017-02-06 16:41:51 -0800769 Onos.update_data_dir(test_manifest.karaf_version)
770
A.R Karthick263d3fc2017-01-27 12:52:53 -0800771 if onos_cord_loc:
772 if onos_cord_loc.find(os.path.sep) < 0:
773 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
774 if not os.access(onos_cord_loc, os.F_OK):
775 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
776 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800777 if not onos_ip:
A R Karthickd44cea12016-07-20 12:16:41 -0700778 ##Unexpected case. Specify the external controller ip when running on cord node
779 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
780 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800781 if not service_profile:
782 print('Specify service profile location for the ONOS cord instance. Eg: $HOME/service-profile/cord-pod')
783 sys.exit(1)
784 if not synchronizer:
785 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
786 sys.exit(1)
787 if not os.access(service_profile, os.F_OK):
788 print('Service profile location for ONOS cord instance does not exist')
789 sys.exit(1)
790 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A R Karthickd44cea12016-07-20 12:16:41 -0700791
A R Karthick65d950d2016-12-19 19:41:55 -0800792 Container.IMAGE_PREFIX = test_manifest.image_prefix
A R Karthick81acbff2016-06-17 14:45:16 -0700793 #don't spawn onos if the user had started it externally
A R Karthick65d950d2016-12-19 19:41:55 -0800794 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -0700795 onos_cnt['image'] = image_names[0]
796 if len(image_names) > 1:
797 if image_names[1].find('/') < 0:
798 onos_cnt['tag'] = image_names[1]
799 else:
800 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -0800801 onos_cnt['image'] = test_manifest.onos_image
A R Karthick81acbff2016-06-17 14:45:16 -0700802
A R Karthick07608ef2016-08-23 16:51:19 -0700803 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -0800804 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -0700805 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -0800806 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -0800807 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -0800808 cluster_mode = True if test_manifest.onos_instances > 1 else False
809 async_mode = cluster_mode and test_manifest.async_mode
810 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
811 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A R Karthickc41c2422016-12-09 10:59:19 -0800812 #cleanup existing volumes before forming a new cluster
813 if setup_cluster is True:
814 print('Cleaning up existing cluster volumes')
815 data_dir = os.path.join(Onos.setup_dir, 'cord-onos*-data')
816 try:
817 os.system('rm -rf {}'.format(data_dir))
818 except: pass
819
A R Karthick2b93d6a2016-09-06 15:19:09 -0700820 onos = None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800821 onos_ips = []
A R Karthick81acbff2016-06-17 14:45:16 -0700822 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -0800823 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthickec2db322016-11-17 15:06:01 -0800824 onos = Onos(image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800825 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800826 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -0800827 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800828 else:
829 onos_ips.append(onos_ip)
A R Karthick81acbff2016-06-17 14:45:16 -0700830
A R Karthick65d950d2016-12-19 19:41:55 -0800831 num_onos_instances = test_manifest.onos_instances
A R Karthick2b93d6a2016-09-06 15:19:09 -0700832 if num_onos_instances > 1 and onos is not None:
833 onos_instances = []
834 onos_instances.append(onos)
835 for i in range(1, num_onos_instances):
836 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -0800837 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800838 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -0800839 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -0800840 data_volume = data_volume, async = async_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800841 quagga_config = quagga_config, network = test_manifest.docker_network)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700842 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800843 if onos.running:
844 onos_ips.append(onos.ipaddr)
845 if async_mode is True:
846 Onos.start_cluster_async(onos_instances)
847 if not onos_ips:
848 for onos in onos_instances:
849 onos_ips.append(onos.ipaddr)
A R Karthick51e6fd82016-11-22 14:39:19 -0800850 if setup_cluster is True:
851 Onos.setup_cluster(onos_instances)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700852
853 ctlr_addr = ','.join(onos_ips)
854 print('Onos IP %s' %ctlr_addr)
A R Karthick65d950d2016-12-19 19:41:55 -0800855 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -0700856 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -0700857 try:
858 Onos.install_cord_apps(onos_ip = onos_ip)
859 except: pass
A R Karthickbd9b8a32016-07-21 09:56:45 -0700860
A R Karthickedab01c2016-09-08 14:05:44 -0700861 print('Installing cord tester ONOS app %s' %args.app)
A R Karthick07608ef2016-08-23 16:51:19 -0700862 try:
A R Karthick2b93d6a2016-09-06 15:19:09 -0700863 for ip in onos_ips:
864 OnosCtrl.install_app(args.app, onos_ip = ip)
A R Karthick07608ef2016-08-23 16:51:19 -0700865 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700866
A R Karthick81acbff2016-06-17 14:45:16 -0700867 ##Start Radius container if not started
868 if radius_ip is None:
A R Karthick85eb1862017-01-23 16:10:57 -0800869 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
870 network = test_manifest.docker_network)
A R Karthick75844572017-01-23 16:57:44 -0800871 radius_ip = radius.ip(network = test_manifest.docker_network)
A R Karthick81acbff2016-06-17 14:45:16 -0700872
873 print('Radius server running with IP %s' %radius_ip)
A R Karthick81acbff2016-06-17 14:45:16 -0700874
875 if args.quagga == True:
876 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -0800877 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
878 network = test_manifest.docker_network)
A R Karthick8d03cc52016-06-28 14:51:59 -0700879 print('Quagga started')
A R Karthick81acbff2016-06-17 14:45:16 -0700880
A.R Karthickb17e2022017-01-27 11:29:26 -0800881 params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -0700882 ip = params[0]
883 port = CORD_TEST_PORT
884 if len(params) > 1:
885 port = int(params[1])
A R Karthick92a0e5a2016-06-22 17:11:05 -0700886
A R Karthick07608ef2016-08-23 16:51:19 -0700887 try:
888 maas_api_key = FabricMAAS.get_api_key()
889 except:
890 maas_api_key = 'UNKNOWN'
891
892 ssh_key_file = set_ssh_key_file(args.identity_file)
893
A R Karthick92a0e5a2016-06-22 17:11:05 -0700894 #provision the test container
895 if not args.dont_provision:
A R Karthick2b93d6a2016-09-06 15:19:09 -0700896 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700897 'ONOS_AAA_IP' : radius_ip,
A R Karthick8d03cc52016-06-28 14:51:59 -0700898 'QUAGGA_IP': ip,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700899 'CORD_TEST_HOST' : ip,
900 'CORD_TEST_PORT' : port,
A R Karthick65d950d2016-12-19 19:41:55 -0800901 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
902 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -0700903 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
A R Karthick973010f2017-02-06 16:41:51 -0800904 'MAAS_API_KEY': maas_api_key,
905 'KARAF_VERSION' : test_manifest.karaf_version
A R Karthick92a0e5a2016-06-22 17:11:05 -0700906 }
A R Karthick07608ef2016-08-23 16:51:19 -0700907
908 if ssh_key_file:
909 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
A R Karthick65d950d2016-12-19 19:41:55 -0800910 if test_manifest.olt:
A R Karthick92a0e5a2016-06-22 17:11:05 -0700911 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, 'olt_config.json')
912 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
A R Karthick5af23712017-01-20 09:49:24 -0800913 if test_manifest.iterations is not None:
914 test_cnt_env['ITERATIONS'] = iterations
A.R Karthick8b2f1e32017-02-09 15:10:07 -0800915 if use_manifest:
916 test_cnt_env['MANIFEST'] = os.path.join(CordTester.sandbox_setup,
917 os.path.basename(args.manifest))
A R Karthick92a0e5a2016-06-22 17:11:05 -0700918 test_cnt = CordTester((),
A R Karthick2b93d6a2016-09-06 15:19:09 -0700919 ctlr_ip = ctlr_addr,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700920 image = nose_cnt['image'],
A R Karthick07608ef2016-08-23 16:51:19 -0700921 prefix = Container.IMAGE_PREFIX,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700922 tag = nose_cnt['tag'],
923 env = test_cnt_env,
924 rm = False,
A R Karthick85eb1862017-01-23 16:10:57 -0800925 update = update_map['test'],
926 network = test_manifest.docker_network)
A R Karthick92a0e5a2016-06-22 17:11:05 -0700927
A R Karthick65d950d2016-12-19 19:41:55 -0800928 if test_manifest.start_switch or not test_manifest.olt:
A R Karthick92a0e5a2016-06-22 17:11:05 -0700929 test_cnt.start_switch()
930 if test_cnt.olt:
931 test_cnt.setup_intfs(port_num = 0)
932 print('Test container %s started and provisioned to run tests using nosetests' %(test_cnt.name))
933
934 #Finally start the test server and daemonize
A R Karthick14118c62016-07-27 14:54:04 -0700935 try:
A R Karthickbd82f362016-11-10 15:08:52 -0800936 cord_test_server_start(daemonize = not args.foreground, cord_test_host = ip, cord_test_port = port,
937 onos_cord = onos_cord, foreground = args.foreground)
A R Karthick14118c62016-07-27 14:54:04 -0700938 except socket.error, e:
939 #the test agent address could be remote or already running. Exit gracefully
940 sys.exit(0)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700941
A R Karthick9a5edc42016-08-24 19:10:22 -0700942 return 0
943
Chetan Gaonker503032a2016-05-12 12:06:29 -0700944def cleanupTests(args):
A R Karthick757eb4d2017-01-09 14:51:16 -0800945 if args.manifest and os.access(args.manifest, os.F_OK):
946 manifest = TestManifest(manifest = args.manifest)
947 args.prefix = manifest.image_prefix
948 args.olt = manifest.olt
949 args.onos = manifest.onos_image
950 args.server = manifest.server
A.R Karthickb17e2022017-01-27 11:29:26 -0800951 args.onos_ip = manifest.onos_ip
952 args.radius_ip = manifest.radius_ip
953 args.onos_cord = manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -0800954 args.service_profile = manifest.service_profile
955 args.synchronizer = manifest.synchronizer
A.R Karthickb17e2022017-01-27 11:29:26 -0800956 else:
957 args.onos_ip = None
958 args.radius_ip = None
959 if args.test_controller:
960 ips = args.test_controller.split('/')
961 args.onos_ip = ips[0]
962 if len(ips) > 1:
963 args.radius_ip = ips[1]
A R Karthick757eb4d2017-01-09 14:51:16 -0800964
A R Karthick2b93d6a2016-09-06 15:19:09 -0700965 image_name = args.onos
A R Karthick07608ef2016-08-23 16:51:19 -0700966 prefix = args.prefix
967 if prefix:
968 prefix += '/'
969 test_container = '{}{}:candidate'.format(prefix, CordTester.IMAGE)
Chetan Gaonker503032a2016-05-12 12:06:29 -0700970 print('Cleaning up Test containers ...')
971 Container.cleanup(test_container)
A R Karthickb50f5592016-07-26 12:19:29 -0700972 if args.olt:
973 print('Cleaning up test container OLT configuration')
974 CordTester.cleanup_intfs()
A R Karthick2b93d6a2016-09-06 15:19:09 -0700975
976 onos_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == image_name ]
977 if len(onos_list) > 1:
978 for onos in onos_list:
979 Container.dckr.kill(onos)
980 Container.dckr.remove_container(onos, force=True)
A R Karthickec2db322016-11-17 15:06:01 -0800981 for index in range(len(onos_list)):
982 volume = '{}-data'.format(Onos.NAME) if index == 0 else '{}-{}-data'.format(Onos.NAME, index+1)
983 Onos.remove_data_map(volume, Onos.guest_data_dir)
A R Karthick9d48c652016-09-15 09:16:36 -0700984 Onos.cleanup_runtime()
A R Karthickec2db322016-11-17 15:06:01 -0800985
A R Karthick394976f2017-01-31 14:25:16 -0800986 radius_container = '{}{}:candidate'.format(prefix, Radius.IMAGE)
987 quagga_container = '{}{}:candidate'.format(prefix, Quagga.IMAGE)
988 Container.cleanup(radius_container)
989 Container.cleanup(quagga_container)
A.R Karthickb17e2022017-01-27 11:29:26 -0800990 if args.onos_cord:
A.R Karthickf184b342017-01-27 19:30:50 -0800991 #try restoring the onos cord instance
992 try:
993 onos_cord = OnosCord(args.onos_ip, args.onos_cord, args.service_profile, args.synchronizer, start = False)
994 onos_cord.restore(force = True)
995 except Exception as e:
996 print(e)
A.R Karthickb17e2022017-01-27 11:29:26 -0800997
A.R Karthick842f0122016-09-28 14:48:47 -0700998 if args.xos:
999 ##cleanup XOS images
1000 xos_images = ( '{}:{}'.format(XosServer.IMAGE,XosServer.TAG),
1001 '{}:{}'.format(XosSynchronizerOpenstack.IMAGE,
1002 XosSynchronizerOpenstack.TAG),
1003 '{}:{}'.format(XosSynchronizerOnboarding.IMAGE,
1004 XosSynchronizerOnboarding.TAG),
1005 '{}:{}'.format(XosSynchronizerOpenvpn.IMAGE,
1006 XosSynchronizerOpenvpn.TAG),
1007 '{}:{}'.format(XosPostgresql.IMAGE,
1008 XosPostgresql.TAG),
1009 '{}:{}'.format(XosSyndicateMs.IMAGE,
1010 XosSyndicateMs.TAG),
1011 )
1012 for img in xos_images:
1013 print('Cleaning up XOS image: %s' %img)
1014 Container.cleanup(img)
1015
A R Karthicke99ab5c2016-09-30 13:59:57 -07001016 server_params = args.server.split(':')
1017 server_host = server_params[0]
1018 server_port = CORD_TEST_PORT
1019 if len(server_params) > 1:
1020 server_port = int(server_params[1])
1021 cord_test_server_shutdown(server_host, server_port)
A R Karthick9a5edc42016-08-24 19:10:22 -07001022 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -07001023
1024def listTests(args):
1025 if args.test == 'all':
1026 tests = CordTester.ALL_TESTS
1027 else:
A R Karthickacae3b42016-05-12 15:27:24 -07001028 tests = args.test.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001029 CordTester.list_tests(tests)
A R Karthickcee37412016-08-29 10:10:56 -07001030 return 0
ChetanGaonkereadad482016-08-26 01:21:47 -07001031
1032def getMetrics(args):
A R Karthickcee37412016-08-29 10:10:56 -07001033 try:
1034 detail = c.inspect_container(args.container)
1035 except:
1036 print('Unknown container %s' %args.container)
1037 return 0
1038 user_hz = os.sysconf(os.sysconf_names['SC_CLK_TCK'])
ChetanGaonkereadad482016-08-26 01:21:47 -07001039 state = detail["State"]
1040 if bool(state["Paused"]):
1041 print("Container is in Paused State")
1042 elif bool(state["Running"]):
1043 print("Container is in Running State")
1044 elif int(state["ExitCode"]) == 0:
1045 print("Container is in Stopped State")
1046 else:
1047 print("Container is in Crashed State")
1048
A R Karthickcee37412016-08-29 10:10:56 -07001049 print("Ip Address of the container: " +detail['NetworkSettings']['IPAddress'])
ChetanGaonkereadad482016-08-26 01:21:47 -07001050
1051 if bool(detail["State"]["Running"]):
1052 container_id = detail['Id']
1053 cpu_usage = {}
A R Karthickcee37412016-08-29 10:10:56 -07001054 cur_usage = 0
1055 last_usage = 0
1056 for i in range(2):
1057 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
1058 for line in f:
1059 m = re.search(r"(system|user)\s+(\d+)", line)
1060 if m:
1061 cpu_usage[m.group(1)] = int(m.group(2))
1062 cpu = cpu_usage["system"] + cpu_usage["user"]
1063 last_usage = cur_usage
1064 cur_usage = cpu
1065 time.sleep(1)
1066 cpu_percent = (cur_usage - last_usage)*100.0/user_hz
1067 print("CPU Usage: %.2f %%" %(cpu_percent))
ChetanGaonkereadad482016-08-26 01:21:47 -07001068 else:
1069 print(0)
1070
1071 if bool(detail["State"]["Running"]):
1072 container_id = detail['Id']
A R Karthickcee37412016-08-29 10:10:56 -07001073 print("Docker Port Info:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001074 cmd = "sudo docker port {}".format(container_id)
1075 os.system(cmd)
1076
1077 if bool(detail["State"]["Running"]):
1078 container_id = detail['Id']
1079 with open('/sys/fs/cgroup/memory/docker/' + container_id + '/memory.stat', 'r') as f:
1080 for line in f:
1081 m = re.search(r"total_rss\s+(\d+)", line)
1082 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001083 mem = int(m.group(1))
1084 print("Memory: %s KB "%(mem/1024.0))
ChetanGaonkereadad482016-08-26 01:21:47 -07001085 o = re.search(r"usage\s+(\d+)", line)
1086 if o:
A R Karthickcee37412016-08-29 10:10:56 -07001087 print("Usage: %s "%(o.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001088 p = re.search(r"max_usage\s+(\d+)", line)
1089 if p:
A R Karthickcee37412016-08-29 10:10:56 -07001090 print("Max Usage: %s "%(p.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001091
1092 if bool(detail["State"]["Running"]):
1093 container_id = detail['Id']
1094 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
1095 for line in f:
1096 m = re.search(r"user\s+(\d+)", line)
1097 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001098 user_ticks = int(m.group(1))
1099 print("Time spent by running processes: %.2f ms"%(user_ticks*1000.0/user_hz))
1100 print("List Networks:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001101 cmd = "docker network ls"
1102 os.system(cmd)
A R Karthick9a5edc42016-08-24 19:10:22 -07001103 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -07001104
1105def buildImages(args):
A R Karthick07608ef2016-08-23 16:51:19 -07001106 tag = 'candidate'
1107 prefix = args.prefix
1108 if prefix:
1109 prefix += '/'
Chetan Gaonker503032a2016-05-12 12:06:29 -07001110 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001111 image_name = '{}{}:{}'.format(prefix, Quagga.IMAGE, tag)
1112 Quagga.build_image(image_name)
A.R Karthick95d044e2016-06-10 18:44:36 -07001113
Chetan Gaonker503032a2016-05-12 12:06:29 -07001114 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001115 image_name = '{}{}:{}'.format(prefix, Radius.IMAGE, tag)
1116 Radius.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001117
1118 if args.image == 'all' or args.image == 'test':
A R Karthick07608ef2016-08-23 16:51:19 -07001119 image_name = '{}{}:{}'.format(prefix, CordTester.IMAGE, tag)
1120 CordTester.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001121
A R Karthick9a5edc42016-08-24 19:10:22 -07001122 return 0
1123
A R Karthickbec27762016-07-28 10:59:34 -07001124def startImages(args):
A R Karthickbec27762016-07-28 10:59:34 -07001125 ##starts the latest ONOS image
A R Karthick07608ef2016-08-23 16:51:19 -07001126 onos_cnt = {'tag': 'latest'}
1127 image_names = args.onos.rsplit(':', 1)
1128 onos_cnt['image'] = image_names[0]
1129 if len(image_names) > 1:
1130 if image_names[1].find('/') < 0:
1131 onos_cnt['tag'] = image_names[1]
1132 else:
1133 #tag cannot have slashes
1134 onos_cnt['image'] = args.onos
1135
A R Karthickbec27762016-07-28 10:59:34 -07001136 if args.image == 'all' or args.image == 'onos':
A R Karthick07608ef2016-08-23 16:51:19 -07001137 onos = Onos(image = onos_cnt['image'], tag = onos_cnt['tag'])
A R Karthickbec27762016-07-28 10:59:34 -07001138 print('ONOS started with ip %s' %(onos.ip()))
1139
1140 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001141 quagga = Quagga(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001142 print('Quagga started with ip %s' %(quagga.ip()))
1143
1144 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001145 radius = Radius(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001146 print('Radius started with ip %s' %(radius.ip()))
1147
A R Karthick9a5edc42016-08-24 19:10:22 -07001148 return 0
1149
A R Karthickea8bfce2016-10-13 16:32:07 -07001150def xosCommand(args):
1151 update = False
1152 profile = args.profile
1153 if args.command == 'update':
1154 update = True
1155 xos = XosServiceProfile(profile = profile, update = update)
1156 if args.command == 'build':
1157 xos.build_images(force = True)
1158 if args.command == 'start':
1159 xos.start_services()
1160 if args.command == 'stop':
1161 xos.stop_services(rm = True)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001162 return 0
1163
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001164if __name__ == '__main__':
Chetan Gaonker678743f2016-04-26 09:54:31 -07001165 parser = ArgumentParser(description='Cord Tester')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001166 subparser = parser.add_subparsers()
1167 parser_run = subparser.add_parser('run', help='Run cord tester')
1168 parser_run.add_argument('-t', '--test-type', default=test_type_default, help='Specify test type or test case to run')
1169 parser_run.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001170 parser_run.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1171 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 -07001172 parser_run.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001173 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 -07001174 '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 -07001175 parser_run.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1176 help='ip:port address to connect for cord test server for container requests')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001177 parser_run.add_argument('-k', '--keep', action='store_true', help='Keep test container after tests')
1178 parser_run.add_argument('-s', '--start-switch', action='store_true', help='Start OVS when running under OLT config')
1179 parser_run.add_argument('-u', '--update', default='none', choices=['test','quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1180 'Eg: --update=quagga to rebuild quagga image.'
1181 ' --update=radius to rebuild radius server image.'
1182 ' --update=test to rebuild cord test image.(Default)'
1183 ' --update=all to rebuild all cord tester images.')
A R Karthick1f03e912016-05-18 11:39:22 -07001184 parser_run.add_argument('-n', '--num-containers', default=1, type=int,
1185 help='Specify number of test containers to spawn for tests')
A R Karthicka013a272016-08-16 16:40:19 -07001186 parser_run.add_argument('-c', '--container', default='', type=str, help='Test container name for running tests')
A R Karthick07608ef2016-08-23 16:51:19 -07001187 parser_run.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1188 parser_run.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1189 parser_run.add_argument('-d', '--no-switch', action='store_true', help='Dont start test switch.')
1190 parser_run.add_argument('-i', '--identity-file', default=identity_file_default,
1191 type=str, help='ssh identity file to access compute nodes from test container')
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001192 parser_run.add_argument('-j', '--onos-instances', default=1, type=int,
1193 help='Specify number to test onos instances to form cluster')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001194 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 -08001195 parser_run.add_argument('-async', '--async-mode', action='store_true',
1196 help='Start ONOS cluster instances in async mode')
A R Karthicke14fc022016-12-08 14:50:29 -08001197 parser_run.add_argument('-log', '--log-level', default=onos_log_level,
1198 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1199 type=str,
1200 help='Specify the log level for the test cases')
A R Karthickc69d73e2017-01-20 11:44:34 -08001201 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 -08001202 parser_run.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A.R Karthickb17e2022017-01-27 11:29:26 -08001203 parser_run.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1204 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001205 parser_run.add_argument('-service-profile', '--service-profile', default='', type=str,
1206 help='Specify config location for ONOS cord service profile when running on podd.'
1207 'Eg: $HOME/service-profile/cord-pod')
1208 parser_run.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1209 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1210 'Eg: vtn,fabric,cord')
A.R Karthickdda22062017-02-09 14:39:20 -08001211 parser_run.add_argument('-karaf', '--karaf', default='3.0.8', type=str, help='Karaf version for ONOS')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001212 parser_run.set_defaults(func=runTest)
1213
A R Karthick81acbff2016-06-17 14:45:16 -07001214 parser_setup = subparser.add_parser('setup', help='Setup cord tester environment')
1215 parser_setup.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
1216 parser_setup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1217 help='ip:port address for cord test server to listen for container restart requests')
1218 parser_setup.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1219 parser_setup.add_argument('-a', '--app', default=onos_app_file, type=str, help='Cord ONOS app filename')
1220 parser_setup.add_argument('-e', '--test-controller', default='', type=str, help='External test controller ip for Onos and/or radius server. '
1221 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip to connect')
1222 parser_setup.add_argument('-u', '--update', default='none', choices=['quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1223 'Eg: --update=quagga to rebuild quagga image.'
1224 ' --update=radius to rebuild radius server image.'
1225 ' --update=all to rebuild all cord tester images.')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001226 parser_setup.add_argument('-d', '--dont-provision', action='store_true', help='Dont start test container.')
A R Karthick07608ef2016-08-23 16:51:19 -07001227 parser_setup.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
A R Karthicke14fc022016-12-08 14:50:29 -08001228 parser_setup.add_argument('-log', '--log-level', default=onos_log_level, type=str,
1229 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1230 help='Specify the log level for the test cases')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001231 parser_setup.add_argument('-s', '--start-switch', action='store_true', help='Start OVS when running under OLT config')
A.R Karthickb17e2022017-01-27 11:29:26 -08001232 parser_setup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1233 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001234 parser_setup.add_argument('-service-profile', '--service-profile', default='', type=str,
1235 help='Specify config location for ONOS cord service profile when running on podd.'
1236 'Eg: $HOME/service-profile/cord-pod')
1237 parser_setup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1238 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1239 'Eg: vtn,fabric,cord')
A R Karthick07608ef2016-08-23 16:51:19 -07001240 parser_setup.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1241 parser_setup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1242 parser_setup.add_argument('-i', '--identity-file', default=identity_file_default,
1243 type=str, help='ssh identity file to access compute nodes from test container')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001244 parser_setup.add_argument('-n', '--onos-instances', default=1, type=int,
A R Karthickbd82f362016-11-10 15:08:52 -08001245 help='Specify number of test onos instances to spawn')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001246 parser_setup.add_argument('-v', '--shared-volume', action='store_true',
1247 help='Start ONOS cluster instances with shared volume')
A.R Karthickc4e474d2016-12-12 15:24:57 -08001248 parser_setup.add_argument('-async', '--async-mode', action='store_true',
1249 help='Start ONOS cluster instances in async mode')
A R Karthickbd82f362016-11-10 15:08:52 -08001250 parser_setup.add_argument('-f', '--foreground', action='store_true', help='Run in foreground')
A R Karthickc69d73e2017-01-20 11:44:34 -08001251 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 -08001252 parser_setup.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A.R Karthickdda22062017-02-09 14:39:20 -08001253 parser_setup.add_argument('-karaf', '--karaf', default='3.0.8', type=str, help='Karaf version for ONOS')
A R Karthick81acbff2016-06-17 14:45:16 -07001254 parser_setup.set_defaults(func=setupCordTester)
1255
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001256 parser_xos = subparser.add_parser('xos', help='Building xos into cord tester environment')
A R Karthickea8bfce2016-10-13 16:32:07 -07001257 parser_xos.add_argument('command', choices=['build', 'update', 'start', 'stop'])
1258 parser_xos.add_argument('-p', '--profile', default='cord-pod', type=str, help='Provide service profile')
1259 parser_xos.set_defaults(func=xosCommand)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001260
Chetan Gaonker503032a2016-05-12 12:06:29 -07001261 parser_list = subparser.add_parser('list', help='List test cases')
1262 parser_list.add_argument('-t', '--test', default='all', help='Specify test type to list test cases. '
1263 'Eg: -t tls to list tls test cases.'
1264 ' -t tls-dhcp-vrouter to list tls,dhcp and vrouter test cases.'
1265 ' -t all to list all test cases.')
1266 parser_list.set_defaults(func=listTests)
1267
1268 parser_build = subparser.add_parser('build', help='Build cord test container images')
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001269 parser_build.add_argument('image', choices=['quagga', 'radius', 'test','all'])
A.R Karthick842f0122016-09-28 14:48:47 -07001270 parser_build.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001271 parser_build.set_defaults(func=buildImages)
1272
ChetanGaonkereadad482016-08-26 01:21:47 -07001273 parser_metrics = subparser.add_parser('metrics', help='Info of container')
1274 parser_metrics.add_argument("container", help="Container name")
1275 parser_metrics.set_defaults(func=getMetrics)
1276
A R Karthickbec27762016-07-28 10:59:34 -07001277 parser_start = subparser.add_parser('start', help='Start cord tester containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001278 parser_start.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1279 parser_start.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
A R Karthickbec27762016-07-28 10:59:34 -07001280 parser_start.add_argument('image', choices=['onos', 'quagga', 'radius', 'all'])
1281 parser_start.set_defaults(func=startImages)
1282
Chetan Gaonker503032a2016-05-12 12:06:29 -07001283 parser_cleanup = subparser.add_parser('cleanup', help='Cleanup test containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001284 parser_cleanup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1285 parser_cleanup.add_argument('-l', '--olt', action = 'store_true', help = 'Cleanup OLT config')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001286 parser_cleanup.add_argument('-o', '--onos', default=onos_image_default, type=str,
1287 help='ONOS container image to cleanup')
A.R Karthick842f0122016-09-28 14:48:47 -07001288 parser_cleanup.add_argument('-x', '--xos', action='store_true',
1289 help='Cleanup XOS containers')
A R Karthicke99ab5c2016-09-30 13:59:57 -07001290 parser_cleanup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1291 help='ip:port address for cord test server to cleanup')
A.R Karthickb17e2022017-01-27 11:29:26 -08001292 parser_cleanup.add_argument('-e', '--test-controller', default='', type=str,
1293 help='External test controller ip for Onos and/or radius server. '
1294 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip')
1295 parser_cleanup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1296 help='Specify config location for ONOS cord instance when running on podd to restore')
A.R Karthickf184b342017-01-27 19:30:50 -08001297 parser_cleanup.add_argument('-service-profile', '--service-profile', default='', type=str,
1298 help='Specify config location for ONOS cord service profile when running on podd.'
1299 'Eg: $HOME/service-profile/cord-pod')
1300 parser_cleanup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1301 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1302 'Eg: vtn,fabric,cord')
A R Karthick757eb4d2017-01-09 14:51:16 -08001303 parser_cleanup.add_argument('-m', '--manifest', default='', type=str, help='Provide test manifest')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001304 parser_cleanup.set_defaults(func=cleanupTests)
1305
ChetanGaonkereadad482016-08-26 01:21:47 -07001306 c = Client(**(kwargs_from_env()))
1307
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001308 args = parser.parse_args()
A R Karthick9a5edc42016-08-24 19:10:22 -07001309 res = args.func(args)
1310 sys.exit(res)