/usr/share/perl5/Rex/Test/Base.pm is in rex 1.4.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
=head1 NAME
Rex::Test::Base - Basic Test Module
=head1 DESCRIPTION
This is a basic test module to test your code with the help of local VMs. You can place your tests in the "t" directory.
=head1 EXAMPLE
use Rex::Test::Base;
use Data::Dumper;
use Rex -base;
test {
my $t = shift;
$t->name("ubuntu test");
$t->base_vm("http://box.rexify.org/box/ubuntu-server-12.10-amd64.ova");
$t->vm_auth(user => "root", password => "box");
$t->run_task("setup");
$t->has_package("vim");
$t->has_package("ntp");
$t->has_package("unzip");
$t->has_file("/etc/ntp.conf");
$t->has_service_running("ntp");
$t->has_content("/etc/passwd", qr{root:x:0:}ms);
run "ls -l";
$t->ok($? == 0, "ls -l returns success.");
$t->finish;
};
1; # last line
=head1 METHODS
=cut
package Rex::Test::Base;
use strict;
use warnings;
use base 'Test::Builder::Module';
our $VERSION = '1.4.1'; # VERSION
require Rex::Commands;
use Rex::Commands::Box;
use Data::Dumper;
use Carp;
require Exporter;
use base qw(Exporter);
use vars qw(@EXPORT);
@EXPORT = qw(test);
=head2 new(name => $test_name)
Constructor if used in OO mode.
my $test = Rex::Test::Base->new(name => "test_name");
=cut
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = {@_};
bless( $self, $proto );
my ( $pkg, $file ) = caller(0);
$self->{name} ||= $file;
$self->{redirect_port} = 2222;
$self->{memory} ||= 512; # default, in MB
$self->{cpu} ||= 1; # default
return $self;
}
=head2 name($name)
The name of the test. A VM called $name will be created for each test. If the VM already exists, Rex will try to reuse it.
=cut
sub name {
my ( $self, $name ) = @_;
$self->{name} = $name;
}
=head2 memory($amount)
The amount of memory the VM should use, in Megabytes.
=cut
sub memory {
my ( $self, $memory ) = @_;
$self->{memory} = $memory;
}
=head2 cpus($number)
The number of CPUs the VM should use.
=cut
sub cpus {
my ( $self, $cpus ) = @_;
$self->{cpus} = $cpus;
}
=head2 vm_auth(%auth)
Authentication options for the VM. It accepts the same parameters as C<Rex::Box::Base-E<gt>auth()>.
=cut
sub vm_auth {
my ( $self, %auth ) = @_;
$self->{auth} = \%auth;
}
=head2 base_vm($vm)
The URL to a base image to be used for the test VM.
=cut
sub base_vm {
my ( $self, $vm ) = @_;
$self->{vm} = $vm;
}
sub test(&) {
my $code = shift;
my $test = __PACKAGE__->new;
$code->($test);
}
=head2 redirect_port($port)
Redirect local $port to the VM's SSH port (default: 2222).
=cut
sub redirect_port {
my ( $self, $port ) = @_;
$self->{redirect_port} = $port;
}
=head2 run_task($task)
The task to run on the test VM. You can run multiple tasks by passing an array reference.
=cut
sub run_task {
my ( $self, $task ) = @_;
my $box;
box {
$box = shift;
$box->name( $self->{name} );
$box->url( $self->{vm} );
$box->memory( $self->{memory} );
$box->cpus( $self->{cpus} );
$box->network(
1 => {
type => "nat",
}
);
$box->forward_port( ssh => [ $self->{redirect_port}, 22 ] );
$box->auth( %{ $self->{auth} } );
if ( ref $task eq 'ARRAY' ) {
$box->setup(@$task);
}
else {
$box->setup($task);
}
};
$self->{box} = $box;
# connect to the machine
Rex::connect(
server => $box->ip,
%{ $self->{auth} },
);
}
sub ok($;$) {
my ( $self, $test, $msg ) = @_;
my $tb = Rex::Test::Base->builder;
$tb->ok( $test, $msg );
}
sub diag {
my ( $self, $msg ) = @_;
my $tb = Rex::Test::Base->builder;
$tb->diag($msg);
}
sub finish {
my $tb = Rex::Test::Base->builder;
$tb->done_testing();
$tb->is_passing()
? print "PASS\n"
: print "FAIL\n";
if ( !$tb->is_passing() ) {
Rex::Test::push_exit("FAIL");
}
$tb->reset();
Rex::pop_connection();
}
=head1 TEST METHODS
=head2 has_content($file, $regexp)
Test if the content of $file matches against $regexp.
=head2 has_dir($path)
Test if $path is present and is a directory.
=head2 has_file($file)
Test if $file is present.
=head2 has_package($package, $version)
Test if $package is installed, optionally at $version.
=head2 has_service_running($service)
Test if $service is running.
=head2 has_service_stopped($service)
Test if $service is stopped.
=head2 has_stat($file, $stat)
Test if $file has properties described in hash reference $stat. List of supported checks:
=over 4
=item group
=item owner
=back
=cut
our $AUTOLOAD;
sub AUTOLOAD {
my $self = shift or return;
( my $method = $AUTOLOAD ) =~ s{.*::}{};
if ( $method eq "DESTROY" ) {
return;
}
my $pkg = __PACKAGE__ . "::$method";
eval "use $pkg";
if ($@) {
confess "Error loading $pkg. No such test method.";
}
my $p = $pkg->new;
$p->run_test(@_);
}
1;
|