blob: 34e76fa0cb73127544f82c26b798cfb9cd77eb90 [file] [log] [blame]
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +02001#!/usr/bin/env python3
2
3# osmo_gsm_tester: invoke a single test run
4#
5# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
6#
7# Author: Neels Hofmeyr <neels@hofmeyr.de>
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU Affero General Public License as
11# published by the Free Software Foundation, either version 3 of the
12# License, or (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU Affero General Public License for more details.
18#
19# You should have received a copy of the GNU Affero General Public License
20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21
22'''osmo_gsm_tester: invoke a single test run.
23
Neels Hofmeyr3531a192017-03-28 14:30:28 +020024Examples:
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020025
Neels Hofmeyr3531a192017-03-28 14:30:28 +020026./run_once.py ~/my_trial_package/ -s osmo_trx
27./run_once.py ~/my_trial_package/ -c sms_tests:dyn_ts+eu_band+bts_sysmo
28./run_once.py ~/my_trial_package/ -c sms_tests/mo_mt_sms:bts_trx
29
30(The names for test suite, scenario and series names used in these examples
31must be defined by the osmo-gsm-tester configuration.)
32
33A trial package contains binaries (usually built by a jenkins job) of GSM
34software, including the core network programs as well as binaries for the
35various BTS models.
36
37A test suite defines specific actions to be taken and verifies their outcome.
38Such a test suite may leave certain aspects of a setup undefined, e.g. it may
39be BTS model agnostic or does not care which voice codecs are chosen.
40
41A test scenario completes the picture in that it defines which specific choices
42shall be made to run a test suite. Any one test suite may thus run on any
43number of different scenarios, e.g. to test various voice codecs.
44
45Test scenarios may be combined. For example, one scenario may define a timeslot
46configuration to use, while another scenario may define the voice codec
47configuration.
48
49There may still be aspects that are neither required by a test suite nor
50strictly defined by a scenario, which will be resolved automatically, e.g. by
51choosing the first available item that matches the other constraints.
52
53A test run thus needs to define: a trial package containing built binaries, a
54combination of scenarios to run a suite in, and a test suite to launch in the
55given scenario with the given binaries.
56
57The osmo-gsm-tester configuration may define one or more series as a number of
58suite:scenario combinations. So instead of a specific suite:scenario
59combination, the name of such a series can be passed.
60
61If neither a combination or series is specified, the default series will be run
62as defined in the osmo-gsm-tester configuration.
63
64The scenarios and suites run for a given trial will be recorded in a trial
65package's directory: Upon launch, a 'test_package/run.<date>' directory will be
66created, which will collect logs and reports.
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020067'''
68
Neels Hofmeyre3528442017-04-08 21:18:30 +020069import sys
Neels Hofmeyrd46ea132017-04-08 15:56:31 +020070from osmo_gsm_tester import __version__
71from osmo_gsm_tester import trial, suite, log, config
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020072
73if __name__ == '__main__':
74 import argparse
75
Neels Hofmeyr3531a192017-03-28 14:30:28 +020076 parser = argparse.ArgumentParser(epilog=__doc__, formatter_class=argparse.RawTextHelpFormatter)
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020077 parser.add_argument('-V', '--version', action='store_true',
78 help='Show version')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020079 parser.add_argument('trial_package', nargs='+',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020080 help='Directory containing binaries to test')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020081 parser.add_argument('-s', '--suite-scenario', dest='suite_scenario', action='append',
82 help='A suite-scenarios combination like suite:scenario+scenario')
83 parser.add_argument('-S', '--series', dest='series', action='append',
84 help='A series of suite-scenarios combinations as defined in the'
85 ' osmo-gsm-tester configuration')
86 parser.add_argument('-t', '--test', dest='test', action='append',
Neels Hofmeyrf9de78f2017-05-06 16:04:37 +020087 help='Run only tests matching this name. Any test name that'
88 ' contains the given string is run. To get an exact patch,'
89 ' prepend a "=" like "-t =my_exact_name". The ".py" suffix is'
90 ' always optional.')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020091 parser.add_argument('-l', '--log-level', dest='log_level', choices=log.LEVEL_STRS.keys(),
92 default=None,
93 help='Set logging level for all categories (on stdout)')
94 parser.add_argument('-T', '--traceback', dest='trace', action='store_true',
95 help='Enable logging of tracebacks')
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020096 args = parser.parse_args()
97
98 if args.version:
Neels Hofmeyr3531a192017-03-28 14:30:28 +020099 print(__version__)
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +0200100 exit(0)
101
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200102 print('combinations:', repr(args.suite_scenario))
103 print('series:', repr(args.series))
104 print('trials:', repr(args.trial_package))
105 print('tests:', repr(args.test))
106
Neels Hofmeyrf8166882017-05-05 19:48:35 +0200107 # create a default log to stdout
108 log.LogTarget()
109
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200110 if args.log_level:
111 log.set_all_levels(log.LEVEL_STRS.get(args.log_level))
112 log.style_change(origin_width=32)
113 if args.trace:
114 log.style_change(trace=True)
115
116 combination_strs = list(args.suite_scenario or [])
117 # for series in args.series:
118 # combination_strs.extend(config.get_series(series))
119
120 if not combination_strs:
Neels Hofmeyrd46ea132017-04-08 15:56:31 +0200121 combination_strs = config.read_config_file(config.DEFAULT_SUITES_CONF, if_missing_return=[])
122
123 if combination_strs:
124 print('Running default suites:\n ' + ('\n '.join(combination_strs)))
Your Name3c6673a2017-04-08 18:52:39 +0200125 else:
126 print('No default suites configured (%r)' % config.DEFAULT_SUITES_CONF)
127
Neels Hofmeyrd46ea132017-04-08 15:56:31 +0200128
129 if not combination_strs:
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200130 raise RuntimeError('Need at least one suite:scenario or series to run')
131
132 suite_scenarios = []
133 for combination_str in combination_strs:
134 suite_scenarios.append(suite.load_suite_scenario_str(combination_str))
135
136 test_names = []
137 for test_name in (args.test or []):
138 found = False
Neels Hofmeyrf9de78f2017-05-06 16:04:37 +0200139 if test_name.startswith('=') and not test_name.endswith('.py'):
140 test_name = test_name + '.py'
Neels Hofmeyr930ac952017-05-06 15:49:53 +0200141 for suite_scenario_str, suite_def, scenarios in suite_scenarios:
142 for test in suite_def.tests:
Neels Hofmeyrf9de78f2017-05-06 16:04:37 +0200143 if test_name.startswith('='):
144 match = test_name[1:] == test.name()
145 else:
146 match = test_name in test.name()
147 if match:
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200148 found = True
149 test_names.append(test.name())
150 if not found:
151 raise RuntimeError('No test found for %r' % test_name)
152 if test_names:
153 print(repr(test_names))
154
155 trials = []
156 for trial_package in args.trial_package:
157 t = trial.Trial(trial_package)
Your Name44af3412017-04-13 03:11:59 +0200158 try:
159 t.verify()
160 trials.append(t)
161 except:
162 t.log_exn()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200163
Neels Hofmeyref42cb52017-04-08 19:38:58 +0200164 trials_passed = []
165 trials_failed = []
166
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200167 for current_trial in trials:
Your Name44af3412017-04-13 03:11:59 +0200168 try:
169 with current_trial:
170 suites_passed = []
171 suites_failed = []
172 for suite_scenario_str, suite_def, scenarios in suite_scenarios:
173 log.large_separator(current_trial.name(), suite_scenario_str)
174 suite_run = suite.SuiteRun(current_trial, suite_scenario_str, suite_def, scenarios)
175 result = suite_run.run_tests(test_names)
176 if result.all_passed:
177 suites_passed.append(suite_scenario_str)
178 suite_run.log('PASS')
179 else:
180 suites_failed.append(suite_scenario_str)
181 suite_run.err('FAIL')
182 if not suites_failed:
183 current_trial.log('PASS')
184 trials_passed.append(current_trial.name())
Neels Hofmeyref42cb52017-04-08 19:38:58 +0200185 else:
Your Name44af3412017-04-13 03:11:59 +0200186 current_trial.err('FAIL')
187 trials_failed.append((current_trial.name(), suites_passed, suites_failed))
188 except:
189 current_trial.log_exn()
Neels Hofmeyref42cb52017-04-08 19:38:58 +0200190
Neels Hofmeyr2ef9b002017-04-08 21:16:27 +0200191 sys.stderr.flush()
192 sys.stdout.flush()
Your Name44af3412017-04-13 03:11:59 +0200193 log.large_separator()
Neels Hofmeyref42cb52017-04-08 19:38:58 +0200194 if trials_passed:
195 print('Trials passed:\n ' + ('\n '.join(trials_passed)))
196 if trials_failed:
Your Name44af3412017-04-13 03:11:59 +0200197 print('Trials failed:')
198 for trial_name, suites_passed, suites_failed in trials_failed:
199 print(' %s (%d of %d suite runs failed)' % (trial_name, len(suites_failed), len(suites_failed) + len(suites_passed)))
200 for suite in suites_failed:
201 print(' FAIL:', suite)
Neels Hofmeyref42cb52017-04-08 19:38:58 +0200202 exit(1)
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +0200203
204# vim: expandtab tabstop=4 shiftwidth=4