-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathtest-virt-rescue.pl
executable file
·64 lines (53 loc) · 2.06 KB
/
test-virt-rescue.pl
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
#!/usr/bin/env perl
# libguestfs
# Copyright (C) 2012-2025 Red Hat Inc.
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
use warnings;
my $progname = $0;
$progname =~ s{.*/}{};
# This test requires the perl 'Expect' module. If it doesn't
# exist, skip the test.
eval "use Expect";
unless (exists $INC{"Expect.pm"}) {
print STDERR "$progname: test skipped because there is no perl Expect module\n";
exit 77
}
# Run virt-rescue and make sure we get to the rescue prompt.
my $exp = Expect->spawn ("virt-rescue", "--scratch")
or die "$progname: Expect could not spawn virt-rescue: $!\n";
my $timeout = 5 * 60;
my $r;
$r = $exp->expect ($timeout, '><rescue>');
unless (defined $r) {
my $see_errors;
if ($ENV{LIBGUESTFS_DEBUG}) {
$see_errors = "Look for errors in the debug output above."
} else {
$see_errors = "Try setting LIBGUESTFS_DEBUG=1 and running the test again."
}
die "$progname: virt-rescue did not print the '><rescue>' prompt within\n$timeout seconds, or exited before getting to the prompt.\n$see_errors\n";
}
# Send a simple command; expect to get back to the prompt.
$exp->send ("ls -1\n");
$timeout = 60;
$r = $exp->expect ($timeout, '><rescue>');
unless (defined $r) {
die "$progname: virt-rescue did not return to the prompt after sending a command\n";
}
# Check virt-rescue shell exits when we send the 'exit' command.
$exp->send ("exit\n");
$exp->soft_close ();