forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autotest.pm
348 lines (293 loc) · 10.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
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2016 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 bmwqemu;
use Exporter 'import';
our @EXPORT_OK = qw(loadtest $current_test query_isotovideo);
use File::Basename;
use File::Spec;
use Socket;
use IO::Handle;
use POSIX '_exit';
use cv;
use Scalar::Util 'blessed';
our %tests; # scheduled or run tests
our @testorder; # for keeping them in order
our $isotovideo;
=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
=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.
=cut
sub loadtest {
my ($script, %args) = @_;
my $casedir = $bmwqemu::vars{CASEDIR};
unless (-f join('/', $casedir, $script)) {
warn "loadtest needs a script below $casedir - $script is not\n";
$script = File::Spec->abs2rel($script, $bmwqemu::vars{CASEDIR});
}
unless ($script =~ m,(\w+)/([^/]+)\.pm$,) {
die "loadtest needs a script to match \\w+/[^/]+.pm\n";
}
my $category = $1;
my $name = $2;
my $test;
my $fullname = "$category-$name";
# perl code generating perl code is overcool
# FIXME turn this into a proper eval instead of a generated string
my $code = "package $name;";
$code .= "use lib '$casedir/lib';";
my $basename = dirname($script);
$code .= "use lib '$casedir/$basename';";
$code .= "require '$casedir/$script';";
eval $code; ## no critic
if ($@) {
my $msg = "error on $script: $@";
bmwqemu::diag($msg);
die $msg;
}
$test = $name->new($category);
$test->{script} = $script;
$test->{fullname} = $fullname;
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;
bmwqemu::diag("scheduling $test->{name} $script");
}
our $current_test;
our $last_milestone;
sub set_current_test {
($current_test) = @_;
query_isotovideo('set_current_test', {name => $current_test->{name}});
}
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");
return query_isotovideo('backend_load_snapshot', {name => $sname});
}
sub run_all {
my $died = 0;
my $completed = 0;
eval { $completed = autotest::runalltests(); };
if ($@) {
warn $@;
$died = 1; # test execution died
}
bmwqemu::save_vars();
myjsonrpc::send_json($isotovideo, {cmd => 'tests_done', died => $died, completed => $completed});
close $isotovideo;
Devel::Cover::report() if Devel::Cover->can('report');
_exit(0);
}
sub start_process {
my $child;
socketpair($child, $isotovideo, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "socketpair: $!";
$child->autoflush(1);
$isotovideo->autoflush(1);
my $testpid = fork();
if ($testpid) {
close $isotovideo;
return ($testpid, $child);
}
die "cannot fork: $!" unless defined $testpid;
close $child;
$SIG{TERM} = 'DEFAULT';
$SIG{INT} = 'DEFAULT';
$SIG{HUP} = 'DEFAULT';
$SIG{CHLD} = 'DEFAULT';
cv::init;
require tinycv;
$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;
}
# 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"; }; ## no critic
if ($@) {
bmwqemu::diag "postrun step FAIL:";
warn $@;
}
}
}
sub query_isotovideo {
my ($cmd, $args) = @_;
# deep copy
my %json;
if ($args) {
%json = %$args;
}
$json{cmd} = $cmd;
myjsonrpc::send_json($isotovideo, \%json);
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 $t (@testorder) {
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) {
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; };
$t->save_test_result();
if ($@) {
my $msg = $@;
if ($msg !~ /^test.*died/) {
# avoid duplicating the message
bmwqemu::diag $msg;
}
if ($flags->{fatal} || !$snapshots_supported || $bmwqemu::vars{TESTDEBUG}) {
bmwqemu::stop_vm();
return 0;
}
elsif (!$flags->{norollback}) {
if ($last_milestone) {
load_snapshot('lastgood');
$last_milestone->rollback_activated_consoles();
}
}
}
else {
if ($snapshots_supported && ($flags->{milestone} || $bmwqemu::vars{TESTDEBUG})) {
make_snapshot('lastgood');
$last_milestone = $t;
}
}
}
else {
bmwqemu::diag "skipping $fullname";
$t->skip_if_not_running();
$t->save_test_result();
}
}
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;
# vim: set sw=4 et: