PT-167 Still need to add tests

Description here
This commit is contained in:
Carlos Salguero
2017-09-04 12:03:36 -03:00
parent 218bd2874b
commit 738f9809f8
5 changed files with 150 additions and 4 deletions

93
t/pt-kill/pt_167.t Normal file
View File

@@ -0,0 +1,93 @@
#!/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 English qw(-no_match_vars);
use Time::HiRes qw(sleep);
use Test::More;
use PerconaTest;
use Sandbox;
require "$trunk/bin/pt-kill";
use Data::Dumper;
$Data::Dumper::Indent = 1;
$Data::Dumper::Sortkeys = 1;
$Data::Dumper::Quotekeys = 0;
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh = $sb->get_dbh_for('master');
if ( !$dbh ) {
plan skip_all => 'Cannot connect to sandbox master';
}
my $output;
my $dsn = $sb->dsn_for('master');
my $cnf = '/tmp/12345/my.sandbox.cnf';
# #############################################################################
# Test that --kill-query only kills the query, not the connection.
# #############################################################################
# Here's how this works. This cmd is going to try 2 queries on the same
# connection: sleep5 and sleep3. --kill-query will kill sleep5 causing
# sleep3 to start using the same connection id (pid).
system("/tmp/12345/use -e 'select sleep(5); select sleep(2)' >/dev/null&");
sleep 0.5;
SKIP: {
skip "TODO";
my $iterations=99;
my $query = 'select benchmark(?, md5("when will it end?"))';
my $ps = $dbh->prepare($query);
$ps->execute($iterations);
my $rows = $dbh->selectall_hashref('show processlist', 'id');
my $pid = 0; # reuse, reset
map { $pid = $_->{id} }
grep { $_->{info} && $_->{info} =~ m/select sleep\(15\)/ }
values %$rows;
ok(
$pid,
'Got proc id of sleeping query'
);
$output = output(
sub { pt_kill::main('-F', $cnf, qw(--busy-time 4s --print --match-info "^(select|SELECT)")), },
);
like(
$output,
qr/KILL QUERY $pid /,
'--kill-query'
);
sleep 1;
$rows = $dbh->selectall_hashref('show processlist', 'id');
my $con_alive = grep { $_->{id} eq $pid } values %$rows;
ok(
$con_alive,
'Killed query, not connection'
);
is(
($rows->{$pid}->{info} || ''),
'select sleep(3)',
'Connection is still alive'
);
}
# #############################################################################
# Done.
# #############################################################################
$sb->wipe_clean($dbh);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
done_testing;

View File