# This program is copyright 2008-2012 Percona Inc. # Feedback and improvements are welcome. # # THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # 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, version 2; OR the Perl Artistic License. On UNIX and similar # systems, you can issue `man perlgpl' or `man perlartistic' to read these # licenses. # # 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., 59 Temple # Place, Suite 330, Boston, MA 02111-1307 USA. # ########################################################################### # Sandbox package # ########################################################################### { # Package: Sandbox # Sandbox is an API for the test suite to access and control sandbox servers. package Sandbox; BEGIN { die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n" unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH}; unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib"; }; use strict; use warnings FATAL => 'all'; use English qw(-no_match_vars); use Time::HiRes qw(sleep); use Data::Dumper; $Data::Dumper::Indent = 1; $Data::Dumper::Sortkeys = 1; $Data::Dumper::Quotekeys = 0; use constant PTDEBUG => $ENV{PTDEBUG} || 0; use constant PTDEVDEBUG => $ENV{PTDEVDEBUG} || 0; my $trunk = $ENV{PERCONA_TOOLKIT_BRANCH}; my %port_for = ( master => 12345, slave1 => 12346, slave2 => 12347, master1 => 12348, # master-master master2 => 12349, # master-master master3 => 2900, master4 => 2901, master5 => 2902, master6 => 2903, ); my $test_dbs = qr/^(?:mysql|information_schema|sakila|performance_schema|percona_test)$/; sub new { my ( $class, %args ) = @_; foreach my $arg ( qw(basedir DSNParser) ) { die "I need a $arg argument" unless defined $args{$arg}; } if ( !-d $args{basedir} ) { die "$args{basedir} is not a directory"; } return bless { %args }, $class; } sub use { my ( $self, $server, $cmd ) = @_; _check_server($server); return if !defined $cmd || !$cmd; my $use = $self->_use_for($server) . " $cmd"; PTDEBUG && _d('"Executing', $use, 'on', $server); eval { `$use`; }; if ( $EVAL_ERROR ) { die "Failed to execute $cmd on $server: $EVAL_ERROR"; } return; } sub create_dbs { my ( $self, $dbh, $dbs, %args ) = @_; die 'I need a dbh' if !$dbh; return if ( !ref $dbs || scalar @$dbs == 0 ); my %default_args = ( repl => 1, drop => 1, ); %args = ( %default_args, %args ); $dbh->do('SET SQL_LOG_BIN=0') unless $args{repl}; foreach my $db ( @$dbs ) { $dbh->do("DROP DATABASE IF EXISTS `$db`") if $args{drop}; my $sql = "CREATE DATABASE `$db`"; eval { $dbh->do($sql); }; die $EVAL_ERROR if $EVAL_ERROR; } $dbh->do('SET SQL_LOG_BIN=1'); return; } sub get_dbh_for { my ( $self, $server, $cxn_ops ) = @_; _check_server($server); $cxn_ops ||= { AutoCommit => 1 }; PTDEBUG && _d('dbh for', $server, 'on port', $port_for{$server}); my $dp = $self->{DSNParser}; my $dsn = $dp->parse('h=127.0.0.1,u=msandbox,p=msandbox,P=' . $port_for{$server}); my $dbh; eval { $dbh = $dp->get_dbh($dp->get_cxn_params($dsn), $cxn_ops) }; if ( $EVAL_ERROR ) { PTDEBUG && _d('Failed to get dbh for', $server, ':', $EVAL_ERROR); return 0; } $dbh->{InactiveDestroy} = 1; # Prevent destroying on fork. $dbh->{FetchHashKeyName} = 'NAME_lc' unless $cxn_ops && $cxn_ops->{no_lc}; return $dbh; } sub load_file { my ( $self, $server, $file, $use_db ) = @_; _check_server($server); $file = "$trunk/$file"; if ( !-f $file ) { die "$file is not a file"; } my $d = $use_db ? "-D $use_db" : ''; my $use = $self->_use_for($server) . " $d < $file"; PTDEBUG && _d('Loading', $file, 'on', $server, ':', $use); eval { `$use` }; if ( $EVAL_ERROR ) { die "Failed to execute $file on $server: $EVAL_ERROR"; } return; } sub _use_for { my ( $self, $server ) = @_; return "$self->{basedir}/$port_for{$server}/use"; } sub _check_server { my ( $server ) = @_; if ( !exists $port_for{$server} ) { die "Unknown server $server"; } return; } sub wipe_clean { my ( $self, $dbh ) = @_; # If any other connections to the server are holding metadata locks, then # the DROP commands will just hang forever. my @cxns = @{$dbh->selectall_arrayref('SHOW FULL PROCESSLIST', {Slice => {}})}; foreach my $cxn ( @cxns ) { if (( (($cxn->{user}||'') eq 'msandbox' && ($cxn->{command}||'') eq 'Sleep') || (($cxn->{User}||'') eq 'msandbox' && ($cxn->{Command}||'') eq 'Sleep') ) && $cxn->{db} ) { my $id = $cxn->{id} ? $cxn->{id} : $cxn->{Id}; my $sql = "KILL $id /* db: $cxn->{db} */"; Test::More::diag($sql); eval { $dbh->do($sql); }; Test::More::diag("Error executing $sql in Sandbox::wipe_clean(): " . $EVAL_ERROR) if $EVAL_ERROR; } } foreach my $db ( @{$dbh->selectcol_arrayref('SHOW DATABASES')} ) { next if $db =~ m/$test_dbs/; $dbh->do("DROP DATABASE IF EXISTS `$db`"); } $self->wait_for_slaves(); return; } # Returns a string if there is a problem with the master. sub master_is_ok { my ($self, $master) = @_; my $master_dbh = $self->get_dbh_for($master); if ( !$master_dbh ) { return "Sandbox $master " . $port_for{$master} . " is down."; } $master_dbh->disconnect(); return; } # Returns a string if there is a problem with the slave. sub slave_is_ok { my ($self, $slave, $master, $ro) = @_; PTDEBUG && _d('Checking if slave', $slave, $port_for{$slave}, 'to', $master, $port_for{$master}, 'is ok'); my $slave_dbh = $self->get_dbh_for($slave); if ( !$slave_dbh ) { return "Sandbox $slave " . $port_for{$slave} . " is down."; } my $master_port = $port_for{$master}; my $status = $slave_dbh->selectall_arrayref( "SHOW SLAVE STATUS", { Slice => {} }); if ( !$status || !@$status ) { return "Sandbox $slave " . $port_for{$slave} . " is not a slave."; } if ( $status->[0]->{last_error} ) { warn Dumper($status); return "Sandbox $slave " . $port_for{$slave} . " is broken: " . $status->[0]->{last_error} . "."; } foreach my $thd ( qw(slave_io_running slave_sql_running) ) { if ( ($status->[0]->{$thd} || 'No') eq 'No' ) { warn Dumper($status); return "Sandbox $slave " . $port_for{$slave} . " $thd thread " . "is not running."; } } if ( $ro ) { my $row = $slave_dbh->selectrow_arrayref( "SHOW VARIABLES LIKE 'read_only'"); if ( !$row || $row->[1] ne 'ON' ) { return "Sandbox $slave " . $port_for{$slave} . " is not read-only."; } } my $sleep_t = 0.25; my $total_t = 0; while ( defined $status->[0]->{seconds_behind_master} && $status->[0]->{seconds_behind_master} > 0 ) { PTDEBUG && _d('Slave lag:', $status->[0]->{seconds_behind_master}); sleep $sleep_t; $total_t += $sleep_t; $status = $slave_dbh->selectall_arrayref( "SHOW SLAVE STATUS", { Slice => {} }); if ( $total_t == 5 ) { Test::More::diag("Waiting for sandbox $slave " . $port_for{$slave} . " to catch up..."); } } PTDEBUG && _d('Slave', $slave, $port_for{$slave}, 'is ok'); $slave_dbh->disconnect(); return; } # Returns a string if any leftoever servers were left running. sub leftover_servers { my ($self) = @_; PTDEBUG && _d('Checking for leftover servers'); foreach my $serverno ( 1..6 ) { my $server = "master$serverno"; my $dbh = $self->get_dbh_for($server); if ( $dbh ) { $dbh->disconnect(); return "Sandbox $server " . $port_for{$server} . " was left up."; } } return; } sub leftover_databases { my ($self, $host) = @_; PTDEBUG && _d('Checking for leftover databases'); my $dbh = $self->get_dbh_for($host); my $dbs = $dbh->selectall_arrayref("SHOW DATABASES"); $dbh->disconnect(); my @leftover_dbs = map { $_->[0] } grep { $_->[0] !~ m/$test_dbs/ } @$dbs; if ( @leftover_dbs ) { return "Databases are left on $host: " . join(', ', @leftover_dbs); } return; } # This returns an empty string if all servers and data are OK. If it returns # anything but empty string, there is a problem, and the string indicates what # the problem is. sub ok { my ($self) = @_; my @errors; # First, wait for all slaves to be caught up to their masters. $self->wait_for_slaves(); push @errors, $self->master_is_ok('master'); push @errors, $self->slave_is_ok('slave1', 'master'); push @errors, $self->slave_is_ok('slave2', 'slave1', 1); push @errors, $self->leftover_servers(); foreach my $host ( qw(master slave1 slave2) ) { push @errors, $self->leftover_databases($host); push @errors, $self->verify_test_data($host); } @errors = grep { warn "ERROR: ", $_, "\n" if $_; $_; } @errors; return !@errors; } # Dings a heartbeat on the master, and waits until the slave catches up fully. sub wait_for_slaves { my $self = shift; my $master_dbh = $self->get_dbh_for('master'); my $slave2_dbh = $self->get_dbh_for('slave2'); my ($ping) = $master_dbh->selectrow_array("SELECT MD5(RAND() + NOW())"); $master_dbh->do("UPDATE percona_test.sentinel SET ping='$ping' WHERE id=1"); PerconaTest::wait_until( sub { my ($pong) = $slave2_dbh->selectrow_array( "SELECT ping FROM percona_test.sentinel WHERE id=1"); return $ping eq $pong; }, undef, 300 ); } sub _d { my ($package, undef, $line) = caller 0; @_ = map { (my $temp = $_) =~ s/\n/\n# /g; $temp; } map { defined $_ ? $_ : 'undef' } @_; print STDERR "# $package:$line $PID ", join(' ', @_), "\n"; } # Verifies that master, slave1, and slave2 have a faithful copy of the mysql and # sakila databases. The reference data is inserted into percona_test.checksums # by util/checksum-test-dataset when sandbox/test-env starts the environment. sub verify_test_data { my ($self, $host) = @_; # Get the known-good checksums from the master. my $master = $self->get_dbh_for('master'); my $ref = $self->{checksum_ref} || $master->selectall_hashref( 'SELECT * FROM percona_test.checksums', 'db_tbl'); $self->{checksum_ref} = $ref unless $self->{checksum_ref}; my @tables_in_mysql = @{$master->selectcol_arrayref('SHOW TABLES FROM mysql')}; my @tables_in_sakila = qw(actor address category city country customer film film_actor film_category film_text inventory language payment rental staff store); $master->disconnect; # Get the current checksums on the host. my $dbh = $self->get_dbh_for($host); my $sql = "CHECKSUM TABLES " . join(", ", map { "mysql.$_" } @tables_in_mysql) . ", " . join(", ", map { "sakila.$_" } @tables_in_sakila); my @checksums = @{$dbh->selectall_arrayref($sql, {Slice => {} })}; # Diff the two sets of checksums: host to master (ref). my @diffs; foreach my $c ( @checksums ) { if ( $c->{checksum} ne $ref->{$c->{table}}->{checksum} ) { push @diffs, $c->{table}; } } $dbh->disconnect; if ( @diffs ) { return "Tables are different on $host: " . join(', ', @diffs); } return; } 1; } # ########################################################################### # End Sandbox package # ###########################################################################