package TAP::Harness::Remote::EC2; our $VERSION = '1.00'; use warnings; use strict; use base 'TAP::Harness::Remote'; use constant config_path => "$ENV{HOME}/.remote_test_ec2"; use Net::Amazon::EC2; =head1 NAME TAP::Harness::Remote::EC2 - Run tests on EC2 servers =head1 SYNOPSIS prove --harness TAP::Harness::Remote::EC2 t/*.t =head1 DESCRIPTION Based on L, this module uses your running Amazon EC2 instances (L) to run tests against, instead of a preconfigured list of hosts. =head1 USAGE Configuration is much the same as L, except the configuration file lives in C -- see L. =head1 METHODS =head2 load_remote_config Loads and canonicalizes the configuration. Writes and uses the default configuration (L) if the file does not exist. =cut sub load_remote_config { my $self = shift; $self->SUPER::load_remote_config; warn "Useless 'host' configuration parameter set for TAP::Harness::Remote::EC2\n" if grep {defined} @{ $self->remote_config("host") }; delete $self->{remote_config}{host}; die "Configuration failed to include required 'access_key' parameter\n" unless $self->remote_config("access_key"); die "Configuration failed to include required 'secret_access_key' parameter\n" unless $self->remote_config("secret_access_key"); my $ami = $self->remote_config("ami"); warn "No value set for 'ami', assuming you mean all running instances\n" unless defined $ami; my $ec2 = Net::Amazon::EC2->new( AWSAccessKeyId => $self->remote_config("access_key"), SecretAccessKey => $self->remote_config("secret_access_key"), ); my @hosts = $self->hosts( $ec2 => qr/running|pending/ ); my $run = $self->remote_config("instances") || 1; my $need = $run - @hosts; if ( $need > 0 ) { die "Need to run $need new instances, but no AMI specified!\n" unless $ami; warn "Starting $need new instances of AMI $ami\n"; my $reservation = $ec2->run_instances( ImageId => $ami, MinCount => $need, MaxCount => $need, InstanceType => $self->remote_config("instance_type") || "m1.xlarge", ); die join( "", map { $_->message } @{ $reservation->errors } ) . "\n" if $reservation->isa("Net::Amazon::EC2::Errors"); } # Wait for starting instances $self->wait_pending( $ec2 ); $self->{remote_config}{host} = [ map { $_->dns_name } $self->hosts( $ec2 ) ]; return $self; } =head2 hosts EC2 [, STATUS] Returns an array of L objects which match the C type specified in the config file, and whose status matches the given C. C may be either a string, or a regex; it defaults to "running". C should be a valid L object. =cut sub hosts { my $self = shift; my ( $ec2, $test ) = @_; my $ami = $self->remote_config("ami"); $test ||= 'running'; $test = qr/$test/ unless ref $test; my $running_instances = $ec2->describe_instances; return grep { defined $ami ? ( $_->image_id eq $ami ) : 1 } grep { $_->instance_state->name =~ $test } map { @{ $_->instances_set } } @{$running_instances}; } =head2 wait_pending EC2. Waits until all hosts in the "pending" state have started. C should be a valid L object. =cut sub wait_pending { my $self = shift; my ( $ec2 ) = @_; my @hosts = $self->hosts( $ec2 => "pending" ); return unless @hosts; my $delay = 60; while (@hosts) { warn "Waiting for @{[@hosts + 0]} starting instances..\n"; sleep $delay; $delay = 20; @hosts = $self->hosts( $ec2 => "pending" ); } # Even after they report as "started," they still need time to # start up sshd, etc. sleep 30; } =head1 CONFIGURATION AND ENVIRONMENT The configuration is stored in F<~/.remote_test_ec2>, and is mostly identical to the configuration of L (see L), with the following differences: =over =item * The C parameter is ignored, and produces a warning if present. =item * The C amd C parameters are required, to be able to query the Amazon EC2 interface and determine the running EC2 hosts. You can find your access keys at L =item * There is an optional C parameter, which limits which AMIs will be used to run tests; it also lets the harness start the instances if there are not enough running. =item * There is an optional C parameter, which specifies the number of AMI instances to run tests on. Defaults to one. =item * There is an optional C parameter, which controls the type of instances to create; possible arguments are C, C, and C. The default is C. =back =head1 DEPENDENCIES L, L =head1 BUGS AND LIMITATIONS The default perl installed Amazon's provided EC2 images is B slow (about 4x slower than a clean, optimized build). We thus strongly suggest you compile your own. =head1 AUTHOR Alex Vandiver C<< >> =head1 LICENCE AND COPYRIGHT Copyright (c) 2007-2008, Best Practical Solutions, LLC. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. =cut 1;