Allow a different pod spec for each pod
[samplevnf.git] / VNFs / DPPD-PROX / helper-scripts / rapid / runrapid.py
1 #!/usr/bin/python3
2
3 ##
4 ## Copyright (c) 2010-2020 Intel Corporation
5 ##
6 ## Licensed under the Apache License, Version 2.0 (the "License");
7 ## you may not use this file except in compliance with the License.
8 ## You may obtain a copy of the License at
9 ##
10 ##     http://www.apache.org/licenses/LICENSE-2.0
11 ##
12 ## Unless required by applicable law or agreed to in writing, software
13 ## distributed under the License is distributed on an "AS IS" BASIS,
14 ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ## See the License for the specific language governing permissions and
16 ## limitations under the License.
17 ##
18 from __future__ import print_function
19 from __future__ import print_function
20 from __future__ import division
21
22 from future import standard_library
23 standard_library.install_aliases()
24 from builtins import object
25 import os
26 import sys
27 import concurrent.futures
28 from concurrent.futures import ALL_COMPLETED
29 from rapid_cli import RapidCli
30 from rapid_log import RapidLog
31 from rapid_parser import RapidConfigParser
32 from rapid_defaults import RapidDefaults
33 from rapid_machine import RapidMachine
34 from rapid_generator_machine import RapidGeneratorMachine
35 from rapid_flowsizetest import FlowSizeTest
36 from rapid_corestatstest import CoreStatsTest
37 from rapid_portstatstest import PortStatsTest
38 from rapid_impairtest import ImpairTest
39 from rapid_irqtest import IrqTest
40 from rapid_warmuptest import WarmupTest
41
42 class RapidTestManager(object):
43     """
44     RapidTestManager Class
45     """
46     def __init__(self):
47         """
48         Init Function
49         """
50         self.machines = []
51
52     def __del__(self):
53         for machine in self.machines:
54             machine.close_prox()
55
56     @staticmethod
57     def get_defaults():
58         return (RapidDefaults.test_params)
59
60     def run_tests(self, test_params):
61         test_params = RapidConfigParser.parse_config(test_params)
62         RapidLog.debug(test_params)
63         monitor_gen = monitor_sut = False
64         background_machines = []
65         sut_machine = gen_machine = None
66         configonly = test_params['configonly']
67         for machine_params in test_params['machines']:
68             if 'gencores' in machine_params.keys():
69                 machine = RapidGeneratorMachine(test_params['key'],
70                         test_params['user'], test_params['password'],
71                         test_params['vim_type'], test_params['rundir'],
72                         test_params['resultsdir'], machine_params, configonly,
73                         test_params['ipv6'])
74                 if machine_params['monitor']:
75                     if monitor_gen:
76                         RapidLog.exception("Can only monitor 1 generator")
77                         raise Exception("Can only monitor 1 generator")
78                     else:
79                         monitor_gen = True
80                         gen_machine = machine
81                 else:
82                     background_machines.append(machine)
83             else:
84                 machine = RapidMachine(test_params['key'], test_params['user'],
85                         test_params['password'], test_params['vim_type'],
86                         test_params['rundir'], test_params['resultsdir'],
87                         machine_params, configonly)
88                 if machine_params['monitor']:
89                     if monitor_sut:
90                         RapidLog.exception("Can only monitor 1 sut")
91                         raise Exception("Can only monitor 1 sut")
92                     else:
93                         monitor_sut = True
94                         if machine_params['prox_socket']:
95                             sut_machine = machine
96             self.machines.append(machine)
97         try:
98             prox_executor = concurrent.futures.ThreadPoolExecutor(max_workers=len(self.machines))
99             self.future_to_prox = {prox_executor.submit(machine.start_prox): machine for machine in self.machines}
100             if configonly:
101                 concurrent.futures.wait(self.future_to_prox,return_when=ALL_COMPLETED)
102                 sys.exit()
103             socket_executor = concurrent.futures.ThreadPoolExecutor(max_workers=len(self.machines))
104             future_to_connect_prox = {socket_executor.submit(machine.connect_prox): machine for machine in self.machines}
105             concurrent.futures.wait(future_to_connect_prox,return_when=ALL_COMPLETED)
106             result = 0
107             for test_param in test_params['tests']:
108                 RapidLog.info(test_param['test'])
109                 if test_param['test'] in ['flowsizetest', 'TST009test',
110                         'fixed_rate', 'increment_till_fail']:
111                     test = FlowSizeTest(test_param,
112                             test_params['lat_percentile'],
113                             test_params['runtime'],
114                             test_params['TestName'],
115                             test_params['environment_file'],
116                             gen_machine,
117                             sut_machine, background_machines,
118                             test_params['sleep_time'])
119                 elif test_param['test'] in ['corestatstest']:
120                     test = CoreStatsTest(test_param,
121                             test_params['runtime'],
122                             test_params['TestName'],
123                             test_params['environment_file'],
124                             self.machines)
125                 elif test_param['test'] in ['portstatstest']:
126                     test = PortStatsTest(test_param,
127                             test_params['runtime'],
128                             test_params['TestName'],
129                             test_params['environment_file'],
130                             self.machines)
131                 elif test_param['test'] in ['impairtest']:
132                     test = ImpairTest(test_param,
133                             test_params['lat_percentile'],
134                             test_params['runtime'],
135                             test_params['TestName'],
136                             test_params['environment_file'],
137                             gen_machine,
138                             sut_machine, background_machines)
139                 elif test_param['test'] in ['irqtest']:
140                     test = IrqTest(test_param,
141                             test_params['runtime'],
142                             test_params['TestName'],
143                             test_params['environment_file'],
144                             self.machines)
145                 elif test_param['test'] in ['warmuptest']:
146                     test = WarmupTest(test_param,
147                             gen_machine)
148                 else:
149                     RapidLog.debug('Test name ({}) is not valid:'.format(
150                         test_param['test']))
151                 single_test_result, result_details = test.run()
152                 result = result + single_test_result
153             for machine in self.machines:
154                 machine.close_prox()
155             concurrent.futures.wait(self.future_to_prox,
156                     return_when=ALL_COMPLETED)
157         except (ConnectionError, KeyboardInterrupt) as e:
158             result = result_details = None
159             socket_executor.shutdown(wait=False)
160             socket_executor._threads.clear()
161             prox_executor.shutdown(wait=False)
162             prox_executor._threads.clear()
163             concurrent.futures.thread._threads_queues.clear()
164             RapidLog.error("Test interrupted: {} {}".format(
165                 type(e).__name__,e))
166         return (result, result_details)
167
168 def main():
169     """Main function.
170     """
171     test_params = RapidTestManager.get_defaults()
172     # When no cli is used, the process_cli can be replaced by code modifying
173     # test_params
174     test_params = RapidCli.process_cli(test_params)
175     _, test_file_name = os.path.split(test_params['test_file'])
176     _, environment_file_name = os.path.split(test_params['environment_file'])
177     if 'resultsdir' in test_params:
178         res_dir = test_params['resultsdir']
179         log_file = '{}/RUN{}.{}.log'.format(res_dir,environment_file_name,
180                 test_file_name)
181     else:
182         log_file = 'RUN{}.{}.log'.format(environment_file_name, test_file_name)
183     RapidLog.log_init(log_file, test_params['loglevel'],
184             test_params['screenloglevel'] , test_params['version']  )
185     test_manager = RapidTestManager()
186     test_result, _ = test_manager.run_tests(test_params)
187     RapidLog.log_close()
188
189 if __name__ == "__main__":
190     main()