forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmwqemu.pm
executable file
·360 lines (289 loc) · 9.1 KB
/
bmwqemu.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
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2015 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 bmwqemu;
use strict;
use warnings;
use autodie ':all';
use Time::HiRes qw(sleep gettimeofday);
use IO::Socket;
use Fcntl ':flock';
use POSIX;
use Carp;
use Mojo::JSON; # booleans
use Cpanel::JSON::XS ();
use File::Path 'remove_tree';
use Data::Dumper;
use Mojo::Log;
use File::Spec::Functions;
use Exporter 'import';
use POSIX 'strftime';
use Time::HiRes 'gettimeofday';
our $VERSION;
our @EXPORT = qw(fileContent save_vars);
our @EXPORT_OK = qw(diag);
use backend::driver;
require IPC::System::Simple;
sub mydie;
$| = 1;
our $default_timeout = 30; # assert timeout, 0 is a valid timeout
our $openqa_default_share = '/var/lib/openqa/share';
my @ocrrect;
our $screenshotpath = "qemuscreenshot";
# global vars
our $logger;
our $direct_output;
# Known locations of OVMF (UEFI) firmware: first is openSUSE, second is
# the kraxel.org nightly packages, third is Fedora's edk2-ovmf package,
# fourth is Debian's ovmf package.
our @ovmf_locations = (
'/usr/share/qemu/ovmf-x86_64-ms.bin', '/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd',
'/usr/share/edk2/ovmf/OVMF_CODE.fd', '/usr/share/OVMF/OVMF_CODE.fd'
);
our %vars;
sub load_vars {
my $fn = "vars.json";
my $ret = {};
local $/;
my $fh;
eval { open($fh, '<', $fn) };
return 0 if $@;
eval { $ret = Cpanel::JSON::XS->new->relaxed->decode(<$fh>); };
die "parse error in vars.json:\n$@" if $@;
close($fh);
%vars = %{$ret};
return;
}
sub save_vars {
my (%args) = @_;
my $fn = "vars.json";
unlink "vars.json" if -e "vars.json";
open(my $fd, ">", $fn);
flock($fd, LOCK_EX) or die "cannot lock vars.json: $!\n";
truncate($fd, 0) or die "cannot truncate vars.json: $!\n";
my $write_vars = \%vars;
if ($args{no_secret}) {
$write_vars = {};
$write_vars->{$_} = $vars{$_} for (grep !/^_SECRET_/, keys(%vars));
}
# make sure the JSON is sorted
my $json = Cpanel::JSON::XS->new->pretty->canonical;
print $fd $json->encode($write_vars);
close($fd);
return;
}
sub result_dir {
return "testresults";
}
our $gocrbin = "/usr/bin/gocr";
# set from isotovideo during initialization
our $scriptdir;
sub init {
load_vars();
$bmwqemu::vars{BACKEND} ||= "qemu";
# remove directories for asset upload
remove_tree("assets_public");
remove_tree("assets_private");
remove_tree(result_dir);
mkdir result_dir;
mkdir join('/', result_dir, 'ulogs');
if ($direct_output) {
$logger = Mojo::Log->new(level => 'debug');
}
else {
$logger = Mojo::Log->new(level => 'debug', path => catfile(result_dir, 'autoinst-log.txt'));
}
$logger->format(
sub {
my ($time, $level, @lines) = @_;
# Unfortunately $time doesn't have the precision we want. So we need to use Time::HiRes
$time = gettimeofday;
return sprintf(strftime("[%FT%T.%%03d %Z] [$level] ", localtime($time)), 1000 * ($time - int($time))) . join("\n", @lines, '');
});
}
sub ensure_valid_vars {
# defaults
$vars{QEMUPORT} ||= 15222;
$vars{VNC} ||= 90;
# openQA already sets a random string we can reuse
$vars{JOBTOKEN} ||= random_string(10);
if ($gocrbin && !-x $gocrbin) {
$gocrbin = undef;
}
if ($vars{SUSEMIRROR} && $vars{SUSEMIRROR} =~ s{^(\w+)://}{}) { # strip & check proto
if ($1 ne "http") {
die "only http mirror URLs are currently supported but found '$1'.";
}
}
die "CASEDIR variable not set, unknown test case directory" if !defined $vars{CASEDIR};
die "No scripts in $vars{CASEDIR}" if !-e "$vars{CASEDIR}";
unless ($vars{PRJDIR}) {
if (index($vars{CASEDIR}, $openqa_default_share) != 0) {
diag("PRJDIR not specified and CASEDIR ($vars{CASEDIR}) does not appear to be a subdir of default ($openqa_default_share), using CASEDIR instead");
$vars{PRJDIR} = $vars{CASEDIR};
}
else {
$vars{PRJDIR} = $openqa_default_share;
}
}
save_vars();
}
## some var checks end
# global vars end
# local vars
our $backend; #FIXME: make local after adding frontend-api to bmwqemu
# local vars end
# global/shared var set functions
sub set_ocr_rect {
@ocrrect = @_;
return;
}
# global/shared var set functions end
# util and helper functions
sub log_format_callback {
my ($time, $level, @lines) = @_;
# Unfortunately $time doesn't have the precision we want. So we need to use Time::HiRes
$time = gettimeofday;
return sprintf(strftime("[%FT%T.%%03d %Z] [$level] ", localtime($time)), 1000 * ($time - int($time))) . join("\n", @lines, '');
}
sub diag {
my ($args) = @_;
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
confess "missing input" unless $_[0];
$logger->debug("@_");
return;
}
sub fctres {
my ($text, $fname) = @_;
$fname //= (caller(1))[3];
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
$logger->debug(">>> $fname: $text");
return;
}
sub fctinfo {
my ($text, $fname) = @_;
$fname //= (caller(1))[3];
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
$logger->info("::: $fname: $text");
return;
}
sub fctwarn {
my ($text, $fname) = @_;
$fname //= (caller(1))[3];
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
$logger->warn("!!! $fname: $text");
return;
}
sub modstart {
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
$logger->debug("||| @{[join(' ', @_)]}");
return;
}
use autotest '$current_test';
sub current_test {
return $autotest::current_test;
}
sub update_line_number {
return unless current_test;
return unless current_test->{script};
my $out = "";
my $ending = quotemeta(current_test->{script});
for my $i (1 .. 10) {
my ($package, $filename, $line, $subroutine, $hasargs, $wantarray, $evaltext, $is_require, $hints, $bitmask, $hinthash) = caller($i);
last unless $filename;
next unless $filename =~ m/$ending$/;
$logger->debug("$filename:$line called $subroutine");
last;
}
return;
}
# pretty print like Data::Dumper but without the "VAR1 = " prefix
sub pp {
# FTR, I actually hate Data::Dumper.
my $value_with_trailing_newline = Data::Dumper->new(\@_)->Terse(1)->Dump();
chomp($value_with_trailing_newline);
return $value_with_trailing_newline;
}
sub log_call {
my $fname = (caller(1))[3];
update_line_number();
my @result;
while (my ($key, $value) = splice(@_, 0, 2)) {
push @result, join("=", $key, pp($value));
}
my $params = join(", ", @result);
$logger = Mojo::Log->new(level => 'debug', format => \&log_format_callback) unless $logger;
$logger->debug('<<< ' . $fname . "($params)");
return;
}
sub fileContent {
my ($fn) = @_;
no autodie 'open';
open(my $fd, "<", $fn) or return;
local $/;
my $result = <$fd>;
close($fd);
return $result;
}
# util and helper functions end
# backend management
sub stop_vm {
return unless $backend;
my $ret = $backend->stop();
return $ret;
}
sub mydie {
my ($cause_of_death) = @_;
log_call(cause_of_death => $cause_of_death);
croak "mydie";
}
# runtime information gathering functions end
# store the obj as json into the given filename
sub save_json_file {
my ($result, $fn) = @_;
open(my $fd, ">", "$fn.new");
my $json = Cpanel::JSON::XS->new->pretty->canonical->encode($result);
print $fd $json;
close($fd);
return rename("$fn.new", $fn);
}
sub scale_timeout {
my ($timeout) = @_;
return $timeout * ($vars{TIMEOUT_SCALE} // 1);
}
=head2 random_string
random_string([$count]);
Just a random string useful for pseudo security or temporary files.
=cut
sub random_string {
my ($count) = @_;
$count //= 4;
my $string;
my @chars = ('a' .. 'z', 'A' .. 'Z');
$string .= $chars[rand @chars] for 1 .. $count;
return $string;
}
sub hashed_string {
fctwarn '@DEPRECATED: Use testapi::hashed_string instead';
return testapi::hashed_string(@_);
}
sub wait_for_one_more_screenshot {
# sleeping for one second should ensure that one more screenshot is taken
# uncoverable subroutine
# uncoverable statement
sleep 1;
}
1;
# vim: set sw=4 et: