Table of Contents

Daniel Verkamp: Automated regression testing

Journal Week 7

Monday, July 6

Added support for saving and loading snapshots in testsuite; this will allow semi-automated testing, as discussed with mcb30:

Tuesday, July 7

Built a simple test server VM (Debian with DHCPD and Apache), saved a snapshot (named “server3” in the following script) and used it to boot a test VM with the testsuite framework:

#!/usr/bin/perl -w

use Test::Network::Vde;
use Test::Machine::Qemu;
use strict;
use warnings;

my $server = new Test::Machine::Qemu;
my $client = new Test::Machine::Qemu;

my $network = new Test::Network::Vde;

$server->hdd ( "server.hd" );
$server->nic ( { type => "pcnet", macaddr => "52:54:00:12:34:57" } );
$server->network ( $network );

$client->fdd ( "../bin/rtl8139.dsk" );
$client->nic ( { type => "rtl8139", macaddr => "52:54:00:12:34:56" } );
$client->network ( $network );

$server->load_snapshot ( "server3" );

$server->run();
$client->run();

<STDIN>;