forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autotest.pm
441 lines (379 loc) · 14.3 KB
/
autotest.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2020 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, see <http://www.gnu.org/licenses/>.
package autotest;
use strict;
use warnings;
use bmwqemu;
use Exporter 'import';
use File::Basename;
use File::Spec;
use Socket;
use IO::Handle;
use POSIX '_exit';
use cv;
use signalblocker;
use Scalar::Util 'blessed';
use Mojo::IOLoop::ReadWriteProcess 'process';
use Mojo::IOLoop::ReadWriteProcess::Session 'session';
our @EXPORT_OK = qw(loadtest $current_test $selected_console $last_milestone_console query_isotovideo);
our %tests; # scheduled or run tests
our @testorder; # for keeping them in order
our $isotovideo;
our $process;
our $tests_running = 0;
=head1 Introduction
OS Autoinst decides which test modules to run based on a distribution specific
script called main.pm. This is either located in $vars{PRODUCTDIR} or
$vars{CASEDIR} (e.g. <distribution>/products/<product>/main.pm).
This script does not actually run the tests, but queues them to be run by
autotest.pm. A test is queued by calling the loadtest function which is also
located in autotest.pm. The test modules are executed in the same order that
loadtest is called.
=cut
sub find_script {
my ($script) = @_;
my $casedir = $bmwqemu::vars{CASEDIR};
my $script_override_path = join('/', $bmwqemu::vars{ASSETDIR} // '', 'other', $script);
if (-f $script_override_path) {
bmwqemu::diag("Found override test module for $script: $script_override_path");
return File::Spec->abs2rel($script_override_path, $casedir);
}
elsif (!-f join('/', $casedir, $script)) {
warn "loadtest needs a script below $casedir - $script is not\n";
return File::Spec->abs2rel($script, $casedir);
}
return "$casedir/$script";
}
=head2 loadtest
loadtest(<string>, [ name => <string>, run_args => <OpenQA::Test::RunArgs> ]);
Queue a test module for execution by the test runner. The first argument is
mandatory and specifies the Perl module name containing the test code to be run.
The next two arguments are optional and rarely used. First there is name which
can be used to give the test a different display name from the Perl source
file.
Then there is the run_args object, which must be a subclass of
OpenQA::Test::RunArgs. This is passed to the run() method of the test module
when it is executed. This is useful if you need to load the same test module
multiple times within a single test, but with different parameters each time.
Usually get_var and set_var are used to pass parameters to a test. However if
you use set_var multiple times inside main.pm then the final value you set
will be the one seen by all tests. Regardless of whether the tests were loaded
before or after the variable was set.
Both optional arguments were created for integrating a third party test suites
or test runners into OpenQA. In such cases the same test module may be
dynamically queued multiple times to execute different test cases within the
third party test suite.
Prefers test module files found in the openQA asset folder "other/" over
corresponding files within the "CASEDIR" tree to allow temporary overrides,
e.g. by making use of the openQA asset download feature.
=cut
sub loadtest {
my ($script, %args) = @_;
my $casedir = $bmwqemu::vars{CASEDIR};
my $script_path = find_script($script);
my ($name, $category) = parse_test_path($script_path);
my $test;
my $fullname = "$category-$name";
# perl code generating perl code is overcool
my $code = "package $name;";
$code .= "use lib '$casedir/lib';";
my $basename = dirname($script_path);
$code .= "use lib '$basename';";
$code .= "require '$script_path';";
eval $code;
if ($@) {
my $msg = "error on $script: $@";
bmwqemu::diag($msg);
bmwqemu::serialize_state(component => 'tests', msg => "unable to load $script, check the log for the cause (e.g. syntax error)");
die $msg;
}
$test = $name->new($category);
$test->{script} = $script;
$test->{fullname} = $fullname;
$test->{serial_failures} = $testapi::distri->{serial_failures} // [];
$test->{autoinst_failures} = $testapi::distri->{autoinst_failures} // [];
if (defined $args{run_args}) {
unless (blessed($args{run_args}) && $args{run_args}->isa('OpenQA::Test::RunArgs')) {
die 'The run_args must be a sub-class of OpenQA::Test::RunArgs';
}
$test->{run_args} = $args{run_args};
delete $args{run_args};
}
my $nr = '';
while (exists $tests{$fullname . $nr}) {
# to all perl hardcore hackers: fuck off!
$nr = $nr eq '' ? 1 : $nr + 1;
$test->{name} = join("#", $name, $nr);
}
if ($args{name}) {
$test->{name} = $args{name};
}
$tests{$fullname . $nr} = $test;
return unless $test->is_applicable;
push @testorder, $test;
# Test schedule may change at runtime. Update test_order.json to notify
# the OpenQA server of the change.
write_test_order() if $tests_running;
bmwqemu::diag("scheduling $test->{name} $script");
}
our $current_test;
our $selected_console;
our $last_milestone;
our $last_milestone_console;
sub parse_test_path {
my ($script_path) = @_;
unless ($script_path =~ m,(\w+)/([^/]+)\.pm$,) {
die "loadtest: script path '$script_path' does not match required pattern \\w.+/[^/]+.pm\n";
}
my $category = $1;
my $name = $2;
if ($category ne 'other') {
# show full folder hierachy as category for non-sideloaded tests
my $pattern = qr,(tests/[^/]+/)?tests/([\w/]+)/([^/]+)\.pm$,;
if ($script_path =~ $pattern) {
$category = $2;
}
}
return ($name, $category);
}
sub set_current_test {
($current_test) = @_;
query_isotovideo(
'set_current_test',
$current_test ?
{
name => $current_test->{name},
full_name => $current_test->{fullname},
}
: {});
}
sub write_test_order {
my @result;
for my $t (@testorder) {
push(
@result,
{
name => $t->{name},
category => $t->{category},
flags => $t->test_flags(),
script => $t->{script}});
}
bmwqemu::save_json_file(\@result, bmwqemu::result_dir . "/test_order.json");
}
sub make_snapshot {
my ($sname) = @_;
bmwqemu::diag("Creating a VM snapshot $sname");
return query_isotovideo('backend_save_snapshot', {name => $sname});
}
sub load_snapshot {
my ($sname) = @_;
bmwqemu::diag("Loading a VM snapshot $sname");
my $command = query_isotovideo('backend_load_snapshot', {name => $sname});
# On VMware VNC console needs to be re-selected after snapshot revert,
# so the screen is refreshed. Same with serial console.
return unless ($command // '') eq 'vmware_fixup';
testapi::select_console('sut');
query_isotovideo('backend_stop_serial_grab');
query_isotovideo('backend_start_serial_grab');
}
sub run_all {
my $died = 0;
my $completed = 0;
$tests_running = 1;
eval { $completed = autotest::runalltests(); };
if ($@) {
warn $@;
$died = 1; # test execution died
}
eval {
bmwqemu::save_vars(no_secret => 1);
myjsonrpc::send_json($isotovideo, {cmd => 'tests_done', died => $died, completed => $completed});
};
close $isotovideo;
Devel::Cover::report() if Devel::Cover->can('report');
_exit(0);
}
sub handle_sigterm {
my ($sig) = @_;
if ($current_test) {
bmwqemu::diag("autotest received signal $sig, saving results of current test before exiting");
$current_test->result('canceled');
$current_test->save_test_result();
}
_exit(1);
}
sub start_process {
my $child;
socketpair($child, $isotovideo, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "socketpair: $!";
$child->autoflush(1);
$isotovideo->autoflush(1);
$process = process(sub {
close $child;
$SIG{TERM} = \&handle_sigterm;
$SIG{INT} = 'DEFAULT';
$SIG{HUP} = 'DEFAULT';
$SIG{CHLD} = 'DEFAULT';
my $signal_blocker = signalblocker->new;
cv::init;
require tinycv;
tinycv::create_threads();
undef $signal_blocker;
$0 = "$0: autotest";
my $line = <$isotovideo>;
if (!$line) {
_exit(0);
}
print "GOT $line\n";
# the backend process might have added some defaults for the backend
bmwqemu::load_vars();
run_all;
},
sleeptime_during_kill => 0.1,
total_sleeptime_during_kill => 5,
blocking_stop => 1,
separate_err => 0,
set_pipes => 0,
internal_pipes => 0)->start;
$process->on(collected => sub { bmwqemu::diag "[" . __PACKAGE__ . "] process exited: " . shift->exit_status; });
close $isotovideo;
return ($process, $child);
}
# TODO: define use case and reintegrate
sub prestart_hook {
# run prestart test code before VM is started
if (-f "$bmwqemu::vars{CASEDIR}/prestart.pm") {
bmwqemu::diag "running prestart step";
eval { require $bmwqemu::vars{CASEDIR} . "/prestart.pm"; };
if ($@) {
bmwqemu::diag "prestart step FAIL:";
die $@;
}
}
}
# TODO: define use case and reintegrate
sub postrun_hook {
# run postrun test code after VM is stopped
if (-f "$bmwqemu::vars{CASEDIR}/postrun.pm") {
bmwqemu::diag "running postrun step";
eval { require "$bmwqemu::vars{CASEDIR}/postrun.pm" };
if ($@) {
bmwqemu::diag "postrun step FAIL:";
warn $@;
}
}
}
sub query_isotovideo {
my ($cmd, $args) = @_;
# deep copy
my %json;
if ($args) {
%json = %$args;
}
$json{cmd} = $cmd;
# send the command to isotovideo
myjsonrpc::send_json($isotovideo, \%json);
# wait for response (if test is paused, this will block until resume)
my $rsp = myjsonrpc::read_json($isotovideo);
return $rsp->{ret};
}
sub runalltests {
die "ERROR: no tests loaded" unless @testorder;
my $firsttest = $bmwqemu::vars{SKIPTO} || $testorder[0]->{fullname};
my $vmloaded = 0;
my $snapshots_supported = query_isotovideo('backend_can_handle', {function => 'snapshots'});
bmwqemu::diag "Snapshots are " . ($snapshots_supported ? '' : 'not ') . "supported";
write_test_order();
for (my $testindex = 0; $testindex <= $#testorder; $testindex++) {
my $t = $testorder[$testindex];
my $flags = $t->test_flags();
my $fullname = $t->{fullname};
if (!$vmloaded && $fullname eq $firsttest) {
if ($bmwqemu::vars{SKIPTO}) {
if ($bmwqemu::vars{TESTDEBUG}) {
load_snapshot('lastgood');
}
else {
load_snapshot($firsttest);
}
}
$vmloaded = 1;
}
if (!$vmloaded) {
bmwqemu::diag "skipping $fullname";
$t->skip_if_not_running();
$t->save_test_result();
next;
}
my $name = $t->{name};
bmwqemu::modstart "starting $name $t->{script}";
$t->start();
# avoid erasing the good vm snapshot
if ($snapshots_supported && (($bmwqemu::vars{SKIPTO} || '') ne $fullname) && $bmwqemu::vars{MAKETESTSNAPSHOTS}) {
make_snapshot($t->{fullname});
}
eval { $t->runtest; };
my $error = $@; # save $@, it might be overwritten
$t->save_test_result();
if ($error) {
my $msg = $error;
if ($msg !~ /^test.*died/) {
# avoid duplicating the message
bmwqemu::diag $msg;
}
if ($bmwqemu::vars{DUMP_MEMORY_ON_FAIL}) {
query_isotovideo('backend_save_memory_dump', {filename => $fullname});
}
if ($t->{fatal_failure} || $flags->{fatal} || (!exists $flags->{fatal} && !$snapshots_supported) || $bmwqemu::vars{TESTDEBUG}) {
bmwqemu::stop_vm();
return 0;
}
elsif (!$flags->{no_rollback} && $last_milestone) {
load_snapshot('lastgood');
$last_milestone->rollback_activated_consoles();
}
}
else {
if (!$flags->{no_rollback} && $last_milestone && $flags->{always_rollback}) {
load_snapshot('lastgood');
$last_milestone->rollback_activated_consoles();
}
my $makesnapshot = $bmwqemu::vars{TESTDEBUG};
# Only make a snapshot if there is a next test and it's not a fatal milestone
if ($testindex ne $#testorder) {
my $nexttestflags = $testorder[$testindex + 1]->test_flags();
$makesnapshot ||= $flags->{milestone} && !($nexttestflags->{milestone} && $nexttestflags->{fatal});
}
if ($snapshots_supported && $makesnapshot) {
make_snapshot('lastgood');
$last_milestone = $t;
$last_milestone_console = $selected_console;
}
}
}
return 1;
}
sub loadtestdir {
my ($dir) = @_;
die "need argument \$dir" unless $dir;
$dir =~ s/^\Q$bmwqemu::vars{CASEDIR}\E\/?//; # legacy where absolute path is specified
$dir = join('/', $bmwqemu::vars{CASEDIR}, $dir); # always load from casedir
die "'$dir' does not exist!\n" unless -d $dir;
foreach my $script (glob "$dir/*.pm") {
loadtest($script);
}
}
1;