Files
percona-toolkit/t/pt-table-sync/wait.t
Sveta Smirnova 25c969542b PT-2151 fix tests for pt-query-digest (#631)
* PT-2151 - Fix tests for pt-query-digest

Put fix for PT-1908 into the proper place

* PT-2151 - Fix tests for pt-query-digest

Put fix for PT-1554 into the proper place

* PT-2151 - Fix tests for pt-query-digest

Adjusted expected results for the default test t/pt-table-checksum/basics.t, so they do not depend on number of rows in the help tables

* PT-2151 - Fix tests for pt-query-digest

Added additional check for both replicas into t/pt-online-schema-change/preserve_triggers.t to avoid deadlock when ->ok() is doing CHECKSUM

* PT-2151 - Fix tests for pt-query-digest

Added delay to t/pt-table-sync/wait.t, so it waits for the child process to start lagging

* PT-2151 - Fix tests for pt-query-digest

Updated t/pt-query-digest/samples/issue_1196-output-8.0.txt, so it reflects changes in the latest 8.0

* PT-2151 - Fix tests for pt-query-digest

Updated queries against query history table, so they don't fail after e2cf183762

* PT-2151 - Fix tests for pt-query-digest

Fixed PT-813 by comparing query text. Since order itself does not matter, it is not essential to compare by the fingerprint or use any other function that changes the query.

* PT-2151 - Fix tests for pt-query-digest

Adjusted samples files which now should have consistent order after fix for PT-813

* PT-2151 - Fix tests for pt-query-digest

Fixed typo in the SELECT query in the QueryReview package

* PT-2151 - Fix tests for pt-query-digest

Fix for PT-981

* PT-2151 - Fix tests for pt-query-digest

Updated modules for pt-index-usage and fixed tests, because checksum is calculated differently after fix for PT-1554

* PT-2151 - Fix tests for pt-query-digest

Updated modules for pt-diskstats, pt-fk-error-logger, pt-heartbeat, pt-online-schema-change, pt-slave-delay, pt-slave-find, pt-table-checksum, pt-table-sync, pt-upgrade

* PT-2151 - Fix tests for pt-query-digest

Updated lib/IndexUsage.pm, so fix for pt-index-usage is in the correct place
2023-06-23 15:48:21 +03:00

134 lines
2.7 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 PerconaTest;
use Sandbox;
require "$trunk/bin/pt-table-sync";
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $master_dbh = $sb->get_dbh_for('master');
my $slave_dbh = $sb->get_dbh_for('slave1');
if ( !$master_dbh ) {
plan skip_all => 'Cannot connect to sandbox master';
}
elsif ( !$slave_dbh ) {
plan skip_all => 'Cannot connect to sandbox slave';
}
else {
plan tests => 5;
}
my $output;
my @args = ('--sync-to-master', 'h=127.1,P=12346,u=msandbox,p=msandbox', qw(--print -v));
$sb->load_file('master', 't/pt-table-sync/samples/lag-slave.sql');
wait_until(
sub {
my $row;
eval {
$row = $slave_dbh->selectrow_hashref("select * from test.t2");
};
return 1 if $row && $row->{id};
},
);
sub lag_slave {
my $dbh = $sb->get_dbh_for('master');
for (1..10) {
$dbh->do("update test.t1 set i=sleep(3) limit 1");
}
$dbh->disconnect;
return;
}
my $pid = fork();
if ( !$pid ) {
# child
lag_slave();
exit;
}
# We need to sleep here to get child process to start
sleep(2);
# parent
PerconaTest::wait_until(sub {
$slave_dbh->selectrow_hashref("show slave status")->{seconds_behind_master}
}) or do {
kill 15, $pid;
waitpid ($pid, 0);
die "Slave did not lag";
};
my $start = time;
$output = output(
sub { pt_table_sync::main(@args, qw(-t test.t2)) },
);
my $t = time - $start;
like(
$output,
qr/Chunk\s+\S+\s+\S+\s+0\s+test\.t2/,
"Synced table"
);
cmp_ok(
$t,
'>',
1,
"Sync waited $t seconds for master"
);
# Repeat the test with --wait 0 to test that the sync happens without delay.
PerconaTest::wait_until(sub {
$slave_dbh->selectrow_hashref("show slave status")->{seconds_behind_master}
}) or do {
kill 15, $pid;
waitpid ($pid, 0);
die "Slave did not lag";
};
$start = time;
$output = output(
sub { pt_table_sync::main(@args, qw(-t test.t2 --wait 0)) },
);
$t = time - $start;
like(
$output,
qr/Chunk\s+\S+\s+\S+\s+0\s+test\.t2/,
"Synced table"
);
cmp_ok(
$t,
'<=',
1,
"Sync did not wait for master with --wait 0 ($t seconds)"
);
# #############################################################################
# Done.
# #############################################################################
kill 15, $pid;
waitpid ($pid, 0);
$sb->wipe_clean($master_dbh);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
exit;