mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-01 18:25:59 +00:00
168 lines
4.6 KiB
Perl
168 lines
4.6 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-duplicate-key-checker";
|
|
|
|
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 $sample = "t/pt-duplicate-key-checker/samples/";
|
|
my $cnf = "/tmp/12345/my.sandbox.cnf";
|
|
my $cmd = "$trunk/bin/pt-duplicate-key-checker -F $cnf -h 127.1";
|
|
my @args = ('-F', $cnf, qw(-h 127.1));
|
|
|
|
$sb->wipe_clean($dbh);
|
|
$sb->create_dbs($dbh, ['test']);
|
|
|
|
$output = `$cmd -d mysql -t columns_priv -v`;
|
|
like($output,
|
|
qr/PRIMARY \(`Host`,`Db`,`User`,`Table_name`,`Column_name`\)/,
|
|
'Finds mysql.columns_priv PK'
|
|
);
|
|
|
|
is(`$cmd -d test --nosummary`, '', 'No dupes on clean sandbox');
|
|
|
|
$sb->load_file('master', 't/lib/samples/dupe_key.sql', 'test');
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test)) },
|
|
"$sample/basic_output.txt"),
|
|
'Default output'
|
|
);
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test --nosql)) },
|
|
"$sample/nosql_output.txt"),
|
|
'--nosql'
|
|
);
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test --nosummary)) },
|
|
"$sample/nosummary_output.txt"),
|
|
'--nosummary'
|
|
);
|
|
|
|
$sb->load_file('master', 't/lib/samples/uppercase_names.sql', 'test');
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test -t UPPER_TEST)) },
|
|
($sandbox_version ge '5.1' ? "$sample/uppercase_names-51.txt"
|
|
: "$sample/uppercase_names.txt")
|
|
),
|
|
'Issue 306 crash on uppercase column names'
|
|
);
|
|
|
|
$sb->load_file('master', 't/lib/samples/issue_269-1.sql', 'test');
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test -t a)) },
|
|
"$sample/issue_269.txt"),
|
|
'No dupes for issue 269'
|
|
);
|
|
|
|
$sb->wipe_clean($dbh);
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test)) },
|
|
"$sample/nonexistent_db.txt"),
|
|
'No results for nonexistent db'
|
|
);
|
|
|
|
$dbh->do('create database test');
|
|
$sb->load_file('master', 't/lib/samples/dupekeys/dupe-cluster-bug-894140.sql', 'test');
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-d test)) },
|
|
"$sample/bug-894140.txt",
|
|
sed => [ "-e 's/ */ /g'" ],
|
|
),
|
|
"Bug 894140"
|
|
);
|
|
|
|
# #############################################################################
|
|
# --key-types
|
|
# https://bugs.launchpad.net/percona-toolkit/+bug/969669
|
|
# #############################################################################
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args,
|
|
qw(-d sakila --key-types k)) },
|
|
"$sample/key-types-k.txt"),
|
|
'--key-types k'
|
|
);
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args,
|
|
qw(-d sakila --key-types f)) },
|
|
"$sample/key-types-f.txt"),
|
|
'--key-types f'
|
|
);
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args,
|
|
qw(-d sakila --key-types fk)) },
|
|
"$sample/key-types-fk.txt"),
|
|
'--key-types fk (explicit)'
|
|
);
|
|
|
|
# #############################################################################
|
|
# Exact unique dupes
|
|
# https://bugs.launchpad.net/percona-toolkit/+bug/1217013
|
|
# #############################################################################
|
|
|
|
$sb->load_file('master', 't/lib/samples/dupekeys/simple_dupe_bug_1217013.sql', 'test');
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-t test.domains -v)) },
|
|
"$sample/simple_dupe_bug_1217013.txt"),
|
|
'Exact unique dupes (bug 1217013)'
|
|
) or diag($test_diff);
|
|
|
|
# #############################################################################
|
|
# Same thing, but added --verbose option to test for:
|
|
# https://bugs.launchpad.net/percona-toolkit/+bug/1402730
|
|
# #############################################################################
|
|
|
|
ok(
|
|
no_diff(
|
|
sub { pt_duplicate_key_checker::main(@args, qw(-t test.domains --verbose)) },
|
|
"$sample/simple_dupe_bug_1217013.txt", keep_output=>1),
|
|
q[--verbose option doesn't skip dupes reporting (bug 1402730)]
|
|
) or diag($test_diff);
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
$sb->wipe_clean($dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
done_testing;
|