File: sanity_checks.t

package info (click to toggle)
percona-toolkit 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 68,916 kB
  • sloc: perl: 241,287; sql: 22,868; sh: 19,746; javascript: 6,799; makefile: 353; awk: 38; python: 30; sed: 1
file content (126 lines) | stat: -rw-r--r-- 3,814 bytes parent folder | download
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
#!/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-online-schema-change";

use Data::Dumper;
$Data::Dumper::Indent    = 1;
$Data::Dumper::Sortkeys  = 1;
$Data::Dumper::Quotekeys = 0;

my $dp         = new DSNParser(opts=>$dsn_opts);
my $sb         = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $master_dbh = $sb->get_dbh_for('master');
my $slave_dbh  = $sb->get_dbh_for('slave1');

if ( !$master_dbh ) {
   plan skip_all => 'Cannot connect to sandbox master';
}

my $q      = new Quoter();
my $tp     = new TableParser(Quoter => $q);
my @args   = qw(--set-vars innodb_lock_wait_timeout=3);
my $output = "";
my $dsn    = "h=127.1,P=12345,u=msandbox,p=msandbox";
my $exit   = 0;
my $sample = "t/pt-online-schema-change/samples";
my $rows;

# #############################################################################
# Checks for the original table (check_orig_table()).
# #############################################################################

# Of course, the orig database and table must exist.
($output, undef) = full_output(
   sub { pt_online_schema_change::main(@args,
         "$dsn,D=nonexistent_db,t=t", qw(--dry-run)) },
);

like( $output,
   qr/Unknown database/,
   "Original database must exist"
);

($output, undef) = full_output(
   sub { pt_online_schema_change::main(@args,
         "$dsn,D=mysql,t=nonexistent_tbl", qw(--dry-run)) },
);

like( $output,
   qr/`mysql`.`nonexistent_tbl` does not exist/,
   "Original table must exist"
);

$sb->load_file('master', "$sample/basic_no_fks_innodb.sql");
$master_dbh->do("USE pt_osc");
$slave_dbh->do("USE pt_osc");

# The orig table cannot have any triggers.
$master_dbh->do("CREATE TRIGGER pt_osc.pt_osc_test AFTER DELETE ON pt_osc.t FOR EACH ROW DELETE FROM pt_osc.t WHERE 0");
($output, undef) = full_output(
   sub { pt_online_schema_change::main(@args,
         "$dsn,D=pt_osc,t=t", qw(--dry-run)) },
);

like( $output,
   qr/`pt_osc`.`t` has triggers/,
   "Original table cannot have triggers"
);
$master_dbh->do('DROP TRIGGER pt_osc.pt_osc_test');

# The new table must have a pk or unique index so the delete trigger is safe.
$master_dbh->do("ALTER TABLE pt_osc.t DROP COLUMN id");
$master_dbh->do("ALTER TABLE pt_osc.t DROP INDEX c");
($output, undef) = full_output(
   sub { pt_online_schema_change::main(@args,
         "$dsn,D=pt_osc,t=t", qw(--dry-run)) },
);

like( $output,
   qr/`pt_osc`.`_t_new` does not have a PRIMARY KEY or a unique index/,
   "New table must have a PK or unique index"
);

# #############################################################################
# Checks for the new table.
# #############################################################################

$sb->load_file('master', "$sample/basic_no_fks_innodb.sql");
$master_dbh->do("USE pt_osc");
$slave_dbh->do("USE pt_osc");

for my $i ( 1..10 ) {
   my $table = ('_' x $i) . 't_new';
   $master_dbh->do("create table $table (id int)");
}

my $x;
($output, $x) = full_output(
   sub { pt_online_schema_change::main(@args,
         "$dsn,D=pt_osc,t=t", qw(--quiet --dry-run)); },
);

like(
   $output,
   qr/Failed to find a unique new table name/,
   "Doesn't try forever to find a new table name"
) or diag($output);

# #############################################################################
# Done.
# #############################################################################
$sb->wipe_clean($master_dbh);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
done_testing;