1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
#!/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 File::Basename;
use File::Temp qw(tempdir);
$ENV{PERCONA_TOOLKIT_TEST_USE_DSN_NAMES} = 1;
$ENV{PRETTY_RESULTS} = 1;
use PerconaTest;
use Sandbox;
require "$trunk/bin/pt-upgrade";
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh1 = $sb->get_dbh_for('host1');
# Just testing that the other log types work, so we don't need
# the second host. By "other" I mean gen, bin, tcpdump, and raw
# because other tests make extensive use of slow logs.
# DO NOT test the results here. That's better done in compare_hosts.t
# or compare_results.t by creating a numbered dir (e.g. 005/) with
# sample log and output files.
if ( !$dbh1 ) {
plan skip_all => 'Cannot connect to sandbox host1';
}
my $host1_dsn = $sb->dsn_for('host1');
my $tmpdir = tempdir("/tmp/pt-upgrade.$PID.XXXXXX", CLEANUP => 1);
my $samples = "$trunk/t/pt-upgrade/samples";
my $lib_samples = "$trunk/t/lib/samples";
my $exit_status = 0;
my $output;
# #############################################################################
# genlog
# #############################################################################
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type genlog),
"$samples/genlog001.txt",
)},
stderr => 1,
);
is(
$exit_status,
0,
"genlog001: exit 0"
);
# There are 7 events, but only 1 SELECT query. The INSERT query
# should be filtered out by default.
like(
$output,
qr/queries_written\s+1/,
"genlog001: wrote 1 query"
);
# #############################################################################
# binlog
# #############################################################################
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type binlog),
"$lib_samples/binlogs/binlog001.txt",
)},
stderr => 1,
);
is(
$exit_status,
0,
"binlog001: exit 0 (read-only)"
);
# There are 7 events, but only 1 SELECT query. The INSERT query
# should be filtered out by default.
like(
$output,
qr/queries_written\s+0/,
"binlog001: no queries (read-only)"
);
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type binlog --no-read-only),
"$lib_samples/binlogs/binlog001.txt",
)},
stderr => 1,
);
is(
$exit_status,
0,
"binlog001: exit 0"
);
# There are 7 events, but only 1 SELECT query. The INSERT query
# should be filtered out by default.
like(
$output,
qr/queries_written\s+10/,
"binlog001: wrote 10 queries"
);
# #############################################################################
# tcpdump
# #############################################################################
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type tcpdump),
"$lib_samples/tcpdump/tcpdump002.txt",
)},
stderr => 1,
);
is(
$exit_status,
0,
"tcpdump001: exit 0",
);
like(
$output,
qr/queries_written\s+2/,
"tcpdump002: wrote 2 queries"
);
# #############################################################################
# rawlog
# #############################################################################
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type rawlog),
"$lib_samples/rawlogs/rawlog002.txt",
)},
stderr => 1,
);
is(
$exit_status,
0,
"rawlog001: exit 0",
);
like(
$output,
qr/queries_written\s+2/,
"rawlog002: wrote 2 queries"
);
# #############################################################################
# Done.
# #############################################################################
$sb->wipe_clean($dbh1);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
done_testing;
|