A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 1 | import requests |
| 2 | import json |
| 3 | import time |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 4 | import os |
| 5 | import signal |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 6 | from CordTestUtils import log_test as log, getstatusoutput, get_controller |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 7 | from CordContainer import Container, Onos |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 8 | from OnosCtrl import OnosCtrl |
A.R Karthick | 4f58384 | 2017-06-09 17:15:47 -0700 | [diff] [blame] | 9 | from OltConfig import OltConfig |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 10 | |
| 11 | class VolthaService(object): |
| 12 | services = ('consul', 'kafka', 'zookeeper', 'registrator', 'fluentd') |
| 13 | compose_file = 'docker-compose-system-test.yml' |
| 14 | service_map = {} |
| 15 | |
A.R Karthick | 4f58384 | 2017-06-09 17:15:47 -0700 | [diff] [blame] | 16 | def __init__(self, voltha_loc, controller, interface = 'eth0', olt_config = None): |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 17 | if not os.access(voltha_loc, os.F_OK): |
| 18 | raise Exception('Voltha location %s not found' %voltha_loc) |
| 19 | compose_file_loc = os.path.join(voltha_loc, 'compose', self.compose_file) |
| 20 | if not os.access(compose_file_loc, os.F_OK): |
| 21 | raise Exception('Voltha compose file %s not found' %compose_file_loc) |
| 22 | self.voltha_loc = voltha_loc |
| 23 | self.controller = controller |
| 24 | self.interface = interface |
| 25 | self.compose_file_loc = compose_file_loc |
A.R Karthick | 4f58384 | 2017-06-09 17:15:47 -0700 | [diff] [blame] | 26 | num_onus = 1 |
| 27 | if olt_config is not None: |
| 28 | port_map, _ = OltConfig(olt_config).olt_port_map() |
| 29 | if port_map['ponsim'] is True: |
| 30 | num_onus = max(1, len(port_map['ports'])) |
| 31 | self.num_onus = num_onus |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 32 | |
| 33 | def start(self): |
| 34 | start_cmd = 'docker-compose -f {} up -d {} {} {} {} {}'.format(self.compose_file_loc, |
| 35 | *self.services) |
| 36 | ret = os.system(start_cmd) |
| 37 | if ret != 0: |
| 38 | raise Exception('Failed to start voltha services. Failed with code %d' %ret) |
| 39 | |
| 40 | for service in self.services: |
| 41 | name = 'compose_{}_1'.format(service) |
| 42 | network = 'compose_default' |
| 43 | cnt = Container(name, name) |
| 44 | ip = cnt.ip(network = network) |
| 45 | if not ip: |
| 46 | raise Exception('IP not found for container %s' %name) |
| 47 | print('IP %s for service %s' %(ip, service)) |
| 48 | self.service_map[service] = dict(name = name, network = network, ip = ip) |
| 49 | |
| 50 | #first start chameleon |
| 51 | chameleon_start_cmd = "cd {} && sh -c '. ./env.sh && \ |
| 52 | nohup python chameleon/main.py -v --consul=localhost:8500 \ |
| 53 | --fluentd={}:24224 --grpc-endpoint=localhost:50555 \ |
| 54 | >/tmp/chameleon.log 2>&1 &'".format(self.voltha_loc, |
| 55 | self.service_map['fluentd']['ip']) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 56 | if not self.service_running('python chameleon/main.py'): |
| 57 | ret = os.system(chameleon_start_cmd) |
| 58 | if ret != 0: |
| 59 | raise Exception('VOLTHA chameleon service not started. Failed with return code %d' %ret) |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 60 | time.sleep(5) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 61 | else: |
| 62 | print('Chameleon voltha sevice is already running. Skipped start') |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 63 | |
| 64 | #now start voltha and ofagent |
| 65 | voltha_start_cmd = "cd {} && sh -c '. ./env.sh && \ |
| 66 | nohup python voltha/main.py -v --consul=localhost:8500 --kafka={}:9092 -I {} \ |
| 67 | --fluentd={}:24224 --rest-port=8880 --grpc-port=50555 \ |
| 68 | >/tmp/voltha.log 2>&1 &'".format(self.voltha_loc, |
| 69 | self.service_map['kafka']['ip'], |
| 70 | self.interface, |
| 71 | self.service_map['fluentd']['ip']) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 72 | if not self.service_running('python voltha/main.py'): |
| 73 | ret = os.system(voltha_start_cmd) |
| 74 | if ret != 0: |
| 75 | raise Exception('Failed to start VOLTHA. Return code %d' %ret) |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 76 | time.sleep(5) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 77 | else: |
| 78 | print('VOLTHA core is already running. Skipped start') |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 79 | |
| 80 | ofagent_start_cmd = "cd {} && sh -c '. ./env.sh && \ |
| 81 | nohup python ofagent/main.py -v --consul=localhost:8500 \ |
| 82 | --fluentd={}:24224 --controller={}:6653 --grpc-endpoint=localhost:50555 \ |
| 83 | >/tmp/ofagent.log 2>&1 &'".format(self.voltha_loc, |
| 84 | self.service_map['fluentd']['ip'], |
| 85 | self.controller) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 86 | if not self.service_running('python ofagent/main.py'): |
| 87 | ret = os.system(ofagent_start_cmd) |
| 88 | if ret != 0: |
| 89 | raise Exception('VOLTHA ofagent not started. Failed with return code %d' %ret) |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 90 | time.sleep(3) |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 91 | else: |
| 92 | print('VOLTHA ofagent is already running. Skipped start') |
| 93 | |
A.R Karthick | 12e08c3 | 2017-05-30 17:09:26 -0700 | [diff] [blame] | 94 | ponsim_start_cmd = "cd {} && sh -c '. ./env.sh && \ |
A.R Karthick | 4f58384 | 2017-06-09 17:15:47 -0700 | [diff] [blame] | 95 | nohup python ponsim/main.py -o {} -v >/tmp/ponsim.log 2>&1 &'".format(self.voltha_loc, self.num_onus) |
A.R Karthick | 12e08c3 | 2017-05-30 17:09:26 -0700 | [diff] [blame] | 96 | if not self.service_running('python ponsim/main.py'): |
| 97 | ret = os.system(ponsim_start_cmd) |
| 98 | if ret != 0: |
| 99 | raise Exception('PONSIM not started. Failed with return code %d' %ret) |
| 100 | time.sleep(3) |
| 101 | else: |
| 102 | print('PONSIM already running. Skipped start') |
| 103 | |
A.R Karthick | c2697a1 | 2017-05-24 14:01:15 -0700 | [diff] [blame] | 104 | def service_running(self, pattern): |
| 105 | st, _ = getstatusoutput('pgrep -f "{}"'.format(pattern)) |
| 106 | return True if st == 0 else False |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 107 | |
| 108 | def kill_service(self, pattern): |
| 109 | st, output = getstatusoutput('pgrep -f "{}"'.format(pattern)) |
| 110 | if st == 0 and output: |
| 111 | pids = output.strip().splitlines() |
| 112 | for pid in pids: |
| 113 | try: |
| 114 | os.kill(int(pid), signal.SIGKILL) |
| 115 | except: |
| 116 | pass |
| 117 | |
| 118 | def stop(self): |
| 119 | self.kill_service('python voltha/main.py') |
| 120 | self.kill_service('python ofagent/main.py') |
| 121 | self.kill_service('python chameleon/main.py') |
A.R Karthick | 12e08c3 | 2017-05-30 17:09:26 -0700 | [diff] [blame] | 122 | self.kill_service('python ponsim/main.py') |
A.R Karthick | 57fa937 | 2017-05-24 12:47:03 -0700 | [diff] [blame] | 123 | service_stop_cmd = 'docker-compose -f {} down'.format(self.compose_file_loc) |
| 124 | os.system(service_stop_cmd) |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 125 | |
| 126 | class VolthaCtrl(object): |
| 127 | |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 128 | UPLINK_VLAN_MAP = { 'of:0000000000000001' : '222' } |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 129 | REST_PORT = 8881 |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 130 | |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 131 | def __init__(self, host, rest_port = REST_PORT, uplink_vlan_map = UPLINK_VLAN_MAP): |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 132 | self.host = host |
| 133 | self.rest_port = rest_port |
| 134 | self.rest_url = 'http://{}:{}/api/v1'.format(host, rest_port) |
A.R Karthick | 4c4d049 | 2017-05-26 19:23:05 -0700 | [diff] [blame] | 135 | self.uplink_vlan_map = uplink_vlan_map |
| 136 | self.switches = [] |
| 137 | self.switch_map = {} |
| 138 | |
| 139 | def config(self, fake = False): |
| 140 | devices = OnosCtrl.get_devices() |
| 141 | if not devices: |
| 142 | return self.switch_map |
| 143 | voltha_devices = filter(lambda d: not d['mfr'].startswith('Nicira'), devices) |
| 144 | self.switches = voltha_devices |
| 145 | device_config = { 'devices' : { } } |
| 146 | device_id = None |
| 147 | for device in voltha_devices: |
| 148 | device_id = device['id'] |
| 149 | ports = OnosCtrl.get_ports_device(device_id) |
| 150 | nni_ports = filter(lambda p: p['isEnabled'] and 'annotations' in p and p['annotations']['portName'].startswith('nni'), ports) |
| 151 | uni_ports = filter(lambda p: p['isEnabled'] and 'annotations' in p and p['annotations']['portName'].startswith('uni'), ports) |
| 152 | if device_id not in self.uplink_vlan_map: |
| 153 | log.info('Skipping voltha device %s as uplink vlan does not exist' %device_id) |
| 154 | continue |
| 155 | if not nni_ports: |
| 156 | log.info('Voltha device %s has no NNI ports' %device_id) |
| 157 | if fake is True: |
| 158 | log.info('Faking NNI port 0') |
| 159 | nni_ports = [ {'port': '0'} ] |
| 160 | else: |
| 161 | log.info('Skip configuring device %s' %device_id) |
| 162 | continue |
| 163 | if not uni_ports: |
| 164 | log.info('Voltha device %s has no UNI ports' %device_id) |
| 165 | if fake is True: |
| 166 | log.info('Faking UNI port 252') |
| 167 | uni_ports = [ {'port': '252'} ] |
| 168 | else: |
| 169 | log.info('Skip configuring device %s' %device_id) |
| 170 | continue |
| 171 | uplink_vlan = self.uplink_vlan_map[device_id] |
| 172 | onu_ports = map(lambda uni: uni['port'], uni_ports) |
| 173 | self.switch_map[device_id] = dict(uplink_vlan = uplink_vlan, ports = onu_ports) |
| 174 | device_config['devices'][device_id] = {} |
| 175 | device_config['devices'][device_id]['basic'] = dict(driver='pmc-olt') |
| 176 | device_config['devices'][device_id]['accessDevice'] = dict(uplink=nni_ports[0]['port'], |
| 177 | vlan = uplink_vlan, |
| 178 | defaultVlan='0' |
| 179 | ) |
| 180 | if device_id: |
| 181 | #toggle drivers/openflow base before reconfiguring the driver and olt config data |
| 182 | OnosCtrl('org.onosproject.drivers').deactivate() |
| 183 | OnosCtrl('org.onosproject.openflow-base').deactivate() |
| 184 | OnosCtrl.config(device_config) |
| 185 | time.sleep(2) |
| 186 | OnosCtrl('org.onosproject.drivers').activate() |
| 187 | OnosCtrl('org.onosproject.openflow-base').activate() |
| 188 | time.sleep(5) |
| 189 | |
| 190 | return self.switch_map |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 191 | |
| 192 | def get_devices(self): |
| 193 | url = '{}/local/devices'.format(self.rest_url) |
| 194 | resp = requests.get(url) |
| 195 | if resp.ok is not True or resp.status_code != 200: |
| 196 | return None |
| 197 | return resp.json() |
| 198 | |
A.R Karthick | 8b9c5f1 | 2017-05-30 17:47:08 -0700 | [diff] [blame] | 199 | def enable_device(self, olt_type, olt_mac = None, address = None): |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 200 | url = '{}/local/devices'.format(self.rest_url) |
A.R Karthick | 8b9c5f1 | 2017-05-30 17:47:08 -0700 | [diff] [blame] | 201 | if olt_mac is None and address is None: |
| 202 | log.error('Either olt mac or address needs to be specified') |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 203 | return None, False |
A.R Karthick | 8b9c5f1 | 2017-05-30 17:47:08 -0700 | [diff] [blame] | 204 | if olt_mac is not None: |
| 205 | device_config = { 'type' : olt_type, 'mac_address' : olt_mac } |
| 206 | else: |
| 207 | device_config = { 'type' : olt_type, 'host_and_port' : address } |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 208 | #pre-provision |
A.R Karthick | 8b9c5f1 | 2017-05-30 17:47:08 -0700 | [diff] [blame] | 209 | if olt_mac is not None: |
| 210 | log.info('Pre-provisioning %s with mac %s' %(olt_type, olt_mac)) |
| 211 | else: |
| 212 | log.info('Pre-provisioning %s with address %s' %(olt_type, address)) |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 213 | resp = requests.post(url, data = json.dumps(device_config)) |
| 214 | if resp.ok is not True or resp.status_code != 200: |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 215 | return None, False |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 216 | device_id = resp.json()['id'] |
| 217 | log.info('Enabling device %s' %(device_id)) |
| 218 | enable_url = '{}/{}/enable'.format(url, device_id) |
| 219 | resp = requests.post(enable_url) |
| 220 | if resp.ok is not True or resp.status_code != 200: |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 221 | return None, False |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 222 | #get operational status |
| 223 | time.sleep(5) |
| 224 | log.info('Checking operational status for device %s' %(device_id)) |
| 225 | resp = requests.get('{}/{}'.format(url, device_id)) |
| 226 | if resp.ok is not True or resp.status_code != 200: |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 227 | return device_id, False |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 228 | device_info = resp.json() |
| 229 | if device_info['oper_status'] != 'ACTIVE' or \ |
| 230 | device_info['admin_state'] != 'ENABLED' or \ |
| 231 | device_info['connect_status'] != 'REACHABLE': |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 232 | return device_id, False |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 233 | |
A.R Karthick | 8a507cf | 2017-06-02 18:44:49 -0700 | [diff] [blame] | 234 | return device_id, True |
| 235 | |
| 236 | def disable_device(self, device_id, delete = True): |
| 237 | log.info('Disabling device %s' %(device_id)) |
| 238 | disable_url = '{}/local/devices/{}/disable'.format(self.rest_url, device_id) |
| 239 | resp = requests.post(disable_url) |
| 240 | if resp.ok is not True or resp.status_code != 200: |
| 241 | return False |
| 242 | if delete is True: |
| 243 | log.info('Deleting device %s' %(device_id)) |
| 244 | delete_url = '{}/local/devices/{}/delete'.format(self.rest_url, device_id) |
| 245 | resp = requests.delete(delete_url) |
| 246 | if resp.status_code not in [204, 202, 200]: |
| 247 | return False |
A R Karthick | 35495c3 | 2017-05-11 14:58:32 -0700 | [diff] [blame] | 248 | return True |
Chetan Gaonker | 3620a11 | 2017-05-23 06:10:15 +0000 | [diff] [blame] | 249 | |
Thangavelu K S | e6c77c7 | 2017-06-23 21:28:48 +0000 | [diff] [blame] | 250 | def restart_device(self, device_id): |
| 251 | log.info('Restarting olt or onu device %s' %(device_id)) |
| 252 | disable_url = '{}/local/devices/{}/restart'.format(self.rest_url, device_id) |
| 253 | resp = requests.post(disable_url) |
| 254 | if resp.ok is not True or resp.status_code != 200: |
| 255 | return False |
| 256 | return True |
| 257 | |
| 258 | def pause_device(self, device_id): |
| 259 | log.info('Restarting olt or onu device %s' %(device_id)) |
| 260 | disable_url = '{}/local/devices/{}/pause'.format(self.rest_url, device_id) |
| 261 | resp = requests.post(disable_url) |
| 262 | if resp.ok is not True or resp.status_code != 200: |
| 263 | return False |
| 264 | return True |
| 265 | |
Chetan Gaonker | 3620a11 | 2017-05-23 06:10:15 +0000 | [diff] [blame] | 266 | def get_operational_status(self, device_id): |
| 267 | url = '{}/local/devices'.format(self.rest_url) |
| 268 | log.info('Checking operational status for device %s' %(device_id)) |
| 269 | resp = requests.get('{}/{}'.format(url, device_id)) |
| 270 | if resp.ok is not True or resp.status_code != 200: |
| 271 | return False |
| 272 | device_info = resp.json() |
| 273 | if device_info['oper_status'] != 'ACTIVE' or \ |
| 274 | device_info['admin_state'] != 'ENABLED' or \ |
| 275 | device_info['connect_status'] != 'REACHABLE': |
| 276 | return False |
| 277 | return True |
| 278 | |
| 279 | def check_preprovision_status(self, device_id): |
| 280 | url = '{}/local/devices'.format(self.rest_url) |
| 281 | log.info('Check if device %s is in Preprovisioning state'%(device_id)) |
| 282 | resp = requests.get('{}/{}'.format(url, device_id)) |
| 283 | if resp.ok is not True or resp.status_code != 200: |
| 284 | return False |
| 285 | device_info = resp.json() |
| 286 | if device_info['admin_status'] == 'PREPROVISIONED': |
| 287 | return True |
| 288 | return False |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 289 | |
| 290 | def get_olt_app(): |
| 291 | our_path = os.path.dirname(os.path.realpath(__file__)) |
| 292 | version = Onos.getVersion() |
| 293 | major = int(version.split('.')[0]) |
| 294 | minor = int(version.split('.')[1]) |
| 295 | olt_app_version = '1.2-SNAPSHOT' |
| 296 | if major > 1: |
| 297 | olt_app_version = '2.0-SNAPSHOT' |
| 298 | elif major == 1: |
| 299 | if minor > 10: |
| 300 | olt_app_version = '2.0-SNAPSHOT' |
| 301 | elif minor <= 8: |
| 302 | olt_app_version = '1.1-SNAPSHOT' |
| 303 | olt_app_file = os.path.join(our_path, '..', 'apps/olt-app-{}.oar'.format(olt_app_version)) |
| 304 | return olt_app_file |
| 305 | |
| 306 | def voltha_setup(host = '172.17.0.1', rest_port = VolthaCtrl.REST_PORT, |
A R Karthick | 9dc6e92 | 2017-07-12 14:40:16 -0700 | [diff] [blame] | 307 | olt_type = 'ponsim_olt', olt_mac = '00:0c:e2:31:12:00', |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 308 | uplink_vlan_map = VolthaCtrl.UPLINK_VLAN_MAP, |
| 309 | config_fake = False, olt_app = None): |
| 310 | |
| 311 | voltha = VolthaCtrl(host, rest_port = rest_port, uplink_vlan_map = uplink_vlan_map) |
| 312 | if olt_type.startswith('ponsim'): |
| 313 | ponsim_address = '{}:50060'.format(host) |
| 314 | log.info('Enabling ponsim olt') |
| 315 | device_id, status = voltha.enable_device(olt_type, address = ponsim_address) |
| 316 | else: |
| 317 | log.info('Enabling OLT instance for %s with mac %s' %(olt_type, olt_mac)) |
| 318 | device_id, status = voltha.enable_device(olt_type, olt_mac) |
| 319 | |
| 320 | if device_id is None or status is False: |
A R Karthick | 9dc6e92 | 2017-07-12 14:40:16 -0700 | [diff] [blame] | 321 | if device_id: |
| 322 | voltha.disable_device(device_id) |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 323 | return None |
| 324 | |
| 325 | switch_map = None |
| 326 | olt_installed = False |
| 327 | if olt_app is None: |
| 328 | olt_app = get_olt_app() |
| 329 | try: |
| 330 | switch_map = voltha.config(fake = config_fake) |
| 331 | if switch_map is None: |
| 332 | voltha.disable_device(device_id) |
| 333 | return None |
| 334 | log.info('Installing OLT app %s' %olt_app) |
| 335 | OnosCtrl.install_app(olt_app) |
| 336 | olt_installed = True |
| 337 | time.sleep(5) |
| 338 | return voltha, device_id, switch_map |
| 339 | except: |
| 340 | voltha.disable_device(device_id) |
| 341 | time.sleep(10) |
| 342 | if olt_installed is True: |
| 343 | log.info('Uninstalling OLT app %s' %olt_app) |
| 344 | OnosCtrl.uninstall_app(olt_app) |
| 345 | |
| 346 | return None |
| 347 | |
| 348 | def voltha_teardown(voltha_ctrl, device_id, switch_map, olt_app = None): |
| 349 | voltha_ctrl.disable_device(device_id) |
| 350 | time.sleep(10) |
| 351 | if olt_app is None: |
| 352 | olt_app = get_olt_app() |
A R Karthick | dd06463 | 2017-07-12 13:02:17 -0700 | [diff] [blame] | 353 | log.info('Uninstalling OLT app %s' %olt_app) |
A R Karthick | bf1e4b0 | 2017-07-11 20:17:14 -0700 | [diff] [blame] | 354 | OnosCtrl.uninstall_app(olt_app) |