mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
60 lines
2.4 KiB
Perl
60 lines
2.4 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 $output;
|
|
my $dp = new DSNParser(opts=>$dsn_opts);
|
|
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
|
my $master_dbh = $sb->get_dbh_for('master');
|
|
|
|
if ( !$master_dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox master';
|
|
}
|
|
else {
|
|
plan tests => 4;
|
|
}
|
|
|
|
$sb->wipe_clean($master_dbh);
|
|
$sb->create_dbs($master_dbh, [qw(test)]);
|
|
|
|
# #############################################################################
|
|
# Issue 22: mk-table-sync fails with uninitialized value at line 2330
|
|
# #############################################################################
|
|
$sb->use('master', "-D test < $trunk/t/pt-table-sync/samples/issue_22.sql");
|
|
$sb->use('master', "-D test -e \"SET SQL_LOG_BIN=0; INSERT INTO test.messages VALUES (1,2,'author','2008-09-12 00:00:00','1','0','headers','msg');\"");
|
|
$sb->create_dbs($master_dbh, [qw(test2)]);
|
|
$sb->use('master', "-D test2 < $trunk/t/pt-table-sync/samples/issue_22.sql");
|
|
|
|
$output = 'foo'; # To make explicitly sure that the following command
|
|
# returns blank because there are no rows and not just that
|
|
# $output was blank from a previous test
|
|
$output = `/tmp/12345/use -D test2 -e 'SELECT * FROM messages'`;
|
|
ok(!$output, 'test2.messages is empty before sync (issue 22)');
|
|
|
|
$output = `$trunk/bin/pt-table-sync --no-check-slave --execute u=msandbox,p=msandbox,P=12345,h=127.1,D=test,t=messages u=msandbox,p=msandbox,P=12345,h=127.1,D=test2,t=messages 2>&1`;
|
|
ok(!$output, 'Synced test.messages to test2.messages on same host (issue 22)');
|
|
|
|
$output = `/tmp/12345/use -D test -e 'SELECT * FROM messages'`;
|
|
my $output2 = `/tmp/12345/use -D test2 -e 'SELECT * FROM messages'`;
|
|
is($output, $output2, 'test2.messages matches test.messages (issue 22)');
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
$sb->wipe_clean($master_dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
exit;
|