blob: 95320e5562b997610a04f34388275cd584a8ad14 [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
A R Karthick861da962017-02-08 16:21:36 -080017import inspect
18import unittest
19import json
20import os
21from nose.tools import assert_not_equal
A.R Karthick8f7f1b62017-04-06 18:25:07 -070022from nose.plugins import Plugin
23from CordTestUtils import log_test as log
A R Karthick19771192017-04-25 14:57:05 -070024from CordTestUtils import running_on_pod
A R Karthick32e711a2017-08-22 16:27:22 -070025from VolthaCtrl import voltha_setup, voltha_teardown, VolthaService, VolthaCtrl
A R Karthick19771192017-04-25 14:57:05 -070026from SSHTestAgent import SSHTestAgent
A.R Karthick8f7f1b62017-04-06 18:25:07 -070027log.setLevel('INFO')
28
29class CordTestConfigRestore(Plugin):
30 name = 'cordTestConfigRestore'
31 context = None
32 restore_methods = ('configRestore', 'config_restore',)
33
34 def options(self, parser, env=os.environ):
35 super(CordTestConfigRestore, self).options(parser, env = env)
36
37 def configure(self, options, conf):
38 self.enabled = True
39
40 #just save the test case context on start
41 def startContext(self, context):
42 if inspect.isclass(context) and issubclass(context, unittest.TestCase):
43 if context.__name__.endswith('exchange'):
44 self.context = context
45
46 #reset the context on exit
A R Karthick9a16a112017-04-07 15:40:05 -070047 def stopContext(self, context):
A.R Karthick8f7f1b62017-04-06 18:25:07 -070048 if inspect.isclass(context) and issubclass(context, unittest.TestCase):
49 if context.__name__.endswith('exchange'):
50 self.context = None
51
52 def doFailure(self, test, exception):
53 if self.context:
54 log.info('Inside test case failure for test: %s' %self.context.__name__)
55 for restore_method in self.restore_methods:
56 if hasattr(self.context, restore_method):
57 method = getattr(self.context, restore_method)
58 #check only for class/static methods
59 if method.__self__ is self.context:
60 method()
61 break
62
63 def addError(self, test, exception):
64 self.doFailure(test, exception)
65
66 def addFailure(self, test, exception):
67 self.doFailure(test, exception)
A R Karthick861da962017-02-08 16:21:36 -080068
A R Karthickdd064632017-07-12 13:02:17 -070069def get_test_class(module):
A.R Karthick99044822017-02-09 14:04:20 -080070 class_test = None
A R Karthick861da962017-02-08 16:21:36 -080071 for name, obj in inspect.getmembers(module):
72 if inspect.isclass(obj) and issubclass(obj, unittest.TestCase):
73 if obj.__name__.endswith('exchange'):
A.R Karthick99044822017-02-09 14:04:20 -080074 class_test = obj
A R Karthick861da962017-02-08 16:21:36 -080075 break
76 else:
A.R Karthick99044822017-02-09 14:04:20 -080077 class_test = obj
A R Karthick861da962017-02-08 16:21:36 -080078
A R Karthickdd064632017-07-12 13:02:17 -070079 return class_test
80
81def setup_module(module):
82 class_test = get_test_class(module)
A.R Karthick99044822017-02-09 14:04:20 -080083 assert_not_equal(class_test, None)
84 module_name = module.__name__.split('.')[-1]
A R Karthick861da962017-02-08 16:21:36 -080085 cfg = '{}.json'.format(module_name)
86 module_config = os.path.join(os.path.dirname(module.__file__), cfg)
87 if os.access(module_config, os.F_OK):
88 with open(module_config) as f:
89 json_data = json.load(f)
90 for k, v in json_data.iteritems():
A.R Karthick99044822017-02-09 14:04:20 -080091 setattr(class_test, k, v)
A R Karthick19771192017-04-25 14:57:05 -070092
A R Karthickdd064632017-07-12 13:02:17 -070093 #check for voltha and configure as appropriate
A R Karthick168e2342017-08-15 16:13:10 -070094 voltha_attrs = dict(host = VolthaService.DOCKER_HOST_IP,
95 ponsim_host = VolthaService.PONSIM_HOST,
A R Karthick32e711a2017-08-22 16:27:22 -070096 rest_port = VolthaCtrl.REST_PORT,
A R Karthickdd064632017-07-12 13:02:17 -070097 config_fake = False,
A R Karthick9dc6e922017-07-12 14:40:16 -070098 olt_type = 'ponsim_olt',
A R Karthickdd064632017-07-12 13:02:17 -070099 olt_mac = '00:0c:e2:31:12:00',
A R Karthick31a40172017-08-14 12:06:09 -0700100 olt_ip = None,
A R Karthick53442712017-07-27 12:23:30 -0700101 uplink_vlan_map = { 'of:0000000000000001' : '222' },
102 uplink_vlan_start = 333
A R Karthickdd064632017-07-12 13:02:17 -0700103 )
104 voltha_enabled = bool(int(os.getenv('VOLTHA_ENABLED', 0)))
105 voltha_configure = True
106 if hasattr(class_test, 'VOLTHA_AUTO_CONFIGURE'):
107 voltha_configure = getattr(class_test, 'VOLTHA_AUTO_CONFIGURE')
108
A R Karthick168e2342017-08-15 16:13:10 -0700109 if hasattr(class_test, 'VOLTHA_HOST'):
110 #update the voltha host ip based on chameleon IP for rest interface
111 rest_interface = VolthaService.get_ip('chameleon')
112 if rest_interface:
113 log.info('Updating VOLTHA_HOST IP to %s' %rest_interface)
114 setattr(class_test, 'VOLTHA_HOST', rest_interface)
115
A R Karthickdd064632017-07-12 13:02:17 -0700116 if voltha_enabled and voltha_configure:
117 for k,v in voltha_attrs.iteritems():
118 voltha_attr = 'VOLTHA_{}'.format(k.upper())
119 if hasattr(class_test, voltha_attr):
120 v = getattr(class_test, voltha_attr)
121 voltha_attrs[k] = v
122 else:
123 setattr(class_test, voltha_attr, v)
124 ret = voltha_setup(**voltha_attrs)
125 if ret is not None:
126 #setup the stage to drop voltha on the way out
127 setattr(class_test, 'voltha_ctrl', ret[0])
128 setattr(class_test, 'voltha_device', ret[1])
129 setattr(class_test, 'voltha_switch_map', ret[2])
130
131def teardown_module(module):
132 class_test = get_test_class(module)
133 if class_test is None:
134 return
135 if not hasattr(class_test, 'voltha_ctrl') or \
136 not hasattr(class_test, 'voltha_device') or \
137 not hasattr(class_test, 'voltha_switch_map'):
138 return
139 voltha_ctrl = getattr(class_test, 'voltha_ctrl')
140 voltha_device = getattr(class_test, 'voltha_device')
141 voltha_switch_map = getattr(class_test, 'voltha_switch_map')
142 voltha_teardown(voltha_ctrl, voltha_device, voltha_switch_map)
143
A R Karthick19771192017-04-25 14:57:05 -0700144def running_on_ciab():
145 if running_on_pod() is False:
146 return False
147 head_node = os.getenv('HEAD_NODE', 'prod')
148 HEAD_NODE = head_node + '.cord.lab' if len(head_node.split('.')) == 1 else head_node
149 agent = SSHTestAgent(host = HEAD_NODE, user = 'ubuntu', password = 'ubuntu')
150 #see if user ubuntu works
151 st, output = agent.run_cmd('sudo virsh list')
152 if st is False and output is not None:
153 #we are on real pod
154 return False
155
156 #try vagrant
157 agent = SSHTestAgent(host = HEAD_NODE, user = 'vagrant', password = 'vagrant')
158 st, output = agent.run_cmd('sudo virsh list')
159 if st is True and output is not None:
160 return True
161
162 return False