mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-09 07:30:02 +00:00

- Updated modules and tests for pt-query-digest, pt-show-grants, pt-slave-delay, pt-slave-find, pt-slave-restart, pt-stalk, pt-summary, pt-table-checksum
85 lines
2.3 KiB
Perl
85 lines
2.3 KiB
Perl
#!/usr/bin/env perl
|
|
|
|
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 threads;
|
|
use English qw(-no_match_vars);
|
|
use Test::More;
|
|
use Time::HiRes qw(sleep);
|
|
|
|
use PerconaTest;
|
|
use DSNParser;
|
|
require VersionParser;
|
|
use Sandbox;
|
|
|
|
my $dp = new DSNParser(opts=>$dsn_opts);
|
|
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
|
my $dbh = $sb->get_dbh_for('source');
|
|
|
|
if ( !$dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox source';
|
|
}
|
|
|
|
my $cnf = "/tmp/12345/my.sandbox.cnf";
|
|
my $replicacnf = "/tmp/12346/my.sandbox.cnf";
|
|
my $pid_file = "/tmp/pt-stalk.pid.$PID";
|
|
my $log_file = "/tmp/pt-stalk.log.$PID";
|
|
my $dest = "/tmp/pt-stalk.collect.$PID";
|
|
my $int_file = "/tmp/pt-stalk-after-interval-sleep";
|
|
my $pid;
|
|
|
|
sub cleanup {
|
|
diag(`rm $pid_file $log_file $int_file 2>/dev/null`);
|
|
diag(`rm -rf $dest 2>/dev/null`);
|
|
}
|
|
|
|
sub wait_n_cycles {
|
|
my ($n) = @_;
|
|
PerconaTest::wait_until(
|
|
sub {
|
|
return 0 unless -f "$dest/after_interval_sleep";
|
|
my $n_cycles = `wc -l "$dest/after_interval_sleep" | awk '{print \$1}'`;
|
|
$n_cycles ||= '';
|
|
chomp($n_cycles);
|
|
return ($n_cycles || 0) >= $n;
|
|
},
|
|
1.5,
|
|
15
|
|
);
|
|
}
|
|
|
|
# ###########################################################################
|
|
# Test that SHOW REPLICA STATUS outputs are captured
|
|
# ###########################################################################
|
|
|
|
my $retval = system("$trunk/bin/pt-stalk --no-stalk --run-time 1 --dest $dest --prefix nostalk --pid $pid_file --iterations 1 -- --defaults-file=$cnf --socket=/tmp/12346/mysql_sandbox12346.sock >$log_file 2>&1");
|
|
my $output = `cat $dest/nostalk-${replica_name}-status|grep -i ${replica_name}_IO_Running`;
|
|
|
|
like(
|
|
$output,
|
|
qr/${replica_name}_IO_Running: Yes/i,
|
|
"SHOW REPLICA STATUS outputs gathered."
|
|
);
|
|
|
|
is(
|
|
$retval >> 8,
|
|
0,
|
|
"Exit 0"
|
|
);
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
|
|
|
|
cleanup();
|
|
$sb->wipe_clean($dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
done_testing;
|