blob: 45183d37dd89b87280f93b944c8f5a4c94d757d8 [file] [log] [blame]
A R Karthick81acbff2016-06-17 14:45:16 -07001#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002# Copyright 2016-present Ciena Corporation
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
A R Karthick81acbff2016-06-17 14:45:16 -07007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick81acbff2016-06-17 14:45:16 -07009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# 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#
A R Karthickd44cea12016-07-20 12:16:41 -070016from CordContainer import Container, Onos, OnosCord, Quagga, Radius, reinitContainerClients
Chetan Gaonker3533faa2016-04-25 17:50:14 -070017from nose.tools import nottest
A R Karthick81acbff2016-06-17 14:45:16 -070018from SimpleXMLRPCServer import SimpleXMLRPCServer
19import daemon
20import xmlrpclib
21import os
A R Karthicke99ab5c2016-09-30 13:59:57 -070022import signal
A R Karthick81acbff2016-06-17 14:45:16 -070023import json
24import time
25import threading
Chetan Gaonker3533faa2016-04-25 17:50:14 -070026
A R Karthick81acbff2016-06-17 14:45:16 -070027##Server to handle container restart/stop requests from test container.
Chetan Gaonker3533faa2016-04-25 17:50:14 -070028##Used now to restart ONOS from vrouter test container
29
30CORD_TEST_HOST = '172.17.0.1'
31CORD_TEST_PORT = 25000
32
A R Karthick81acbff2016-06-17 14:45:16 -070033class QuaggaStopWrapper(Container):
A R Karthick07608ef2016-08-23 16:51:19 -070034 def __init__(self, name = Quagga.NAME, image = Quagga.IMAGE, tag = 'candidate'):
35 super(QuaggaStopWrapper, self).__init__(name, image, prefix = Container.IMAGE_PREFIX, tag = tag)
A R Karthick81acbff2016-06-17 14:45:16 -070036 if self.exists():
37 self.kill()
Chetan Gaonker3533faa2016-04-25 17:50:14 -070038
A R Karthick81acbff2016-06-17 14:45:16 -070039class CordTestServer(object):
40
A R Karthickbd9b8a32016-07-21 09:56:45 -070041 onos_cord = None
42
A R Karthick81acbff2016-06-17 14:45:16 -070043 def __restart_onos(self, config = None):
A R Karthickbd9b8a32016-07-21 09:56:45 -070044 if self.onos_cord:
A R Karthickd44cea12016-07-20 12:16:41 -070045 onos_config = '{}/network-cfg.json'.format(OnosCord.onos_config_dir)
46 else:
47 onos_config = '{}/network-cfg.json'.format(Onos.host_config_dir)
A R Karthick81acbff2016-06-17 14:45:16 -070048 if config is None:
49 try:
50 os.unlink(onos_config)
51 except:
52 pass
Chetan Gaonker6cf6e472016-04-26 14:41:51 -070053 print('Restarting ONOS')
A R Karthickbd9b8a32016-07-21 09:56:45 -070054 if self.onos_cord:
55 self.onos_cord.start(restart = True, network_cfg = config)
A R Karthickd44cea12016-07-20 12:16:41 -070056 else:
A R Karthicke99ab5c2016-09-30 13:59:57 -070057 Onos(restart = True, network_cfg = config, image = Onos.IMAGE, tag = Onos.TAG)
A R Karthick81acbff2016-06-17 14:45:16 -070058 return 'DONE'
Chetan Gaonker6cf6e472016-04-26 14:41:51 -070059
A R Karthick81acbff2016-06-17 14:45:16 -070060 def restart_onos(self, kwargs):
61 return self.__restart_onos(**kwargs)
62
63 def __restart_quagga(self, config = None, boot_delay = 30 ):
Chetan Gaonkerfd3d6502016-05-03 13:23:07 -070064 config_file = Quagga.quagga_config_file
A R Karthick81acbff2016-06-17 14:45:16 -070065 if config is not None:
66 quagga_config = '{}/testrib_gen.conf'.format(Quagga.host_quagga_config)
67 config_file = '{}/testrib_gen.conf'.format(Quagga.guest_quagga_config)
68 with open(quagga_config, 'w+') as fd:
69 fd.write(str(config))
70 print('Restarting QUAGGA with config file %s, delay %d' %(config_file, boot_delay))
A R Karthick07608ef2016-08-23 16:51:19 -070071 Quagga(prefix = Container.IMAGE_PREFIX, restart = True, config_file = config_file, boot_delay = boot_delay)
A R Karthick81acbff2016-06-17 14:45:16 -070072 return 'DONE'
Chetan Gaonker6cf6e472016-04-26 14:41:51 -070073
A R Karthick81acbff2016-06-17 14:45:16 -070074 def restart_quagga(self, kwargs):
75 return self.__restart_quagga(**kwargs)
Chetan Gaonker7f4bf742016-05-04 15:56:08 -070076
A R Karthick81acbff2016-06-17 14:45:16 -070077 def stop_quagga(self):
78 quaggaStop = QuaggaStopWrapper()
A R Karthick4a2362c2016-06-22 17:32:44 -070079 time.sleep(5)
Chetan Gaonker6cf6e472016-04-26 14:41:51 -070080 try:
A R Karthick81acbff2016-06-17 14:45:16 -070081 quagga_config_gen = '{}/testrib_gen.conf'.format(Quagga.host_quagga_config)
82 os.unlink(quagga_config_gen)
83 except: pass
84 return 'DONE'
Chetan Gaonker6cf6e472016-04-26 14:41:51 -070085
A R Karthickc3d80e22016-06-22 17:51:24 -070086 def __run_shell_quagga(self, cmd = None):
87 ret = 0
88 if cmd is not None:
89 exec_cmd = 'docker exec {} {}'.format(Quagga.NAME, cmd)
90 ret = os.system(exec_cmd)
91 return ret
92
A R Karthicka013a272016-08-16 16:40:19 -070093 def __run_shell(self, cmd = None):
94 ret = 0
95 if cmd is not None:
96 ret = os.system(cmd)
97 return ret
98
A R Karthickc3d80e22016-06-22 17:51:24 -070099 def run_shell_quagga(self, kwargs):
100 return self.__run_shell_quagga(**kwargs)
101
A R Karthicka013a272016-08-16 16:40:19 -0700102 def run_shell(self, kwargs):
103 return self.__run_shell(**kwargs)
104
A R Karthick81acbff2016-06-17 14:45:16 -0700105 def restart_radius(self):
106 print('Restarting RADIUS Server')
A R Karthick07608ef2016-08-23 16:51:19 -0700107 Radius(prefix = Container.IMAGE_PREFIX, restart = True)
A R Karthick81acbff2016-06-17 14:45:16 -0700108 return 'DONE'
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700109
A R Karthicke99ab5c2016-09-30 13:59:57 -0700110 def shutdown(self):
111 print('Shutting down cord test server')
112 os.kill(0, signal.SIGKILL)
113 return 'DONE'
114
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700115@nottest
A R Karthickd44cea12016-07-20 12:16:41 -0700116def cord_test_server_start(daemonize = True, cord_test_host = CORD_TEST_HOST,
117 cord_test_port = CORD_TEST_PORT, onos_cord = None):
A R Karthick81acbff2016-06-17 14:45:16 -0700118 server = SimpleXMLRPCServer( (cord_test_host, cord_test_port) )
119 server.register_instance(CordTestServer())
A R Karthickbd9b8a32016-07-21 09:56:45 -0700120 CordTestServer.onos_cord = onos_cord
A R Karthick81acbff2016-06-17 14:45:16 -0700121 if daemonize is True:
122 d = daemon.DaemonContext(files_preserve = [server],
123 detach_process = True)
124 with d:
125 reinitContainerClients()
126 server.serve_forever()
127 else:
128 task = threading.Thread(target = server.serve_forever)
129 ##terminate when main thread exits
130 task.daemon = True
131 task.start()
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700132 return server
133
134@nottest
135def cord_test_server_stop(server):
136 server.shutdown()
137 server.server_close()
138
139@nottest
A R Karthick81acbff2016-06-17 14:45:16 -0700140def get_cord_test_loc():
141 host = os.getenv('CORD_TEST_HOST', CORD_TEST_HOST)
142 port = int(os.getenv('CORD_TEST_PORT', CORD_TEST_PORT))
143 return host, port
144
145def rpc_server_instance():
146 '''Stateless'''
147 host, port = get_cord_test_loc()
148 rpc_server = 'http://{}:{}'.format(host, port)
149 return xmlrpclib.Server(rpc_server, allow_none = True)
150
151@nottest
152def __cord_test_onos_restart(**kwargs):
153 return rpc_server_instance().restart_onos(kwargs)
154
155@nottest
156def cord_test_onos_restart(config = None):
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700157 '''Send ONOS restart to server'''
A R Karthick81acbff2016-06-17 14:45:16 -0700158 data = __cord_test_onos_restart(config = config)
Chetan Gaonker6cf6e472016-04-26 14:41:51 -0700159 if data == 'DONE':
160 return True
161 return False
162
163@nottest
A R Karthick81acbff2016-06-17 14:45:16 -0700164def __cord_test_quagga_restart(**kwargs):
165 return rpc_server_instance().restart_quagga(kwargs)
166
167@nottest
168def cord_test_quagga_restart(config = None, boot_delay = 30):
Chetan Gaonker6cf6e472016-04-26 14:41:51 -0700169 '''Send QUAGGA restart to server'''
A R Karthick81acbff2016-06-17 14:45:16 -0700170 data = __cord_test_quagga_restart(config = config, boot_delay = boot_delay)
171 if data == 'DONE':
172 return True
173 return False
174
175@nottest
A R Karthickc3d80e22016-06-22 17:51:24 -0700176def __cord_test_quagga_shell(**kwargs):
177 return rpc_server_instance().run_shell_quagga(kwargs)
178
179@nottest
180def cord_test_quagga_shell(cmd = None):
181 '''Send QUAGGA shell cmd to server'''
182 return __cord_test_quagga_shell(cmd = cmd)
183
184@nottest
A R Karthicka013a272016-08-16 16:40:19 -0700185def __cord_test_shell(**kwargs):
186 return rpc_server_instance().run_shell(kwargs)
187
188@nottest
189def cord_test_shell(cmd = None):
190 '''Send shell cmd to run remotely'''
191 return __cord_test_shell(cmd = cmd)
192
193@nottest
A R Karthick81acbff2016-06-17 14:45:16 -0700194def cord_test_quagga_stop():
195 data = rpc_server_instance().stop_quagga()
Chetan Gaonker3533faa2016-04-25 17:50:14 -0700196 if data == 'DONE':
197 return True
198 return False
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700199
200@nottest
201def cord_test_radius_restart():
202 '''Send Radius server restart to server'''
A R Karthick81acbff2016-06-17 14:45:16 -0700203 data = rpc_server_instance().restart_radius()
Chetan Gaonker7f4bf742016-05-04 15:56:08 -0700204 if data == 'DONE':
205 return True
206 return False
A R Karthicke99ab5c2016-09-30 13:59:57 -0700207
208@nottest
209def cord_test_server_shutdown(host, port):
210 '''Shutdown the cord test server'''
211 rpc_server = 'http://{}:{}'.format(host, port)
212 try:
213 xmlrpclib.Server(rpc_server, allow_none = True).shutdown()
214 except: pass
215
216 return True