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
|
#!/usr/bin/env perl
# libguestfs
# Copyright (C) 2016 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;
use POSIX qw(uname);
my $script = $ENV{script};
unless (exists $ENV{SLOW} && $ENV{SLOW} eq "1") {
print STDERR "$script: use 'make check-slow' to run this test\n";
exit 77
}
# 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 "$script: test skipped because there is no perl Expect module\n";
exit 77
}
die "$script: guestname parameter not set, don't run this test directly"
unless @ARGV == 1;
my $guestname = $ARGV[0];
# Undefine this which is set by ./run script, since we want to use the
# public virt-builder templates.
delete $ENV{VIRT_BUILDER_DIRS};
my $disk = "password-$guestname.img";
eval { unlink $disk };
my $logfile = "password-$guestname.log";
eval { unlink $logfile };
# If the guest doesn't exist in virt-builder, skip. This is because
# we test some RHEL guests which most users won't have access to.
if (system ("virt-builder -l $guestname >/dev/null 2>&1") != 0) {
print STDERR "$script: test skipped because \"$guestname\" not known to virt-builder.\n";
exit 77
}
# We can only run this test on x86_64.
my ($sysname, $nodename, $release, $version, $machine) = uname ();
if ($machine ne "x86_64") {
print STDERR "$script: test skipped because !x86_64\n";
exit 77
}
# Check qemu is installed.
my $qemu = "qemu-system-x86_64";
if (system ("$qemu -help >/dev/null 2>&1") != 0) {
print STDERR "$script: test skipped because $qemu not found.\n";
exit 77
}
# Some guests need special virt-builder parameters.
# See virt-builder --notes $guestname and builder/test-console.sh
my @extra = ();
if ($guestname eq "debian-7") {
push @extra, "--edit",
'/etc/inittab: s,^#([1-9].*respawn.*/sbin/getty.*),$1,';
}
elsif ($guestname eq "debian-8" ||
$guestname eq "ubuntu-16.04" ||
$guestname eq "ubuntu-18.04") {
# These commands are required to fix the serial console.
# See https://askubuntu.com/questions/763908/ubuntu-16-04-has-no-vmware-console-access-once-booted-on-vmware-vsphere-5-5-clus/764476#764476
push @extra, "--edit",
'/etc/default/grub: s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,115200n8"/';
push @extra, "--run-command", "update-grub";
}
# Set a random root password under our control.
# http://www.perlmonks.org/?node_id=233023
my @chars = ("a".."z", "0".."9");
my $password = "";
$password .= $chars[rand @chars] for 1..8;
# Build the guest.
system ("virt-builder", $guestname, "--quiet",
"-o", $disk,
"--root-password", "password:$password",
@extra) == 0
or die "$script: virt-builder failed, see previous errors";
# Run qemu and make sure we get to the login prompt.
my $exp = Expect->spawn ($qemu,
"-no-user-config", "-display", "none",
"-machine", "accel=kvm:tcg",
"-m", "1024", "-boot", "c",
"-drive", "file=$disk,format=raw,if=ide",
"-serial", "stdio")
or die "$script: Expect could not spawn $qemu: $!\n";
$exp->log_file ($logfile);
my $timeout = 5 * 60;
my $r;
$r = $exp->expect ($timeout, 'login:');
unless (defined $r) {
die "$script: guest did not print the 'login:' prompt within\n$timeout seconds, or exited before getting to the prompt.\n";
}
# Try to log in.
$exp->send ("root\n");
$r = $exp->expect ($timeout, 'assword:');
unless (defined $r) {
die "$script: guest did not print the password prompt within\n$timeout seconds, or exited before getting to the prompt.\n";
}
$exp->send ("$password\n");
# Send a simple command; try to find some expected output.
$exp->send ("ls -1 /\n");
$timeout = 60;
$r = $exp->expect ($timeout, 'home');
unless (defined $r) {
die "$script: guest did not respond to a simple 'ls' command, the login probably failed\n";
}
$exp->hard_close ();
# Successful exit, so remove disk image and log file.
unlink $disk;
unlink $logfile;
exit 0
|