blob: 2ec54d9c362473a3dfe30b7b492eac8cfed08cd9 [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 Karthickdd064632017-07-12 13:02:17 -070025from VolthaCtrl import voltha_setup, voltha_teardown
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
94 voltha_attrs = dict(host='172.17.0.1',
95 rest_port = 8881,
96 config_fake = False,
A R Karthick9dc6e922017-07-12 14:40:16 -070097 olt_type = 'ponsim_olt',
A R Karthickdd064632017-07-12 13:02:17 -070098 olt_mac = '00:0c:e2:31:12:00',
A R Karthick53442712017-07-27 12:23:30 -070099 uplink_vlan_map = { 'of:0000000000000001' : '222' },
100 uplink_vlan_start = 333
A R Karthickdd064632017-07-12 13:02:17 -0700101 )
102 voltha_enabled = bool(int(os.getenv('VOLTHA_ENABLED', 0)))
103 voltha_configure = True
104 if hasattr(class_test, 'VOLTHA_AUTO_CONFIGURE'):
105 voltha_configure = getattr(class_test, 'VOLTHA_AUTO_CONFIGURE')
106
107 if voltha_enabled and voltha_configure:
108 for k,v in voltha_attrs.iteritems():
109 voltha_attr = 'VOLTHA_{}'.format(k.upper())
110 if hasattr(class_test, voltha_attr):
111 v = getattr(class_test, voltha_attr)
112 voltha_attrs[k] = v
113 else:
114 setattr(class_test, voltha_attr, v)
115 ret = voltha_setup(**voltha_attrs)
116 if ret is not None:
117 #setup the stage to drop voltha on the way out
118 setattr(class_test, 'voltha_ctrl', ret[0])
119 setattr(class_test, 'voltha_device', ret[1])
120 setattr(class_test, 'voltha_switch_map', ret[2])
121
122def teardown_module(module):
123 class_test = get_test_class(module)
124 if class_test is None:
125 return
126 if not hasattr(class_test, 'voltha_ctrl') or \
127 not hasattr(class_test, 'voltha_device') or \
128 not hasattr(class_test, 'voltha_switch_map'):
129 return
130 voltha_ctrl = getattr(class_test, 'voltha_ctrl')
131 voltha_device = getattr(class_test, 'voltha_device')
132 voltha_switch_map = getattr(class_test, 'voltha_switch_map')
133 voltha_teardown(voltha_ctrl, voltha_device, voltha_switch_map)
134
A R Karthick19771192017-04-25 14:57:05 -0700135def running_on_ciab():
136 if running_on_pod() is False:
137 return False
138 head_node = os.getenv('HEAD_NODE', 'prod')
139 HEAD_NODE = head_node + '.cord.lab' if len(head_node.split('.')) == 1 else head_node
140 agent = SSHTestAgent(host = HEAD_NODE, user = 'ubuntu', password = 'ubuntu')
141 #see if user ubuntu works
142 st, output = agent.run_cmd('sudo virsh list')
143 if st is False and output is not None:
144 #we are on real pod
145 return False
146
147 #try vagrant
148 agent = SSHTestAgent(host = HEAD_NODE, user = 'vagrant', password = 'vagrant')
149 st, output = agent.run_cmd('sudo virsh list')
150 if st is True and output is not None:
151 return True
152
153 return False