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

- Removed runtime.txt after discussion with Anastasia Alexandrova - Added "use VersionParser" into tests in t/lib when needed - Removed word master from tests for pt-archiver, pt-config-diff, pt-deadlock-logger, pt-duplicate-key-checker, pt-find, pt-fk-error-logger, pt-heartbeat, pt-index-usage, pt-ioprofile, pt-kill, pt-mysql-summary - Removed word slave from tests for pt-archiver, pt-config-diff, pt-deadlock-logger, pt-duplicate-key-checker, pt-find, pt-fk-error-logger, pt-heartbeat, pt-index-usage, pt-ioprofile, pt-kill, pt-mysql-summary - Updated modules for pt-archiver, pt-config-diff, pt-deadlock-logger, pt-duplicate-key-checker, pt-find, pt-fk-error-logger, pt-heartbeat, pt-index-usage, pt-ioprofile, pt-kill, pt-mysql-summary - Changed mysql_ssl patch, so it is now short option s - Added a check for existing zombies in t/pt-kill/execute_command.t - Added bin/pt-galera-log-explainer to .gitignore
335 lines
10 KiB
Perl
335 lines
10 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 English qw(-no_match_vars);
|
|
use Test::More;
|
|
use Data::Dumper;
|
|
|
|
use PerconaTest;
|
|
use Sandbox;
|
|
require "$trunk/bin/pt-heartbeat";
|
|
|
|
my $dp = new DSNParser(opts=>$dsn_opts);
|
|
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
|
my $source_dbh = $sb->get_dbh_for('source');
|
|
my $replica1_dbh = $sb->get_dbh_for('replica1');
|
|
|
|
if ( !$source_dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox source';
|
|
}
|
|
elsif ( !$replica1_dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox replica1';
|
|
}
|
|
|
|
|
|
$sb->create_dbs($source_dbh, ['test']);
|
|
|
|
my $output;
|
|
my $cnf = '/tmp/12345/my.sandbox.cnf';
|
|
my $cmd = "$trunk/bin/pt-heartbeat -F $cnf ";
|
|
my $pid_file = "/tmp/__pt-heartbeat-test.pid";
|
|
my $sent_file = "/tmp/pt-heartbeat-sentinel";
|
|
my $ps_grep_cmd = "ps x | grep pt-heartbeat | grep daemonize | grep -v grep";
|
|
|
|
diag(`rm $sent_file 2>/dev/null`);
|
|
|
|
$source_dbh->do('drop table if exists test.heartbeat');
|
|
$source_dbh->do(q{CREATE TABLE test.heartbeat (
|
|
id int NOT NULL PRIMARY KEY,
|
|
ts datetime NOT NULL
|
|
) ENGINE=MEMORY});
|
|
$sb->wait_for_replicas;
|
|
|
|
|
|
# Issue: pt-heartbeat should check that the heartbeat table has a row
|
|
$output = output(
|
|
sub { pt_heartbeat::main('-F', $cnf,
|
|
qw(-D test --check --no-insert-heartbeat-row)) },
|
|
stderr => 1,
|
|
);
|
|
like(
|
|
$output,
|
|
qr/heartbeat table is empty/ms,
|
|
'Dies on empty heartbeat table with --check (issue 45)'
|
|
);
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main('-F', $cnf,
|
|
qw(-D test --monitor --run-time 1s --no-insert-heartbeat-row)) },
|
|
stderr => 1,
|
|
);
|
|
like(
|
|
$output,
|
|
qr/heartbeat table is empty/ms,
|
|
'Dies on empty heartbeat table with --monitor (issue 45)'
|
|
);
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main('-F', $cnf, qw(-D test --check)) },
|
|
);
|
|
my $row = $source_dbh->selectall_hashref('select * from test.heartbeat', 'id');
|
|
is(
|
|
$row->{1}->{id},
|
|
1,
|
|
"Automatically inserts heartbeat row (issue 1292)"
|
|
);
|
|
|
|
# Run one instance with --replace to create the table.
|
|
output(
|
|
sub { pt_heartbeat::main('-F', $cnf,
|
|
qw(-D test --update --replace --run-time 1s)) },
|
|
stderr => 1,
|
|
);
|
|
ok(
|
|
$source_dbh->selectrow_array('select id from test.heartbeat'),
|
|
'Record is there'
|
|
);
|
|
|
|
# Check the delay and ensure it is only a single line with nothing but the
|
|
# delay (no leading whitespace or anything).
|
|
output(
|
|
sub { pt_heartbeat::main('-F', $cnf, qw(-D test --check)) },
|
|
stderr => 1,
|
|
);
|
|
chomp $output;
|
|
like($output, qr/^\d+$/, 'Output is just a number');
|
|
|
|
# Start one daemonized instance to update it
|
|
system("$cmd --daemonize -D test --update --run-time 3s --pid $pid_file 1>/dev/null 2>/dev/null");
|
|
PerconaTest::wait_for_files($pid_file);
|
|
$output = `$ps_grep_cmd`;
|
|
like($output, qr/$cmd/, 'It is running');
|
|
ok(-f $pid_file, 'PID file created');
|
|
my ($pid) = $output =~ /^\s*(\d+)\s+/;
|
|
$output = `cat $pid_file` if -f $pid_file;
|
|
chomp($output);
|
|
is($output, $pid, 'PID file has correct PID');
|
|
|
|
$output = `$cmd -D test --monitor --run-time 1s`;
|
|
if ( $output ) {
|
|
chomp ($output);
|
|
$output =~ s/\d/0/g;
|
|
}
|
|
is(
|
|
$output,
|
|
' 0s [ 0.00s, 0.00s, 0.00s ]',
|
|
'It is being updated',
|
|
);
|
|
PerconaTest::wait_until(sub { !-f $pid_file });
|
|
|
|
$output = `$ps_grep_cmd`;
|
|
chomp $output;
|
|
unlike($output, qr/$cmd/, 'It is not running anymore');
|
|
ok(! -f $pid_file, 'PID file removed');
|
|
|
|
# Run again, create the sentinel, and check that the sentinel makes the
|
|
# daemon quit.
|
|
system("$cmd --daemonize -D test --update 1>/dev/null 2>/dev/null");
|
|
$output = `$ps_grep_cmd`;
|
|
like($output, qr/$cmd/, 'It is running');
|
|
$output = `$cmd -D test --stop`;
|
|
like($output, qr/Successfully created/, 'Created sentinel');
|
|
sleep(2);
|
|
$output = `$ps_grep_cmd`;
|
|
unlike($output, qr/$cmd/, 'It is not running');
|
|
ok(-f $sent_file, 'Sentinel file is there');
|
|
unlink($sent_file);
|
|
$source_dbh->do('drop table if exists test.heartbeat'); # This will kill it
|
|
|
|
# #############################################################################
|
|
# Issue 353: Add --create-table to mk-heartbeat
|
|
# #############################################################################
|
|
|
|
# These creates the new table format, whereas the preceding tests used the
|
|
# old format, so tests from here on may need --source-server-id.
|
|
|
|
$source_dbh->do('drop table if exists test.heartbeat');
|
|
$sb->wait_for_replicas;
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main('-F', $cnf,
|
|
qw(--update --run-time 1s --database test --table heartbeat),
|
|
qw(--create-table)) },
|
|
stderr => 1,
|
|
);
|
|
$source_dbh->do('use test');
|
|
$row = $source_dbh->selectcol_arrayref("SHOW TABLES LIKE 'heartbeat'");
|
|
is(
|
|
$row->[0],
|
|
'heartbeat',
|
|
'--create-table creates heartbeat table'
|
|
) or diag($output, Dumper($row));
|
|
|
|
$source_dbh->do('drop table if exists test.heartbeat');
|
|
$sb->wait_for_replicas;
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main('-F', $cnf,
|
|
qw(--update --run-time 1s --database test --table heartbeat),
|
|
qw(--create-table --create-table-engine MEMORY)) },
|
|
stderr => 1,
|
|
);
|
|
$source_dbh->do('use test');
|
|
$row = $source_dbh->selectrow_hashref("SHOW TABLE STATUS LIKE 'heartbeat'");
|
|
is(
|
|
uc($row->{engine}),
|
|
'MEMORY',
|
|
'--create-table-engine creates heartbeat table using a non-default engine'
|
|
) or diag($output, Dumper($row));
|
|
|
|
# #############################################################################
|
|
# Issue 352: Add port to mk-heartbeat --check output
|
|
# #############################################################################
|
|
sleep 1;
|
|
$output = output(
|
|
sub { pt_heartbeat::main(
|
|
qw(--host 127.1 --user msandbox --password msandbox --port 12345),
|
|
qw(-D test --check --recurse 1 --source-server-id 12345)) },
|
|
stderr => 1,
|
|
);
|
|
like(
|
|
$output,
|
|
qr/:12346\s+\d/,
|
|
'--check output has :port'
|
|
);
|
|
|
|
# #############################################################################
|
|
# Bug 1004567: pt-heartbeat --update --replace causes duplicate key error
|
|
# #############################################################################
|
|
|
|
# Create the heartbeat table on the source and replica.
|
|
$source_dbh->do("DROP TABLE IF EXISTS test.heartbeat");
|
|
$sb->wait_for_replicas();
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main("F=/tmp/12345/my.sandbox.cnf",
|
|
qw(-D test --update --replace --create-table --run-time 1))
|
|
}
|
|
);
|
|
$row = $source_dbh->selectrow_arrayref('SELECT server_id FROM test.heartbeat');
|
|
is(
|
|
$row->[0],
|
|
'12345',
|
|
'Heartbeat on source'
|
|
);
|
|
|
|
$sb->wait_for_replicas();
|
|
|
|
$row = $replica1_dbh->selectrow_arrayref('SELECT server_id FROM test.heartbeat');
|
|
is(
|
|
$row->[0],
|
|
'12345',
|
|
'Heartbeat on replica1'
|
|
);
|
|
|
|
# Drop the heartbeat table only on the source.
|
|
$source_dbh->do("SET SQL_LOG_BIN=0");
|
|
$source_dbh->do("DROP TABLE test.heartbeat");
|
|
$source_dbh->do("SET SQL_LOG_BIN=1");
|
|
|
|
# Re-create the heartbeat table on the source.
|
|
$output = output(
|
|
sub { pt_heartbeat::main("F=/tmp/12345/my.sandbox.cnf",
|
|
qw(-D test --update --replace --create-table --run-time 1))
|
|
}
|
|
);
|
|
|
|
$row = $source_dbh->selectrow_arrayref('SELECT server_id FROM test.heartbeat');
|
|
is(
|
|
$row->[0],
|
|
'12345',
|
|
'New heartbeat on source'
|
|
);
|
|
|
|
$sb->wait_for_replicas();
|
|
|
|
$row = $replica1_dbh->selectrow_hashref("SHOW ${replica_name} STATUS");
|
|
is(
|
|
$row->{last_error},
|
|
'',
|
|
"No replica error"
|
|
);
|
|
|
|
# #############################################################################
|
|
# --check-read-only
|
|
# #############################################################################
|
|
|
|
if ($sandbox_version eq '8.0') {
|
|
diag(`/tmp/12345/use -u root -e "CREATE USER 'bob'\@'%' IDENTIFIED WITH mysql_native_password BY 'msandbox'"`);
|
|
} else {
|
|
diag(`/tmp/12345/use -u root -e "CREATE USER 'bob'\@'%' IDENTIFIED BY 'msandbox'"`);
|
|
}
|
|
diag(`/tmp/12345/use -u root -e "GRANT ALL ON *.* TO 'bob'\@'%'"`);
|
|
diag(`/tmp/12345/use -u root -e "REVOKE SUPER ON *.* FROM 'bob'\@'%'"`);
|
|
if ($sandbox_version ge '8.0') {
|
|
diag(`/tmp/12345/use -u root -e "REVOKE CONNECTION_ADMIN ON *.* FROM 'bob'\@'%'"`);
|
|
}
|
|
diag(`/tmp/12345/use -u root -e "FLUSH PRIVILEGES"`);
|
|
|
|
# Some subtlety here. 'bob' doesn't have enough privileges to change binlog_format
|
|
# to STATEMENT if it's set to ROW, so the tool will fail with a different error
|
|
# message earlier in the code. (This should be tested separately)
|
|
# So we set binlog_format = STATEMENT globaly before these tests and then revert.
|
|
# Notice these tests are run on replica1 so we change it there.
|
|
|
|
# get original binlog_format, so we can revert later
|
|
my (undef, $orig_binlog_format) = $replica1_dbh->selectrow_array('SHOW VARIABLES LIKE "binlog_format"');
|
|
diag(`/tmp/12346/use -u root -e "stop ${replica_name} sql_thread"`);
|
|
diag(`/tmp/12346/use -u root -e "set global binlog_format=STATEMENT"`);
|
|
diag(`/tmp/12346/use -u root -e "start ${replica_name} sql_thread"`);
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main("u=bob,F=/tmp/12346/my.sandbox.cnf",
|
|
qw(-D test --interval 0.8 --update --replace --run-time 1))
|
|
},
|
|
stderr => 1
|
|
);
|
|
|
|
my $b = $ENV{PERCONA_TOOLKIT_BRANCH};
|
|
$output = `perl $b/bin/pt-heartbeat -D test --interval 0.8 --update --replace --run-time 1 u=bob,F=/tmp/12346/my.sandbox.cnf 2>&1`;
|
|
|
|
like(
|
|
$output,
|
|
qr/--read-only/,
|
|
"By default, fails if the server is read_only=1"
|
|
) or diag($output);
|
|
|
|
$output = output(
|
|
sub { pt_heartbeat::main("u=bob,F=/tmp/12346/my.sandbox.cnf",
|
|
qw(-D test --update --replace --run-time 5 --check-read-only))
|
|
},
|
|
stderr => 1
|
|
);
|
|
|
|
unlike(
|
|
$output,
|
|
qr/--read-only/,
|
|
"...but just skips doing any work and waits if --check-read-only was specified"
|
|
);
|
|
|
|
diag(`/tmp/12345/use -u root -e "DROP USER 'bob'\@'%'"`);
|
|
#revert to original binlog_format
|
|
diag(`/tmp/12346/use -u root -e "stop ${replica_name} sql_thread"`);
|
|
diag(`/tmp/12346/use -u root -e "set global binlog_format=$orig_binlog_format"`);
|
|
diag(`/tmp/12346/use -u root -e "start ${replica_name} sql_thread"`);
|
|
diag(`/tmp/12345/use -u root -e "DROP DATABASE test"`);
|
|
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
diag(`rm $pid_file $sent_file 2>/dev/null`);
|
|
# $sb->wipe_clean($source_dbh);
|
|
# $sb->wipe_clean($replica1_dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
|
|
done_testing;
|
|
exit;
|