mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-17 08:57:24 +00:00
87 lines
2.1 KiB
Perl
87 lines
2.1 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 charnames ':full';
|
|
|
|
use PerconaTest;
|
|
use Sandbox;
|
|
require "$trunk/bin/pt-archiver";
|
|
|
|
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 $cnf = "/tmp/12345/my.sandbox.cnf";
|
|
my $cmd = "$trunk/bin/pt-archiver";
|
|
|
|
$sb->wipe_clean($dbh);
|
|
$sb->create_dbs($dbh, ['test']);
|
|
|
|
# Test --bulk-insert
|
|
$sb->load_file('master', 't/pt-archiver/samples/pt-2083.sql');
|
|
|
|
$output = output(
|
|
sub { pt_archiver::main(qw(--commit-each --where 1=1 --statistics --charset latin1),
|
|
'--source', "L=1,D=test,t=table_1,F=$cnf",
|
|
'--dest', "t=table_1_dest") },
|
|
);
|
|
|
|
unlike(
|
|
$output,
|
|
qr/Character set mismatch/,
|
|
'No character set mismatch error'
|
|
) or diag($output);
|
|
|
|
my @copied = $dbh->selectrow_array('SELECT c1 FROM test.table_1_dest');
|
|
|
|
like(
|
|
$copied[0],
|
|
qr/I love MySQL!/,
|
|
'Rows copied into the table successfully'
|
|
) or diag($copied[0]);
|
|
|
|
# Test --file
|
|
$sb->load_file('master', 't/pt-archiver/samples/pt-2083.sql');
|
|
|
|
$output = output(
|
|
sub { pt_archiver::main(qw(--where 1=1 --statistics --charset latin1),
|
|
'--source', "L=1,D=test,t=table_1,F=$cnf",
|
|
'--file', '/tmp/%Y-%m-%d-%D_%H:%i:%s.%t') },
|
|
);
|
|
|
|
unlike(
|
|
$output,
|
|
qr/Character set mismatch/,
|
|
'No character set mismatch error'
|
|
) or diag($output);
|
|
|
|
like(
|
|
`cat /tmp/*.table_1`,
|
|
qr/I love MySQL!/,
|
|
'Rows copied into the file successfully'
|
|
) or diag($output);
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
diag(`rm -f /tmp/*.table_1`);
|
|
$sb->wipe_clean($dbh);
|
|
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
|
|
done_testing;
|
|
exit;
|