blob: 3e66fd8db7b76c38c42060c4aeddbbc701a55a18 [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
Chetan Gaonker503032a2016-05-12 12:06:29 -070052 IMAGE = 'cord-test/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 Karthicka013a272016-08-16 16:40:19 -070063 self.name = name or self.get_name()
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
73 if not name or not self.exists():
74 ##Remove test container if any
75 self.remove_container(self.name, force=True)
76 else:
77 self.create = False
A R Karthick078e63a2016-07-28 13:59:31 -070078 self.olt = False
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070079 if env is not None and env.has_key('OLT_CONFIG'):
80 self.olt = True
A R Karthick078e63a2016-07-28 13:59:31 -070081 olt_conf_file = os.path.join(self.tester_base, 'olt_config.json')
82 olt_config = OltConfig(olt_conf_file)
83 self.port_map, _ = olt_config.olt_port_map()
84 #Try using the host interface in olt conf to setup the switch
A.R Karthick88e80b92016-12-05 20:23:45 -080085 self.switches = self.port_map['switches']
A R Karthick1f03e912016-05-18 11:39:22 -070086 if env is not None:
A.R Karthick88e80b92016-12-05 20:23:45 -080087 env['TEST_SWITCH'] = self.switches[0]
88 env['TEST_SWITCHES'] = ','.join(self.switches)
A R Karthick1f03e912016-05-18 11:39:22 -070089 env['TEST_HOST'] = self.name
90 env['TEST_INSTANCE'] = instance
91 env['TEST_INSTANCES'] = num_instances
A R Karthicka013a272016-08-16 16:40:19 -070092 if self.create:
93 print('Starting test container %s, image %s, tag %s' %(self.name, self.image, self.tag))
94 self.start(rm = False, volumes = volumes, environment = env,
95 host_config = host_config, tty = True)
A R Karthick85eb1862017-01-23 16:10:57 -080096 if network is not None:
97 Container.connect_to_network(self.name, network)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070098
A.R Karthicke4631062016-11-03 14:28:19 -070099 def execute_switch(self, cmd, shell = False):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700100 if self.olt:
101 return os.system(cmd)
102 return self.execute(cmd, shell = shell)
103
A R Karthick946141b2017-01-24 16:37:47 -0800104 def test_flow(self, switch):
105 if not self.olt:
106 return False
107 egress = 1
108 ingress = 2
109 egress_map = { 'ether': '00:00:00:00:00:03', 'ip': '192.168.30.1' }
110 ingress_map = { 'ether': '00:00:00:00:00:04', 'ip': '192.168.40.1' }
111 device_id = 'of:{}'.format(get_mac(switch))
112 flow = OnosFlowCtrl(deviceId = device_id,
113 egressPort = egress,
114 ingressPort = ingress,
115 ethType = '0x800',
116 ipSrc = ('IPV4_SRC', ingress_map['ip']+'/32'),
117 ipDst = ('IPV4_DST', egress_map['ip']+'/32'),
118 controller = self.ctlr_ip
119 )
120 result = flow.addFlow()
121 if result != True:
122 return result
123 time.sleep(1)
124 #find and remove the flow
125 flow_id = flow.findFlow(device_id, IN_PORT = ('port', ingress),
126 ETH_TYPE = ('ethType','0x800'), IPV4_SRC = ('ip', ingress_map['ip']+'/32'),
127 IPV4_DST = ('ip', egress_map['ip']+'/32'))
128 result = False
129 if flow_id:
130 result = True
131 flow.removeFlow(device_id, flow_id)
132 return result
133
134 def ctlr_switch_availability(self, switch):
135 '''Test Add and verify flows with IPv4 selectors'''
136 if not self.olt:
137 return False
138 device_id = 'of:{}'.format(get_mac(switch))
139 devices = OnosCtrl.get_devices(controller = self.ctlr_ip)
140 if devices:
141 device = filter(lambda d: d['id'] == device_id, devices)
142 return True
143 return False
144
A R Karthick078e63a2016-07-28 13:59:31 -0700145 def start_switch(self, boot_delay = 2):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700146 """Start OVS"""
147 ##Determine if OVS has to be started locally or not
148 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 -0800149 ovs_cmd = os.path.join(s_sandbox, s_file)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700150 if self.olt:
A R Karthick36cfcef2016-08-18 15:20:07 -0700151 if CordTester.switch_on_olt is True:
152 return
153 CordTester.switch_on_olt = True
A.R Karthick88e80b92016-12-05 20:23:45 -0800154 ovs_cmd += ' {} {}'.format(len(self.switches), self.ctlr_ip)
155 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 -0700156 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800157 ovs_cmd += ' {}'.format(self.switches[0])
158 print('Starting OVS on test container %s for controller: %s' %(self.name, self.ctlr_ip))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700159 self.execute_switch(ovs_cmd)
A R Karthick946141b2017-01-24 16:37:47 -0800160 time.sleep(5)
161 ## Wait for the controller to see the switch
A.R Karthick88e80b92016-12-05 20:23:45 -0800162 for switch in self.switches:
163 status = 1
164 tries = 0
A R Karthick946141b2017-01-24 16:37:47 -0800165 result = self.ctlr_switch_availability(switch) and self.test_flow(switch)
166 if result == True:
167 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800168 while status != 0 and tries < 500:
169 cmd = 'sudo ovs-ofctl dump-flows {0} | grep \"type=0x8942\"'.format(switch)
170 status = self.execute_switch(cmd, shell = True)
171 tries += 1
A R Karthick946141b2017-01-24 16:37:47 -0800172 if status != 0 and tries > 100:
173 if self.ctlr_switch_availability(switch):
174 status = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800175 if tries % 10 == 0:
176 print('Waiting for test switch %s to be connected to ONOS controller ...' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700177
A.R Karthick88e80b92016-12-05 20:23:45 -0800178 if status != 0:
179 print('Test Switch %s not connected to ONOS container.'
180 'Please remove ONOS container and restart the test' %switch)
181 if self.rm:
182 self.kill()
183 sys.exit(1)
184 else:
185 print('Test Switch %s connected to ONOS container.' %switch)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700186
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700187 if boot_delay:
188 time.sleep(boot_delay)
189
A R Karthick1f03e912016-05-18 11:39:22 -0700190 def setup_intfs(self, port_num = 0):
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700191 tester_intf_subnet = '192.168.100'
192 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800193 switches = self.port_map['switches']
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700194 start_vlan = self.port_map['start_vlan']
A R Karthick07769362016-07-28 17:36:15 -0700195 start_vlan += port_num
196 uplink = self.port_map['uplink']
197 wan = self.port_map['wan']
A.R Karthick88e80b92016-12-05 20:23:45 -0800198 port_list = self.port_map['switch_port_list'] + self.port_map['switch_relay_port_list']
199 for host_intf, ports in port_list:
200 uplink = self.port_map[host_intf]['uplink']
201 for port in ports:
202 guest_if = port
A R Karthickca11f5c2017-01-11 18:01:50 -0800203 local_if = port #'{0}_{1}'.format(guest_if, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800204 guest_ip = '{0}.{1}/24'.format(tester_intf_subnet, port_num+1)
205 ##Use pipeworks to configure container interfaces on host/bridge interfaces
206 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(host_intf, guest_if,
A R Karthick07769362016-07-28 17:36:15 -0700207 local_if, self.name, guest_ip)
A.R Karthick88e80b92016-12-05 20:23:45 -0800208 #if the wan interface is specified for uplink, then use it instead
209 if wan and port == self.port_map[uplink]:
210 pipework_cmd = 'pipework {0} -i {1} -l {2} {3} {4}'.format(wan, guest_if,
211 local_if, self.name, guest_ip)
212 else:
213 if start_vlan != 0:
214 pipework_cmd += ' @{}'.format(start_vlan)
215 start_vlan += 1
216 #print('Running PIPEWORK cmd: %s' %pipework_cmd)
217 res += os.system(pipework_cmd)
218 port_num += 1
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700219
A R Karthick1f03e912016-05-18 11:39:22 -0700220 return res, port_num
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700221
222 @classmethod
A.R Karthick88e80b92016-12-05 20:23:45 -0800223 def get_intf_type(cls, intf):
224 intf_type = 0
225 if os.path.isdir('/sys/class/net/{}/bridge'.format(intf)):
226 intf_type = 1 ##linux bridge
227 else:
228 cmd = 'ovs-vsctl list-br | grep -q "^{0}$"'.format(intf)
229 res = os.system(cmd)
230 if res == 0: ##ovs bridge
231 intf_type = 2
232
233 return intf_type
234
235 @classmethod
A R Karthickb50f5592016-07-26 12:19:29 -0700236 def cleanup_intfs(cls):
237 olt_conf_file = os.path.join(cls.tester_base, 'olt_config.json')
238 olt_config = OltConfig(olt_conf_file)
A R Karthickb03cecd2016-07-27 10:27:55 -0700239 port_map, _ = olt_config.olt_port_map()
A R Karthickb50f5592016-07-26 12:19:29 -0700240 port_num = 0
A R Karthickb50f5592016-07-26 12:19:29 -0700241 start_vlan = port_map['start_vlan']
A R Karthick07769362016-07-28 17:36:15 -0700242 wan = port_map['wan']
A R Karthickb50f5592016-07-26 12:19:29 -0700243 cmds = ()
244 res = 0
A.R Karthick88e80b92016-12-05 20:23:45 -0800245 port_list = port_map['switch_port_list'] + port_map['switch_relay_port_list']
246 for intf_host, ports in port_list:
247 intf_type = cls.get_intf_type(intf_host)
248 for port in ports:
A R Karthickca11f5c2017-01-11 18:01:50 -0800249 local_if = port #'{0}_{1}'.format(port, port_num+1)
A.R Karthick88e80b92016-12-05 20:23:45 -0800250 if intf_type == 0:
251 if start_vlan != 0:
252 cmds = ('ip link del {}.{}'.format(intf_host, start_vlan),)
253 start_vlan += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700254 else:
A.R Karthick88e80b92016-12-05 20:23:45 -0800255 if intf_type == 1:
256 cmds = ('brctl delif {} {}'.format(intf_host, local_if),
257 'ip link del {}'.format(local_if))
258 else:
259 cmds = ('ovs-vsctl del-port {} {}'.format(intf_host, local_if),
260 'ip link del {}'.format(local_if))
A R Karthickb50f5592016-07-26 12:19:29 -0700261
A.R Karthick88e80b92016-12-05 20:23:45 -0800262 for cmd in cmds:
263 res += os.system(cmd)
264 port_num += 1
A R Karthickb50f5592016-07-26 12:19:29 -0700265
266 @classmethod
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700267 def get_name(cls):
268 cnt_name = '/{0}'.format(cls.basename)
269 cnt_name_len = len(cnt_name)
270 names = list(flatten(n['Names'] for n in cls.dckr.containers(all=True)))
271 test_names = filter(lambda n: n.startswith(cnt_name), names)
272 last_cnt_number = 0
273 if test_names:
274 last_cnt_name = reduce(lambda n1, n2: n1 if int(n1[cnt_name_len:]) > \
275 int(n2[cnt_name_len:]) else n2,
276 test_names)
277 last_cnt_number = int(last_cnt_name[cnt_name_len:])
278 test_cnt_name = cls.basename + str(last_cnt_number+1)
279 return test_cnt_name
280
281 @classmethod
282 def build_image(cls, image):
283 print('Building test container docker image %s' %image)
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700284 ovs_version = '2.5.0'
285 image_format = (ovs_version,)*4
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700286 dockerfile = '''
287FROM ubuntu:14.04
288MAINTAINER chetan@ciena.com
A R Karthickc762df42016-05-25 10:09:21 -0700289RUN apt-get update && \
290 apt-get install -y git git-core autoconf automake autotools-dev pkg-config \
291 make gcc g++ libtool libc6-dev cmake libpcap-dev libxerces-c2-dev \
292 unzip libpcre3-dev flex bison libboost-dev \
293 python python-pip python-setuptools python-scapy tcpdump doxygen doxypy wget \
294 openvswitch-common openvswitch-switch \
A R Karthick07608ef2016-08-23 16:51:19 -0700295 python-twisted python-sqlite sqlite3 python-pexpect telnet arping isc-dhcp-server \
296 python-paramiko python-maas-client
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700297RUN easy_install nose
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700298RUN mkdir -p /root/ovs
299WORKDIR /root
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700300RUN wget http://openvswitch.org/releases/openvswitch-{}.tar.gz -O /root/ovs/openvswitch-{}.tar.gz && \
301(cd /root/ovs && tar zxpvf openvswitch-{}.tar.gz && \
302 cd openvswitch-{} && \
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700303 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && make && make install)
304RUN service openvswitch-switch restart || /bin/true
A.R Karthickec5b72a2016-11-03 09:53:07 -0700305RUN 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 -0700306RUN mv /usr/sbin/tcpdump /sbin/
307RUN ln -sf /sbin/tcpdump /usr/sbin/tcpdump
A R Karthickf4999472016-07-01 16:42:13 -0700308RUN mv /usr/sbin/dhcpd /sbin/
309RUN ln -sf /sbin/dhcpd /usr/sbin/dhcpd
A R Karthickb7e80902016-05-17 09:38:31 -0700310WORKDIR /root
311RUN wget -nc http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_2.5.dfsg-2.1_amd64.deb \
312 http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/libbison-dev_2.5.dfsg-2.1_amd64.deb
313RUN sudo dpkg -i bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
314RUN rm bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
315RUN wget -nc http://www.nbee.org/download/nbeesrc-jan-10-2013.zip && \
316 unzip nbeesrc-jan-10-2013.zip && \
317 cd nbeesrc-jan-10-2013/src && cmake . && make && \
318 cp ../bin/libn*.so /usr/local/lib && ldconfig && \
319 cp -R ../include/* /usr/include/
320WORKDIR /root
321RUN git clone https://github.com/CPqD/ofsoftswitch13.git && \
322 cd ofsoftswitch13 && \
A R Karthickb7e80902016-05-17 09:38:31 -0700323 ./boot.sh && \
324 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && \
325 make && make install
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700326CMD ["/bin/bash"]
Chetan Gaonkerb6064fa2016-05-02 16:29:57 -0700327'''.format(*image_format)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700328 super(CordTester, cls).build_image(dockerfile, image)
329 print('Done building docker image %s' %image)
330
A R Karthick1f03e912016-05-18 11:39:22 -0700331 def run_tests(self):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700332 '''Run the list of tests'''
A R Karthick9a5edc42016-08-24 19:10:22 -0700333 res = 0
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000334 print('Modifying scapy tool files before running a test: %s' %self.tests)
335 self.modify_scapy_files_for_specific_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700336 print('Running tests: %s' %self.tests)
337 for t in self.tests:
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700338 test = t.split(':')[0]
A R Karthick24f1de62016-05-12 15:16:38 -0700339 test_file = '{}Test.py'.format(test)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700340 if t.find(':') >= 0:
A R Karthick24f1de62016-05-12 15:16:38 -0700341 test_case = '{0}:{1}'.format(test_file, t.split(':')[1])
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700342 else:
343 test_case = test_file
Chetan Gaonker7142a342016-04-07 14:53:12 -0700344 cmd = 'nosetests -v {0}/src/test/{1}/{2}'.format(self.sandbox, test, test_case)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700345 status = self.execute(cmd, shell = True)
A R Karthick9a5edc42016-08-24 19:10:22 -0700346 if status > 255:
347 status = 1
348 res |= status
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700349 print('Test %s %s' %(test_case, 'Success' if status == 0 else 'Failure'))
350 print('Done running tests')
351 if self.rm:
352 print('Removing test container %s' %self.name)
353 self.kill(remove=True)
354
A R Karthick9a5edc42016-08-24 19:10:22 -0700355 return res
356
Thangavelu K Sef6f0a52016-12-14 19:57:05 +0000357 def modify_scapy_files_for_specific_tests(self):
358 name = self.name
359 container_cmd_exec = Container(name = name, image = 'cord-test/nose')
360 tty = False
361 dckr = Client()
362 cmd = 'cp test/src/test/scapy/fields.py /usr/local/lib/python2.7/dist-packages/scapy/fields.py '
363 i = container_cmd_exec.execute(cmd = cmd, tty= tty, stream = True)
364
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700365 @classmethod
366 def list_tests(cls, tests):
367 print('Listing test cases')
368 for test in tests:
A R Karthick24f1de62016-05-12 15:16:38 -0700369 test_file = '{}Test.py'.format(test)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700370 cmd = 'nosetests -v --collect-only {0}/../{1}/{2}'.format(cls.tester_base, test, test_file)
371 os.system(cmd)
372
A R Karthicka013a272016-08-16 16:40:19 -0700373
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700374##default onos/radius/test container images and names
375onos_image_default='onosproject/onos:latest'
A R Karthick07608ef2016-08-23 16:51:19 -0700376nose_image_default= '{}:candidate'.format(CordTester.IMAGE)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700377test_type_default='dhcp'
A.R Karthick95d044e2016-06-10 18:44:36 -0700378onos_app_version = '2.0-SNAPSHOT'
Chetan Gaonker4d842ad2016-04-26 10:04:24 -0700379cord_tester_base = os.path.dirname(os.path.realpath(__file__))
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -0700380onos_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 -0700381cord_test_server_address = '{}:{}'.format(CORD_TEST_HOST, CORD_TEST_PORT)
A R Karthick07608ef2016-08-23 16:51:19 -0700382identity_file_default = '/etc/maas/ansible/id_rsa'
A R Karthicke14fc022016-12-08 14:50:29 -0800383onos_log_level = 'INFO'
A R Karthick07608ef2016-08-23 16:51:19 -0700384
385##sets up the ssh key file for the test container
386def set_ssh_key_file(identity_file):
387 ssh_key_file = None
388 if os.access(identity_file, os.F_OK):
389 ##copy it to setup directory
390 identity_dest = os.path.join(CordTester.tester_base, 'id_rsa')
391 if os.path.abspath(identity_file) != identity_dest:
392 try:
393 shutil.copy(identity_file, identity_dest)
394 ssh_key_file = os.path.join(CordTester.sandbox_setup, 'id_rsa')
395 except: pass
396
397 return ssh_key_file
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700398
399def runTest(args):
Chetan Gaonker823cdc52016-05-09 15:51:23 -0700400 #Start the cord test tcp server
A.R Karthickb17e2022017-01-27 11:29:26 -0800401 test_manifest = TestManifest(args = args)
402 test_server_params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -0700403 test_host = test_server_params[0]
404 test_port = CORD_TEST_PORT
405 if len(test_server_params) > 1:
406 test_port = int(test_server_params[1])
A R Karthick81acbff2016-06-17 14:45:16 -0700407
A R Karthick1f03e912016-05-18 11:39:22 -0700408 test_containers = []
409 #These tests end up restarting ONOS/quagga/radius
A R Karthick4e0c0912016-08-17 16:57:42 -0700410 tests_exempt = ('vrouter', 'cordSubscriber', 'proxyarp', 'dhcprelay')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700411 if args.test_type.lower() == 'all':
412 tests = CordTester.ALL_TESTS
Chetan Gaonker503032a2016-05-12 12:06:29 -0700413 args.quagga = True
414 else:
A R Karthickacae3b42016-05-12 15:27:24 -0700415 tests = args.test_type.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700416
A R Karthick1f03e912016-05-18 11:39:22 -0700417 tests_parallel = [ t for t in tests if t.split(':')[0] not in tests_exempt ]
418 tests_not_parallel = [ t for t in tests if t.split(':')[0] in tests_exempt ]
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700419 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -0700420 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
Chetan Gaonker503032a2016-05-12 12:06:29 -0700421 update_map = { 'quagga' : False, 'test' : False, 'radius' : False }
422 update_map[args.update.lower()] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700423
Chetan Gaonker503032a2016-05-12 12:06:29 -0700424 if args.update.lower() == 'all':
425 for c in update_map.keys():
426 update_map[c] = True
A.R Karthick95d044e2016-06-10 18:44:36 -0700427
A R Karthick07608ef2016-08-23 16:51:19 -0700428 use_manifest = False
429 if args.manifest:
430 if os.access(args.manifest, os.F_OK):
431 ##copy it to setup directory
432 dest = os.path.join(CordTester.tester_base, 'manifest.json')
433 if os.path.abspath(args.manifest) != dest:
434 try:
435 shutil.copy(args.manifest, dest)
436 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -0800437 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -0700438 use_manifest = True
439 else:
440 print('Unable to access test manifest: %s' %args.manifest)
Chetan Gaonkerfb3cb5e2016-05-06 11:55:44 -0700441
A R Karthick65d950d2016-12-19 19:41:55 -0800442 onos_ip = test_manifest.onos_ip
443 radius_ip = test_manifest.radius_ip
444 head_node = test_manifest.head_node
A R Karthick5af23712017-01-20 09:49:24 -0800445 iterations = test_manifest.iterations
A.R Karthick263d3fc2017-01-27 12:52:53 -0800446 onos_cord_loc = test_manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -0800447 service_profile = test_manifest.service_profile
448 synchronizer = test_manifest.synchronizer
449 onos_cord = None
A.R Karthick263d3fc2017-01-27 12:52:53 -0800450 if onos_cord_loc:
451 if onos_cord_loc.find(os.path.sep) < 0:
452 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
A.R Karthickf184b342017-01-27 19:30:50 -0800453 if not os.access(onos_cord_loc, os.F_OK):
454 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
455 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800456 if not onos_ip:
457 ##Unexpected case. Specify the external controller ip when running on cord node
458 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
459 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800460 if not service_profile:
461 print('Specify service profile location for the ONOS cord instance. Eg: $HOME/service-profile/cord-pod')
462 sys.exit(1)
463 if not synchronizer:
464 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
465 sys.exit(1)
466 if not os.access(service_profile, os.F_OK):
467 print('Service profile location for ONOS cord instance does not exist')
468 sys.exit(1)
469 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800470
471 try:
472 test_server = cord_test_server_start(daemonize = False, cord_test_host = test_host, cord_test_port = test_port,
473 onos_cord = onos_cord)
474 except:
475 ##Most likely a server instance is already running (daemonized earlier)
476 test_server = None
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700477
A R Karthick65d950d2016-12-19 19:41:55 -0800478 Container.IMAGE_PREFIX = test_manifest.image_prefix
479 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -0800480 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -0800481 cluster_mode = True if test_manifest.onos_instances > 1 else False
482 async_mode = cluster_mode and test_manifest.async_mode
483 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
484 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A.R Karthickc4e474d2016-12-12 15:24:57 -0800485 onos_ips = []
A R Karthick65d950d2016-12-19 19:41:55 -0800486 if cluster_mode is True and len(existing_list) > 1:
487 ##don't setup cluster config again
488 cluster_mode = False
A R Karthick07608ef2016-08-23 16:51:19 -0700489 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -0800490 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -0700491 onos_cnt['image'] = image_names[0]
492 if len(image_names) > 1:
493 if image_names[1].find('/') < 0:
494 onos_cnt['tag'] = image_names[1]
495 else:
496 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -0800497 onos_cnt['image'] = test_manifest.onos_image
A R Karthick07608ef2016-08-23 16:51:19 -0700498
499 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -0800500 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -0700501 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -0800502 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthick07608ef2016-08-23 16:51:19 -0700503 onos = Onos(image = Onos.IMAGE,
A.R Karthickc4e474d2016-12-12 15:24:57 -0800504 tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800505 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800506 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -0800507 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800508 else:
509 onos_ips.append(onos_ip)
510
A R Karthick65d950d2016-12-19 19:41:55 -0800511 num_onos_instances = test_manifest.onos_instances
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700512 if num_onos_instances > 1 and onos is not None:
513 onos_instances = []
514 onos_instances.append(onos)
515 for i in range(1, num_onos_instances):
516 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -0800517 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800518 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -0800519 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -0800520 data_volume = data_volume, async = async_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800521 quagga_config = quagga_config, network = test_manifest.docker_network)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700522 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800523 if onos.running:
524 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800525 if async_mode is True and cluster_mode is True:
A.R Karthickc4e474d2016-12-12 15:24:57 -0800526 Onos.start_cluster_async(onos_instances)
527 if not onos_ips:
528 for onos in onos_instances:
529 onos_ips.append(onos.ipaddr)
A R Karthick65d950d2016-12-19 19:41:55 -0800530 if cluster_mode is True:
531 try:
532 for ip in onos_ips:
533 print('Installing cord tester ONOS app %s in ONOS instance %s' %(args.app,ip))
534 OnosCtrl.install_app(args.app, onos_ip = ip)
535 except: pass
A R Karthick1ef70552016-11-17 17:33:36 -0800536 if setup_cluster is True:
537 Onos.setup_cluster(onos_instances)
538 else:
539 print('ONOS instances already running. Skipping ONOS form cluster for %d instances' %num_onos_instances)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700540 ctlr_addr = ','.join(onos_ips)
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700541
A R Karthick65d950d2016-12-19 19:41:55 -0800542 print('Controller IP %s, Test type %s' %(onos_ips, args.test_type))
543 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -0700544 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -0700545 try:
546 Onos.install_cord_apps(onos_ip = onos_ip)
547 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700548
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700549 if not cluster_mode:
550 print('Installing cord tester ONOS app %s' %args.app)
551 try:
552 for ip in onos_ips:
A R Karthick65d950d2016-12-19 19:41:55 -0800553 OnosCtrl.install_app(args.app, onos_ip = ip)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700554 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700555
556 if radius_ip is None:
A R Karthicka661b552016-05-25 10:18:50 -0700557 ##Start Radius container
A R Karthick85eb1862017-01-23 16:10:57 -0800558 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
559 network = test_manifest.docker_network)
A R Karthick75844572017-01-23 16:57:44 -0800560 radius_ip = radius.ip(network = test_manifest.docker_network)
A.R Karthick95d044e2016-06-10 18:44:36 -0700561
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700562 print('Radius server running with IP %s' %radius_ip)
A.R Karthick95d044e2016-06-10 18:44:36 -0700563
Chetan Gaonkerb84835f2016-04-19 15:12:10 -0700564 if args.quagga == True:
565 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -0800566 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
567 network = test_manifest.docker_network)
A R Karthick81acbff2016-06-17 14:45:16 -0700568
A R Karthick07608ef2016-08-23 16:51:19 -0700569 try:
570 maas_api_key = FabricMAAS.get_api_key()
571 except:
572 maas_api_key = 'UNKNOWN'
573
574 ssh_key_file = set_ssh_key_file(args.identity_file)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700575 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
Chetan Gaonkerc170f3f2016-04-19 17:24:45 -0700576 'ONOS_AAA_IP' : radius_ip if radius_ip is not None else '',
A R Karthick8d03cc52016-06-28 14:51:59 -0700577 'QUAGGA_IP': test_host,
A R Karthick81acbff2016-06-17 14:45:16 -0700578 'CORD_TEST_HOST' : test_host,
579 'CORD_TEST_PORT' : test_port,
A R Karthick65d950d2016-12-19 19:41:55 -0800580 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
581 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -0700582 'MANIFEST': int(use_manifest),
583 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
584 'MAAS_API_KEY': maas_api_key
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700585 }
A R Karthick07608ef2016-08-23 16:51:19 -0700586
587 if ssh_key_file:
588 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
589
A R Karthick65d950d2016-12-19 19:41:55 -0800590 if test_manifest.olt:
Chetan Gaonker7142a342016-04-07 14:53:12 -0700591 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, 'olt_config.json')
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700592 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
593
A R Karthick5af23712017-01-20 09:49:24 -0800594 if iterations is not None:
595 test_cnt_env['ITERATIONS'] = iterations
596
A R Karthicka013a272016-08-16 16:40:19 -0700597 if args.num_containers > 1 and args.container:
598 print('Cannot specify number of containers with container option')
599 sys.exit(1)
600 if args.container:
601 args.keep = True
A R Karthick1f03e912016-05-18 11:39:22 -0700602 port_num = 0
603 num_tests = len(tests_parallel)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700604 if num_tests > 0 and num_tests < args.num_containers:
605 tests_parallel *= args.num_containers/num_tests
606 num_tests = len(tests_parallel)
A R Karthick1f03e912016-05-18 11:39:22 -0700607 tests_per_container = max(1, num_tests/args.num_containers)
608 test_slice_start = 0
609 test_slice_end = test_slice_start + tests_per_container
610 num_test_containers = min(num_tests, args.num_containers)
611 if tests_parallel:
612 print('Running %s tests across %d containers in parallel' %(tests_parallel, num_test_containers))
613 for container in range(num_test_containers):
614 test_cnt = CordTester(tests_parallel[test_slice_start:test_slice_end],
615 instance = container, num_instances = num_test_containers,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700616 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -0700617 name = args.container,
618 image = nose_cnt['image'],
619 prefix = Container.IMAGE_PREFIX,
620 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -0700621 env = test_cnt_env,
622 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -0800623 update = update_map['test'],
624 network = test_manifest.docker_network)
A R Karthick1f03e912016-05-18 11:39:22 -0700625 test_slice_start = test_slice_end
626 test_slice_end = test_slice_start + tests_per_container
627 update_map['test'] = False
628 test_containers.append(test_cnt)
A R Karthicka013a272016-08-16 16:40:19 -0700629 if not test_cnt.create:
630 continue
A R Karthick65d950d2016-12-19 19:41:55 -0800631 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick07608ef2016-08-23 16:51:19 -0700632 if not args.no_switch:
633 test_cnt.start_switch()
A R Karthicka013a272016-08-16 16:40:19 -0700634 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -0700635 _, port_num = test_cnt.setup_intfs(port_num = port_num)
636
A R Karthick9a5edc42016-08-24 19:10:22 -0700637 status = 0
638 if len(test_containers) > 1:
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700639 if True:
640 status = test_containers[0].run_tests()
641 else:
642 thread_pool = ThreadPool(len(test_containers), queue_size = 1, wait_timeout=1)
643 for test_cnt in test_containers:
644 thread_pool.addTask(test_cnt.run_tests)
645 thread_pool.cleanUpThreads()
A R Karthick9a5edc42016-08-24 19:10:22 -0700646 else:
A R Karthickcee37412016-08-29 10:10:56 -0700647 if test_containers:
648 status = test_containers[0].run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700649
650 ##Run the linear tests
651 if tests_not_parallel:
652 test_cnt = CordTester(tests_not_parallel,
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700653 ctlr_ip = ctlr_addr,
A R Karthick07608ef2016-08-23 16:51:19 -0700654 name = args.container,
655 image = nose_cnt['image'],
656 prefix = Container.IMAGE_PREFIX,
657 tag = nose_cnt['tag'],
A R Karthick1f03e912016-05-18 11:39:22 -0700658 env = test_cnt_env,
659 rm = False if args.keep else True,
A R Karthick85eb1862017-01-23 16:10:57 -0800660 update = update_map['test'],
661 network = test_manifest.docker_network)
A R Karthick65d950d2016-12-19 19:41:55 -0800662 if test_cnt.create and (test_manifest.start_switch or not test_manifest.olt):
A R Karthick36cfcef2016-08-18 15:20:07 -0700663 #For non parallel tests, we just restart the switch also for OLT's
664 CordTester.switch_on_olt = False
A R Karthick07608ef2016-08-23 16:51:19 -0700665 if not args.no_switch:
666 test_cnt.start_switch()
A R Karthicka013a272016-08-16 16:40:19 -0700667 if test_cnt.create and test_cnt.olt:
A R Karthick1f03e912016-05-18 11:39:22 -0700668 test_cnt.setup_intfs(port_num = port_num)
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -0700669 test_cnt.run_tests()
A R Karthick1f03e912016-05-18 11:39:22 -0700670
A R Karthick81acbff2016-06-17 14:45:16 -0700671 if test_server:
A.R Karthickf184b342017-01-27 19:30:50 -0800672 if onos_cord:
673 onos_cord.restore()
A R Karthick81acbff2016-06-17 14:45:16 -0700674 cord_test_server_stop(test_server)
675
A R Karthick9a5edc42016-08-24 19:10:22 -0700676 return status
677
A R Karthick81acbff2016-06-17 14:45:16 -0700678##Starts onos/radius/quagga containers as appropriate
679def setupCordTester(args):
680 onos_cnt = {'tag':'latest'}
A R Karthick07608ef2016-08-23 16:51:19 -0700681 nose_cnt = {'image': CordTester.IMAGE, 'tag': 'candidate'}
A R Karthick92a0e5a2016-06-22 17:11:05 -0700682 update_map = { 'quagga' : False, 'radius' : False, 'test': False }
A R Karthick81acbff2016-06-17 14:45:16 -0700683 update_map[args.update.lower()] = True
A R Karthick65d950d2016-12-19 19:41:55 -0800684 test_manifest = TestManifest(args = args)
685
A R Karthick81acbff2016-06-17 14:45:16 -0700686 if args.update.lower() == 'all':
687 for c in update_map.keys():
688 update_map[c] = True
689
A R Karthick07608ef2016-08-23 16:51:19 -0700690 use_manifest = False
691 if args.manifest:
692 if os.access(args.manifest, os.F_OK):
693 ##copy it to setup directory
694 dest = os.path.join(CordTester.tester_base, 'manifest.json')
695 if os.path.abspath(args.manifest) != dest:
696 try:
697 shutil.copy(args.manifest, dest)
698 except: pass
A R Karthick65d950d2016-12-19 19:41:55 -0800699 test_manifest = TestManifest(manifest = dest)
A R Karthick07608ef2016-08-23 16:51:19 -0700700 use_manifest = True
701
A.R Karthickf184b342017-01-27 19:30:50 -0800702 onos_ip = test_manifest.onos_ip
703 radius_ip = test_manifest.radius_ip
704 head_node = test_manifest.head_node
705 iterations = test_manifest.iterations
706 service_profile = test_manifest.service_profile
707 synchronizer = test_manifest.synchronizer
708 onos_cord = None
A.R Karthick263d3fc2017-01-27 12:52:53 -0800709 onos_cord_loc = test_manifest.onos_cord
710 if onos_cord_loc:
711 if onos_cord_loc.find(os.path.sep) < 0:
712 onos_cord_loc = os.path.join(os.getenv('HOME'), onos_cord_loc)
713 if not os.access(onos_cord_loc, os.F_OK):
714 print('ONOS cord config location %s is not accessible' %onos_cord_loc)
715 sys.exit(1)
A.R Karthick263d3fc2017-01-27 12:52:53 -0800716 if not onos_ip:
A R Karthickd44cea12016-07-20 12:16:41 -0700717 ##Unexpected case. Specify the external controller ip when running on cord node
718 print('Specify ONOS ip using \"-e\" option when running the cord-tester on cord node')
719 sys.exit(1)
A.R Karthickf184b342017-01-27 19:30:50 -0800720 if not service_profile:
721 print('Specify service profile location for the ONOS cord instance. Eg: $HOME/service-profile/cord-pod')
722 sys.exit(1)
723 if not synchronizer:
724 print('Specify synchronizer to use for the ONOS cord instance. Eg: vtn, fabric, cord')
725 sys.exit(1)
726 if not os.access(service_profile, os.F_OK):
727 print('Service profile location for ONOS cord instance does not exist')
728 sys.exit(1)
729 onos_cord = OnosCord(onos_ip, onos_cord_loc, service_profile, synchronizer)
A R Karthickd44cea12016-07-20 12:16:41 -0700730
A R Karthick65d950d2016-12-19 19:41:55 -0800731 Container.IMAGE_PREFIX = test_manifest.image_prefix
A R Karthick81acbff2016-06-17 14:45:16 -0700732 #don't spawn onos if the user had started it externally
A R Karthick65d950d2016-12-19 19:41:55 -0800733 image_names = test_manifest.onos_image.rsplit(':', 1)
A R Karthick07608ef2016-08-23 16:51:19 -0700734 onos_cnt['image'] = image_names[0]
735 if len(image_names) > 1:
736 if image_names[1].find('/') < 0:
737 onos_cnt['tag'] = image_names[1]
738 else:
739 #tag cannot have slashes
A R Karthick65d950d2016-12-19 19:41:55 -0800740 onos_cnt['image'] = test_manifest.onos_image
A R Karthick81acbff2016-06-17 14:45:16 -0700741
A R Karthick07608ef2016-08-23 16:51:19 -0700742 Onos.IMAGE = onos_cnt['image']
A R Karthick65d950d2016-12-19 19:41:55 -0800743 Onos.PREFIX = test_manifest.image_prefix
A R Karthick07608ef2016-08-23 16:51:19 -0700744 Onos.TAG = onos_cnt['tag']
A R Karthick65d950d2016-12-19 19:41:55 -0800745 Onos.MAX_INSTANCES = test_manifest.onos_instances
A R Karthickc69d73e2017-01-20 11:44:34 -0800746 Onos.JVM_HEAP_SIZE = test_manifest.jvm_heap_size
A R Karthick65d950d2016-12-19 19:41:55 -0800747 cluster_mode = True if test_manifest.onos_instances > 1 else False
748 async_mode = cluster_mode and test_manifest.async_mode
749 existing_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == test_manifest.onos_image ]
750 setup_cluster = False if len(existing_list) == test_manifest.onos_instances else True
A R Karthickc41c2422016-12-09 10:59:19 -0800751 #cleanup existing volumes before forming a new cluster
752 if setup_cluster is True:
753 print('Cleaning up existing cluster volumes')
754 data_dir = os.path.join(Onos.setup_dir, 'cord-onos*-data')
755 try:
756 os.system('rm -rf {}'.format(data_dir))
757 except: pass
758
A R Karthick2b93d6a2016-09-06 15:19:09 -0700759 onos = None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800760 onos_ips = []
A R Karthick81acbff2016-06-17 14:45:16 -0700761 if onos_ip is None:
A R Karthick65d950d2016-12-19 19:41:55 -0800762 data_volume = '{}-data'.format(Onos.NAME) if test_manifest.shared_volume else None
A R Karthickec2db322016-11-17 15:06:01 -0800763 onos = Onos(image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800764 data_volume = data_volume, async = async_mode, network = test_manifest.docker_network)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800765 if onos.running:
A R Karthick65d950d2016-12-19 19:41:55 -0800766 onos_ips.append(onos.ipaddr)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800767 else:
768 onos_ips.append(onos_ip)
A R Karthick81acbff2016-06-17 14:45:16 -0700769
A R Karthick65d950d2016-12-19 19:41:55 -0800770 num_onos_instances = test_manifest.onos_instances
A R Karthick2b93d6a2016-09-06 15:19:09 -0700771 if num_onos_instances > 1 and onos is not None:
772 onos_instances = []
773 onos_instances.append(onos)
774 for i in range(1, num_onos_instances):
775 name = '{}-{}'.format(Onos.NAME, i+1)
A R Karthick65d950d2016-12-19 19:41:55 -0800776 data_volume = '{}-data'.format(name) if test_manifest.shared_volume else None
A.R Karthickc4e474d2016-12-12 15:24:57 -0800777 quagga_config = Onos.get_quagga_config(i)
A R Karthickec2db322016-11-17 15:06:01 -0800778 onos = Onos(name = name, image = Onos.IMAGE, tag = Onos.TAG, boot_delay = 60, cluster = cluster_mode,
A R Karthick3b811152016-12-15 10:24:24 -0800779 data_volume = data_volume, async = async_mode,
A R Karthick85eb1862017-01-23 16:10:57 -0800780 quagga_config = quagga_config, network = test_manifest.docker_network)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700781 onos_instances.append(onos)
A.R Karthickc4e474d2016-12-12 15:24:57 -0800782 if onos.running:
783 onos_ips.append(onos.ipaddr)
784 if async_mode is True:
785 Onos.start_cluster_async(onos_instances)
786 if not onos_ips:
787 for onos in onos_instances:
788 onos_ips.append(onos.ipaddr)
A R Karthick51e6fd82016-11-22 14:39:19 -0800789 if setup_cluster is True:
790 Onos.setup_cluster(onos_instances)
A R Karthick2b93d6a2016-09-06 15:19:09 -0700791
792 ctlr_addr = ','.join(onos_ips)
793 print('Onos IP %s' %ctlr_addr)
A R Karthick65d950d2016-12-19 19:41:55 -0800794 if onos_ip is not None:
A R Karthickbd9b8a32016-07-21 09:56:45 -0700795 print('Installing ONOS cord apps')
A R Karthick07608ef2016-08-23 16:51:19 -0700796 try:
797 Onos.install_cord_apps(onos_ip = onos_ip)
798 except: pass
A R Karthickbd9b8a32016-07-21 09:56:45 -0700799
A R Karthickedab01c2016-09-08 14:05:44 -0700800 print('Installing cord tester ONOS app %s' %args.app)
A R Karthick07608ef2016-08-23 16:51:19 -0700801 try:
A R Karthick2b93d6a2016-09-06 15:19:09 -0700802 for ip in onos_ips:
803 OnosCtrl.install_app(args.app, onos_ip = ip)
A R Karthick07608ef2016-08-23 16:51:19 -0700804 except: pass
A R Karthickeaf1c4e2016-07-19 12:22:35 -0700805
A R Karthick81acbff2016-06-17 14:45:16 -0700806 ##Start Radius container if not started
807 if radius_ip is None:
A R Karthick85eb1862017-01-23 16:10:57 -0800808 radius = Radius(prefix = Container.IMAGE_PREFIX, update = update_map['radius'],
809 network = test_manifest.docker_network)
A R Karthick75844572017-01-23 16:57:44 -0800810 radius_ip = radius.ip(network = test_manifest.docker_network)
A R Karthick81acbff2016-06-17 14:45:16 -0700811
812 print('Radius server running with IP %s' %radius_ip)
A R Karthick81acbff2016-06-17 14:45:16 -0700813
814 if args.quagga == True:
815 #Start quagga. Builds container if required
A R Karthick85eb1862017-01-23 16:10:57 -0800816 quagga = Quagga(prefix = Container.IMAGE_PREFIX, update = update_map['quagga'],
817 network = test_manifest.docker_network)
A R Karthick8d03cc52016-06-28 14:51:59 -0700818 print('Quagga started')
A R Karthick81acbff2016-06-17 14:45:16 -0700819
A.R Karthickb17e2022017-01-27 11:29:26 -0800820 params = test_manifest.server.split(':')
A R Karthick81acbff2016-06-17 14:45:16 -0700821 ip = params[0]
822 port = CORD_TEST_PORT
823 if len(params) > 1:
824 port = int(params[1])
A R Karthick92a0e5a2016-06-22 17:11:05 -0700825
A R Karthick07608ef2016-08-23 16:51:19 -0700826 try:
827 maas_api_key = FabricMAAS.get_api_key()
828 except:
829 maas_api_key = 'UNKNOWN'
830
831 ssh_key_file = set_ssh_key_file(args.identity_file)
832
A R Karthick92a0e5a2016-06-22 17:11:05 -0700833 #provision the test container
834 if not args.dont_provision:
A R Karthick2b93d6a2016-09-06 15:19:09 -0700835 test_cnt_env = { 'ONOS_CONTROLLER_IP' : ctlr_addr,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700836 'ONOS_AAA_IP' : radius_ip,
A R Karthick8d03cc52016-06-28 14:51:59 -0700837 'QUAGGA_IP': ip,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700838 'CORD_TEST_HOST' : ip,
839 'CORD_TEST_PORT' : port,
A R Karthick65d950d2016-12-19 19:41:55 -0800840 'ONOS_RESTART' : 0 if test_manifest.olt and args.test_controller else 1,
841 'LOG_LEVEL': test_manifest.log_level,
A R Karthick07608ef2016-08-23 16:51:19 -0700842 'MANIFEST': int(use_manifest),
843 'HEAD_NODE': head_node if head_node else CORD_TEST_HOST,
844 'MAAS_API_KEY': maas_api_key
A R Karthick92a0e5a2016-06-22 17:11:05 -0700845 }
A R Karthick07608ef2016-08-23 16:51:19 -0700846
847 if ssh_key_file:
848 test_cnt_env['SSH_KEY_FILE'] = ssh_key_file
A R Karthick65d950d2016-12-19 19:41:55 -0800849 if test_manifest.olt:
A R Karthick92a0e5a2016-06-22 17:11:05 -0700850 olt_conf_test_loc = os.path.join(CordTester.sandbox_setup, 'olt_config.json')
851 test_cnt_env['OLT_CONFIG'] = olt_conf_test_loc
A R Karthick5af23712017-01-20 09:49:24 -0800852 if test_manifest.iterations is not None:
853 test_cnt_env['ITERATIONS'] = iterations
A R Karthick92a0e5a2016-06-22 17:11:05 -0700854 test_cnt = CordTester((),
A R Karthick2b93d6a2016-09-06 15:19:09 -0700855 ctlr_ip = ctlr_addr,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700856 image = nose_cnt['image'],
A R Karthick07608ef2016-08-23 16:51:19 -0700857 prefix = Container.IMAGE_PREFIX,
A R Karthick92a0e5a2016-06-22 17:11:05 -0700858 tag = nose_cnt['tag'],
859 env = test_cnt_env,
860 rm = False,
A R Karthick85eb1862017-01-23 16:10:57 -0800861 update = update_map['test'],
862 network = test_manifest.docker_network)
A R Karthick92a0e5a2016-06-22 17:11:05 -0700863
A R Karthick65d950d2016-12-19 19:41:55 -0800864 if test_manifest.start_switch or not test_manifest.olt:
A R Karthick92a0e5a2016-06-22 17:11:05 -0700865 test_cnt.start_switch()
866 if test_cnt.olt:
867 test_cnt.setup_intfs(port_num = 0)
868 print('Test container %s started and provisioned to run tests using nosetests' %(test_cnt.name))
869
870 #Finally start the test server and daemonize
A R Karthick14118c62016-07-27 14:54:04 -0700871 try:
A R Karthickbd82f362016-11-10 15:08:52 -0800872 cord_test_server_start(daemonize = not args.foreground, cord_test_host = ip, cord_test_port = port,
873 onos_cord = onos_cord, foreground = args.foreground)
A R Karthick14118c62016-07-27 14:54:04 -0700874 except socket.error, e:
875 #the test agent address could be remote or already running. Exit gracefully
876 sys.exit(0)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700877
A R Karthick9a5edc42016-08-24 19:10:22 -0700878 return 0
879
Chetan Gaonker503032a2016-05-12 12:06:29 -0700880def cleanupTests(args):
A R Karthick757eb4d2017-01-09 14:51:16 -0800881 if args.manifest and os.access(args.manifest, os.F_OK):
882 manifest = TestManifest(manifest = args.manifest)
883 args.prefix = manifest.image_prefix
884 args.olt = manifest.olt
885 args.onos = manifest.onos_image
886 args.server = manifest.server
A.R Karthickb17e2022017-01-27 11:29:26 -0800887 args.onos_ip = manifest.onos_ip
888 args.radius_ip = manifest.radius_ip
889 args.onos_cord = manifest.onos_cord
A.R Karthickf184b342017-01-27 19:30:50 -0800890 args.service_profile = manifest.service_profile
891 args.synchronizer = manifest.synchronizer
A.R Karthickb17e2022017-01-27 11:29:26 -0800892 else:
893 args.onos_ip = None
894 args.radius_ip = None
895 if args.test_controller:
896 ips = args.test_controller.split('/')
897 args.onos_ip = ips[0]
898 if len(ips) > 1:
899 args.radius_ip = ips[1]
A R Karthick757eb4d2017-01-09 14:51:16 -0800900
A R Karthick2b93d6a2016-09-06 15:19:09 -0700901 image_name = args.onos
A R Karthick07608ef2016-08-23 16:51:19 -0700902 prefix = args.prefix
903 if prefix:
904 prefix += '/'
905 test_container = '{}{}:candidate'.format(prefix, CordTester.IMAGE)
Chetan Gaonker503032a2016-05-12 12:06:29 -0700906 print('Cleaning up Test containers ...')
907 Container.cleanup(test_container)
A R Karthickb50f5592016-07-26 12:19:29 -0700908 if args.olt:
909 print('Cleaning up test container OLT configuration')
910 CordTester.cleanup_intfs()
A R Karthick2b93d6a2016-09-06 15:19:09 -0700911
912 onos_list = [ c['Names'][0][1:] for c in Container.dckr.containers() if c['Image'] == image_name ]
913 if len(onos_list) > 1:
914 for onos in onos_list:
915 Container.dckr.kill(onos)
916 Container.dckr.remove_container(onos, force=True)
A R Karthickec2db322016-11-17 15:06:01 -0800917 for index in range(len(onos_list)):
918 volume = '{}-data'.format(Onos.NAME) if index == 0 else '{}-{}-data'.format(Onos.NAME, index+1)
919 Onos.remove_data_map(volume, Onos.guest_data_dir)
A R Karthick9d48c652016-09-15 09:16:36 -0700920 Onos.cleanup_runtime()
A R Karthickec2db322016-11-17 15:06:01 -0800921
A.R Karthickb17e2022017-01-27 11:29:26 -0800922 if args.onos_cord:
A.R Karthickf184b342017-01-27 19:30:50 -0800923 #try restoring the onos cord instance
924 try:
925 onos_cord = OnosCord(args.onos_ip, args.onos_cord, args.service_profile, args.synchronizer, start = False)
926 onos_cord.restore(force = True)
927 except Exception as e:
928 print(e)
A.R Karthickb17e2022017-01-27 11:29:26 -0800929
A.R Karthick842f0122016-09-28 14:48:47 -0700930 if args.xos:
931 ##cleanup XOS images
932 xos_images = ( '{}:{}'.format(XosServer.IMAGE,XosServer.TAG),
933 '{}:{}'.format(XosSynchronizerOpenstack.IMAGE,
934 XosSynchronizerOpenstack.TAG),
935 '{}:{}'.format(XosSynchronizerOnboarding.IMAGE,
936 XosSynchronizerOnboarding.TAG),
937 '{}:{}'.format(XosSynchronizerOpenvpn.IMAGE,
938 XosSynchronizerOpenvpn.TAG),
939 '{}:{}'.format(XosPostgresql.IMAGE,
940 XosPostgresql.TAG),
941 '{}:{}'.format(XosSyndicateMs.IMAGE,
942 XosSyndicateMs.TAG),
943 )
944 for img in xos_images:
945 print('Cleaning up XOS image: %s' %img)
946 Container.cleanup(img)
947
A R Karthicke99ab5c2016-09-30 13:59:57 -0700948 server_params = args.server.split(':')
949 server_host = server_params[0]
950 server_port = CORD_TEST_PORT
951 if len(server_params) > 1:
952 server_port = int(server_params[1])
953 cord_test_server_shutdown(server_host, server_port)
A R Karthick9a5edc42016-08-24 19:10:22 -0700954 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -0700955
956def listTests(args):
957 if args.test == 'all':
958 tests = CordTester.ALL_TESTS
959 else:
A R Karthickacae3b42016-05-12 15:27:24 -0700960 tests = args.test.split('-')
Chetan Gaonker503032a2016-05-12 12:06:29 -0700961 CordTester.list_tests(tests)
A R Karthickcee37412016-08-29 10:10:56 -0700962 return 0
ChetanGaonkereadad482016-08-26 01:21:47 -0700963
964def getMetrics(args):
A R Karthickcee37412016-08-29 10:10:56 -0700965 try:
966 detail = c.inspect_container(args.container)
967 except:
968 print('Unknown container %s' %args.container)
969 return 0
970 user_hz = os.sysconf(os.sysconf_names['SC_CLK_TCK'])
ChetanGaonkereadad482016-08-26 01:21:47 -0700971 state = detail["State"]
972 if bool(state["Paused"]):
973 print("Container is in Paused State")
974 elif bool(state["Running"]):
975 print("Container is in Running State")
976 elif int(state["ExitCode"]) == 0:
977 print("Container is in Stopped State")
978 else:
979 print("Container is in Crashed State")
980
A R Karthickcee37412016-08-29 10:10:56 -0700981 print("Ip Address of the container: " +detail['NetworkSettings']['IPAddress'])
ChetanGaonkereadad482016-08-26 01:21:47 -0700982
983 if bool(detail["State"]["Running"]):
984 container_id = detail['Id']
985 cpu_usage = {}
A R Karthickcee37412016-08-29 10:10:56 -0700986 cur_usage = 0
987 last_usage = 0
988 for i in range(2):
989 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
990 for line in f:
991 m = re.search(r"(system|user)\s+(\d+)", line)
992 if m:
993 cpu_usage[m.group(1)] = int(m.group(2))
994 cpu = cpu_usage["system"] + cpu_usage["user"]
995 last_usage = cur_usage
996 cur_usage = cpu
997 time.sleep(1)
998 cpu_percent = (cur_usage - last_usage)*100.0/user_hz
999 print("CPU Usage: %.2f %%" %(cpu_percent))
ChetanGaonkereadad482016-08-26 01:21:47 -07001000 else:
1001 print(0)
1002
1003 if bool(detail["State"]["Running"]):
1004 container_id = detail['Id']
A R Karthickcee37412016-08-29 10:10:56 -07001005 print("Docker Port Info:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001006 cmd = "sudo docker port {}".format(container_id)
1007 os.system(cmd)
1008
1009 if bool(detail["State"]["Running"]):
1010 container_id = detail['Id']
1011 with open('/sys/fs/cgroup/memory/docker/' + container_id + '/memory.stat', 'r') as f:
1012 for line in f:
1013 m = re.search(r"total_rss\s+(\d+)", line)
1014 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001015 mem = int(m.group(1))
1016 print("Memory: %s KB "%(mem/1024.0))
ChetanGaonkereadad482016-08-26 01:21:47 -07001017 o = re.search(r"usage\s+(\d+)", line)
1018 if o:
A R Karthickcee37412016-08-29 10:10:56 -07001019 print("Usage: %s "%(o.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001020 p = re.search(r"max_usage\s+(\d+)", line)
1021 if p:
A R Karthickcee37412016-08-29 10:10:56 -07001022 print("Max Usage: %s "%(p.group(1)))
ChetanGaonkereadad482016-08-26 01:21:47 -07001023
1024 if bool(detail["State"]["Running"]):
1025 container_id = detail['Id']
1026 with open('/sys/fs/cgroup/cpuacct/docker/' + container_id + '/cpuacct.stat', 'r') as f:
1027 for line in f:
1028 m = re.search(r"user\s+(\d+)", line)
1029 if m:
A R Karthickcee37412016-08-29 10:10:56 -07001030 user_ticks = int(m.group(1))
1031 print("Time spent by running processes: %.2f ms"%(user_ticks*1000.0/user_hz))
1032 print("List Networks:")
ChetanGaonkereadad482016-08-26 01:21:47 -07001033 cmd = "docker network ls"
1034 os.system(cmd)
A R Karthick9a5edc42016-08-24 19:10:22 -07001035 return 0
Chetan Gaonker503032a2016-05-12 12:06:29 -07001036
1037def buildImages(args):
A R Karthick07608ef2016-08-23 16:51:19 -07001038 tag = 'candidate'
1039 prefix = args.prefix
1040 if prefix:
1041 prefix += '/'
Chetan Gaonker503032a2016-05-12 12:06:29 -07001042 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001043 image_name = '{}{}:{}'.format(prefix, Quagga.IMAGE, tag)
1044 Quagga.build_image(image_name)
A.R Karthick95d044e2016-06-10 18:44:36 -07001045
Chetan Gaonker503032a2016-05-12 12:06:29 -07001046 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001047 image_name = '{}{}:{}'.format(prefix, Radius.IMAGE, tag)
1048 Radius.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001049
1050 if args.image == 'all' or args.image == 'test':
A R Karthick07608ef2016-08-23 16:51:19 -07001051 image_name = '{}{}:{}'.format(prefix, CordTester.IMAGE, tag)
1052 CordTester.build_image(image_name)
Chetan Gaonker503032a2016-05-12 12:06:29 -07001053
A R Karthick9a5edc42016-08-24 19:10:22 -07001054 return 0
1055
A R Karthickbec27762016-07-28 10:59:34 -07001056def startImages(args):
A R Karthickbec27762016-07-28 10:59:34 -07001057 ##starts the latest ONOS image
A R Karthick07608ef2016-08-23 16:51:19 -07001058 onos_cnt = {'tag': 'latest'}
1059 image_names = args.onos.rsplit(':', 1)
1060 onos_cnt['image'] = image_names[0]
1061 if len(image_names) > 1:
1062 if image_names[1].find('/') < 0:
1063 onos_cnt['tag'] = image_names[1]
1064 else:
1065 #tag cannot have slashes
1066 onos_cnt['image'] = args.onos
1067
A R Karthickbec27762016-07-28 10:59:34 -07001068 if args.image == 'all' or args.image == 'onos':
A R Karthick07608ef2016-08-23 16:51:19 -07001069 onos = Onos(image = onos_cnt['image'], tag = onos_cnt['tag'])
A R Karthickbec27762016-07-28 10:59:34 -07001070 print('ONOS started with ip %s' %(onos.ip()))
1071
1072 if args.image == 'all' or args.image == 'quagga':
A R Karthick07608ef2016-08-23 16:51:19 -07001073 quagga = Quagga(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001074 print('Quagga started with ip %s' %(quagga.ip()))
1075
1076 if args.image == 'all' or args.image == 'radius':
A R Karthick07608ef2016-08-23 16:51:19 -07001077 radius = Radius(prefix = args.prefix)
A R Karthickbec27762016-07-28 10:59:34 -07001078 print('Radius started with ip %s' %(radius.ip()))
1079
A R Karthick9a5edc42016-08-24 19:10:22 -07001080 return 0
1081
A R Karthickea8bfce2016-10-13 16:32:07 -07001082def xosCommand(args):
1083 update = False
1084 profile = args.profile
1085 if args.command == 'update':
1086 update = True
1087 xos = XosServiceProfile(profile = profile, update = update)
1088 if args.command == 'build':
1089 xos.build_images(force = True)
1090 if args.command == 'start':
1091 xos.start_services()
1092 if args.command == 'stop':
1093 xos.stop_services(rm = True)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001094 return 0
1095
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001096if __name__ == '__main__':
Chetan Gaonker678743f2016-04-26 09:54:31 -07001097 parser = ArgumentParser(description='Cord Tester')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001098 subparser = parser.add_subparsers()
1099 parser_run = subparser.add_parser('run', help='Run cord tester')
1100 parser_run.add_argument('-t', '--test-type', default=test_type_default, help='Specify test type or test case to run')
1101 parser_run.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001102 parser_run.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1103 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 -07001104 parser_run.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001105 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 -07001106 '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 -07001107 parser_run.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1108 help='ip:port address to connect for cord test server for container requests')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001109 parser_run.add_argument('-k', '--keep', action='store_true', help='Keep test container after tests')
1110 parser_run.add_argument('-s', '--start-switch', action='store_true', help='Start OVS when running under OLT config')
1111 parser_run.add_argument('-u', '--update', default='none', choices=['test','quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1112 'Eg: --update=quagga to rebuild quagga image.'
1113 ' --update=radius to rebuild radius server image.'
1114 ' --update=test to rebuild cord test image.(Default)'
1115 ' --update=all to rebuild all cord tester images.')
A R Karthick1f03e912016-05-18 11:39:22 -07001116 parser_run.add_argument('-n', '--num-containers', default=1, type=int,
1117 help='Specify number of test containers to spawn for tests')
A R Karthicka013a272016-08-16 16:40:19 -07001118 parser_run.add_argument('-c', '--container', default='', type=str, help='Test container name for running tests')
A R Karthick07608ef2016-08-23 16:51:19 -07001119 parser_run.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1120 parser_run.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1121 parser_run.add_argument('-d', '--no-switch', action='store_true', help='Dont start test switch.')
1122 parser_run.add_argument('-i', '--identity-file', default=identity_file_default,
1123 type=str, help='ssh identity file to access compute nodes from test container')
ChetanGaonkerdbd4e4b2016-10-28 17:40:11 -07001124 parser_run.add_argument('-j', '--onos-instances', default=1, type=int,
1125 help='Specify number to test onos instances to form cluster')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001126 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 -08001127 parser_run.add_argument('-async', '--async-mode', action='store_true',
1128 help='Start ONOS cluster instances in async mode')
A R Karthicke14fc022016-12-08 14:50:29 -08001129 parser_run.add_argument('-log', '--log-level', default=onos_log_level,
1130 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1131 type=str,
1132 help='Specify the log level for the test cases')
A R Karthickc69d73e2017-01-20 11:44:34 -08001133 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 -08001134 parser_run.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A.R Karthickb17e2022017-01-27 11:29:26 -08001135 parser_run.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1136 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001137 parser_run.add_argument('-service-profile', '--service-profile', default='', type=str,
1138 help='Specify config location for ONOS cord service profile when running on podd.'
1139 'Eg: $HOME/service-profile/cord-pod')
1140 parser_run.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1141 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1142 'Eg: vtn,fabric,cord')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001143 parser_run.set_defaults(func=runTest)
1144
A R Karthick81acbff2016-06-17 14:45:16 -07001145 parser_setup = subparser.add_parser('setup', help='Setup cord tester environment')
1146 parser_setup.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
1147 parser_setup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1148 help='ip:port address for cord test server to listen for container restart requests')
1149 parser_setup.add_argument('-q', '--quagga',action='store_true',help='Provision quagga container for vrouter')
1150 parser_setup.add_argument('-a', '--app', default=onos_app_file, type=str, help='Cord ONOS app filename')
1151 parser_setup.add_argument('-e', '--test-controller', default='', type=str, help='External test controller ip for Onos and/or radius server. '
1152 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip to connect')
1153 parser_setup.add_argument('-u', '--update', default='none', choices=['quagga','radius', 'all'], type=str, help='Update cord tester container images. '
1154 'Eg: --update=quagga to rebuild quagga image.'
1155 ' --update=radius to rebuild radius server image.'
1156 ' --update=all to rebuild all cord tester images.')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001157 parser_setup.add_argument('-d', '--dont-provision', action='store_true', help='Dont start test container.')
A R Karthick07608ef2016-08-23 16:51:19 -07001158 parser_setup.add_argument('-l', '--olt', action='store_true', help='Use OLT config')
A R Karthicke14fc022016-12-08 14:50:29 -08001159 parser_setup.add_argument('-log', '--log-level', default=onos_log_level, type=str,
1160 choices=['DEBUG','TRACE','ERROR','WARN','INFO'],
1161 help='Specify the log level for the test cases')
A R Karthick92a0e5a2016-06-22 17:11:05 -07001162 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 -08001163 parser_setup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1164 help='Specify config location for ONOS cord when running on podd')
A.R Karthickf184b342017-01-27 19:30:50 -08001165 parser_setup.add_argument('-service-profile', '--service-profile', default='', type=str,
1166 help='Specify config location for ONOS cord service profile when running on podd.'
1167 'Eg: $HOME/service-profile/cord-pod')
1168 parser_setup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1169 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1170 'Eg: vtn,fabric,cord')
A R Karthick07608ef2016-08-23 16:51:19 -07001171 parser_setup.add_argument('-m', '--manifest', default='', type=str, help='Provide test configuration manifest')
1172 parser_setup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1173 parser_setup.add_argument('-i', '--identity-file', default=identity_file_default,
1174 type=str, help='ssh identity file to access compute nodes from test container')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001175 parser_setup.add_argument('-n', '--onos-instances', default=1, type=int,
A R Karthickbd82f362016-11-10 15:08:52 -08001176 help='Specify number of test onos instances to spawn')
A R Karthick09dbc6d2016-11-22 10:37:42 -08001177 parser_setup.add_argument('-v', '--shared-volume', action='store_true',
1178 help='Start ONOS cluster instances with shared volume')
A.R Karthickc4e474d2016-12-12 15:24:57 -08001179 parser_setup.add_argument('-async', '--async-mode', action='store_true',
1180 help='Start ONOS cluster instances in async mode')
A R Karthickbd82f362016-11-10 15:08:52 -08001181 parser_setup.add_argument('-f', '--foreground', action='store_true', help='Run in foreground')
A R Karthickc69d73e2017-01-20 11:44:34 -08001182 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 -08001183 parser_setup.add_argument('-network', '--network', default='', type=str, help='Docker network to attach')
A R Karthick81acbff2016-06-17 14:45:16 -07001184 parser_setup.set_defaults(func=setupCordTester)
1185
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001186 parser_xos = subparser.add_parser('xos', help='Building xos into cord tester environment')
A R Karthickea8bfce2016-10-13 16:32:07 -07001187 parser_xos.add_argument('command', choices=['build', 'update', 'start', 'stop'])
1188 parser_xos.add_argument('-p', '--profile', default='cord-pod', type=str, help='Provide service profile')
1189 parser_xos.set_defaults(func=xosCommand)
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001190
Chetan Gaonker503032a2016-05-12 12:06:29 -07001191 parser_list = subparser.add_parser('list', help='List test cases')
1192 parser_list.add_argument('-t', '--test', default='all', help='Specify test type to list test cases. '
1193 'Eg: -t tls to list tls test cases.'
1194 ' -t tls-dhcp-vrouter to list tls,dhcp and vrouter test cases.'
1195 ' -t all to list all test cases.')
1196 parser_list.set_defaults(func=listTests)
1197
1198 parser_build = subparser.add_parser('build', help='Build cord test container images')
ChetanGaonker2c0e9bb2016-09-21 13:38:37 -07001199 parser_build.add_argument('image', choices=['quagga', 'radius', 'test','all'])
A.R Karthick842f0122016-09-28 14:48:47 -07001200 parser_build.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001201 parser_build.set_defaults(func=buildImages)
1202
ChetanGaonkereadad482016-08-26 01:21:47 -07001203 parser_metrics = subparser.add_parser('metrics', help='Info of container')
1204 parser_metrics.add_argument("container", help="Container name")
1205 parser_metrics.set_defaults(func=getMetrics)
1206
A R Karthickbec27762016-07-28 10:59:34 -07001207 parser_start = subparser.add_parser('start', help='Start cord tester containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001208 parser_start.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1209 parser_start.add_argument('-o', '--onos', default=onos_image_default, type=str, help='ONOS container image')
A R Karthickbec27762016-07-28 10:59:34 -07001210 parser_start.add_argument('image', choices=['onos', 'quagga', 'radius', 'all'])
1211 parser_start.set_defaults(func=startImages)
1212
Chetan Gaonker503032a2016-05-12 12:06:29 -07001213 parser_cleanup = subparser.add_parser('cleanup', help='Cleanup test containers')
A R Karthick07608ef2016-08-23 16:51:19 -07001214 parser_cleanup.add_argument('-p', '--prefix', default='', type=str, help='Provide container image prefix')
1215 parser_cleanup.add_argument('-l', '--olt', action = 'store_true', help = 'Cleanup OLT config')
A R Karthick2b93d6a2016-09-06 15:19:09 -07001216 parser_cleanup.add_argument('-o', '--onos', default=onos_image_default, type=str,
1217 help='ONOS container image to cleanup')
A.R Karthick842f0122016-09-28 14:48:47 -07001218 parser_cleanup.add_argument('-x', '--xos', action='store_true',
1219 help='Cleanup XOS containers')
A R Karthicke99ab5c2016-09-30 13:59:57 -07001220 parser_cleanup.add_argument('-r', '--server', default=cord_test_server_address, type=str,
1221 help='ip:port address for cord test server to cleanup')
A.R Karthickb17e2022017-01-27 11:29:26 -08001222 parser_cleanup.add_argument('-e', '--test-controller', default='', type=str,
1223 help='External test controller ip for Onos and/or radius server. '
1224 'Eg: 10.0.0.2/10.0.0.3 to specify ONOS and Radius ip')
1225 parser_cleanup.add_argument('-onos-cord', '--onos-cord', default='', type=str,
1226 help='Specify config location for ONOS cord instance when running on podd to restore')
A.R Karthickf184b342017-01-27 19:30:50 -08001227 parser_cleanup.add_argument('-service-profile', '--service-profile', default='', type=str,
1228 help='Specify config location for ONOS cord service profile when running on podd.'
1229 'Eg: $HOME/service-profile/cord-pod')
1230 parser_cleanup.add_argument('-synchronizer', '--synchronizer', default='', type=str,
1231 help='Specify the synchronizer to use for ONOS cord instance when running on podd.'
1232 'Eg: vtn,fabric,cord')
A R Karthick757eb4d2017-01-09 14:51:16 -08001233 parser_cleanup.add_argument('-m', '--manifest', default='', type=str, help='Provide test manifest')
Chetan Gaonker503032a2016-05-12 12:06:29 -07001234 parser_cleanup.set_defaults(func=cleanupTests)
1235
ChetanGaonkereadad482016-08-26 01:21:47 -07001236 c = Client(**(kwargs_from_env()))
1237
Chetan Gaonker93e302d2016-04-05 10:51:07 -07001238 args = parser.parse_args()
A R Karthick9a5edc42016-08-24 19:10:22 -07001239 res = args.func(args)
1240 sys.exit(res)