mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-12-12 02:00:49 +08:00
70 lines
2.0 KiB
Perl
70 lines
2.0 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-checksum";
|
|
|
|
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';
|
|
}
|
|
else {
|
|
plan tests => 3;
|
|
}
|
|
|
|
# The sandbox servers run with lock_wait_timeout=3 and it's not dynamic
|
|
# so we need to specify --set-vars innodb_lock_wait_timeout=3 else the tool will die.
|
|
# And --max-load "" prevents waiting for status variables.
|
|
my @args = (qw(--set-vars innodb_lock_wait_timeout=3), '--max-load', '');
|
|
my ($output, $exit_code);
|
|
|
|
$sb->create_dbs($dbh, [qw(test)]);
|
|
$sb->load_file('source', 't/lib/samples/tables/issue-388.sql', 'test');
|
|
|
|
$sb->load_file('source', "t/pt-table-checksum/samples/pt-2250_dsns.sql");
|
|
$dbh->do("insert into test.foo values (null, 'john, smith')");
|
|
|
|
($output, $exit_code) = full_output(
|
|
sub {
|
|
pt_table_checksum::main(
|
|
@args,
|
|
'h=127.1,P=12345,u=msandbox,p=msandbox',
|
|
qw(-d test),
|
|
"--recursion-method=dsn=F=t/pt-archiver/samples/pt-191.cnf,D=dsns,t=dsns,h=127.0.0.1,P=12345,u=msandbox,p=msandbox")
|
|
},
|
|
stderr => 1,
|
|
);
|
|
|
|
is(
|
|
$exit_code,
|
|
0,
|
|
"No error for recursion method dsn"
|
|
) or diag($output);
|
|
|
|
unlike(
|
|
$output,
|
|
qr/Can't connect to local MySQL server/,
|
|
'No error message for recursion method dsn'
|
|
) or diag($output);
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
$sb->wipe_clean($dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
exit;
|