~percona-toolkit-dev/percona-toolkit/mysql-5.6-test-fixes

« back to all changes in this revision

Viewing changes to t/pt-table-sync/zero_chunk.t

  • Committer: Daniel Nichter
  • Date: 2011-06-24 22:02:05 UTC
  • Revision ID: daniel@percona.com-20110624220205-e779cao9hcwyly1w
Add forked Maatkit tools in bin/ and their tests in t/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env perl
 
2
 
 
3
BEGIN {
 
4
   die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
 
5
      unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
 
6
   unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
 
7
};
 
8
 
 
9
use strict;
 
10
use warnings FATAL => 'all';
 
11
use English qw(-no_match_vars);
 
12
use Test::More;
 
13
 
 
14
use MaatkitTest;
 
15
use Sandbox;
 
16
require "$trunk/bin/pt-table-sync";
 
17
 
 
18
my $dp = new DSNParser(opts=>$dsn_opts);
 
19
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
 
20
my $master_dbh = $sb->get_dbh_for('master');
 
21
my $slave_dbh  = $sb->get_dbh_for('slave1');
 
22
 
 
23
if ( !$master_dbh ) {
 
24
   plan skip_all => 'Cannot connect to sandbox master';
 
25
}
 
26
elsif ( !$slave_dbh ) {
 
27
   plan skip_all => 'Cannot connect to sandbox slave';
 
28
}
 
29
else {
 
30
   plan tests => 2;
 
31
}
 
32
 
 
33
my $output;
 
34
my @args = ('h=127.0.0.1,P=12346,u=msandbox,p=msandbox', qw(--sync-to-master -t sakila.actor -v -v --print --chunk-size 100));
 
35
 
 
36
$output = output(
 
37
   sub { mk_table_sync::main(@args) },
 
38
);
 
39
like(
 
40
   $output,
 
41
   qr/WHERE \(`actor_id` = 0\)/,
 
42
   "Zero chunk"
 
43
);
 
44
 
 
45
$output = output(
 
46
   sub { mk_table_sync::main(@args, qw(--no-zero-chunk)) },
 
47
);
 
48
unlike(
 
49
   $output,
 
50
   qr/WHERE \(`actor_id` = 0\)/,
 
51
   "No zero chunk"
 
52
);
 
53
 
 
54
# #############################################################################
 
55
# Done.
 
56
# #############################################################################
 
57
$sb->wipe_clean($master_dbh);
 
58
exit;