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
|
# -*- perl -*-
#
# Copyright (C) 2009 Red Hat, Inc.
# Copyright (C) 2009 Daniel P. Berrange
#
# This program is free software; You can redistribute it and/or modify
# it under the GNU General Public License as published by the Free
# Software Foundation; either version 2, or (at your option) any
# later version
#
# The file "LICENSE" distributed along with this file provides full
# details of the terms and conditions
#
=pod
=head1 NAME
domain/200-disk-hotplug.t - verify hot plug & unplug of a disk
=head1 DESCRIPTION
The test case validates that it is possible to hotplug a disk
to a running domain, and then unplug it again.
=cut
use strict;
use warnings;
use Test::More tests => 5;
use Sys::Virt::TCK;
use Test::Exception;
my $tck = Sys::Virt::TCK->new();
my $conn = eval { $tck->setup(); };
BAIL_OUT "failed to setup test harness: $@" if $@;
END {
$tck->cleanup if $tck;
}
my $xml = $tck->generic_domain("tck")->as_xml;
diag "Creating a new transient domain";
my $dom;
ok_domain(sub { $dom = $conn->create_domain($xml) }, "created transient domain object");
my $mac = "00:11:22:33:44:55";
my $model = "virtio";
my $netxml = <<EOF;
<interface type='user'>
<mac address='$mac'/>
<model type='$model'/>
</interface>
EOF
my $initialxml = $dom->get_xml_description;
diag "Attaching the new interface $mac";
lives_ok(sub { $dom->attach_device($netxml); }, "interface has been attached");
my $newxml = $dom->get_xml_description;
ok($newxml =~ m|$mac|, "new XML has extra NIC present");
diag "Detaching the new interface $mac";
lives_ok(sub { $dom->detach_device($netxml); }, "interface has been detached");
my $finalxml = $dom->get_xml_description;
is($initialxml, $finalxml, "final XML has removed the disk")
|