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

« back to all changes in this revision

Viewing changes to t/pt-log-player/issue_903.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-log-player";
 
17
 
 
18
my $dp = new DSNParser(opts=>$dsn_opts);
 
19
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
 
20
my $dbh = $sb->get_dbh_for('master');
 
21
 
 
22
if ( !$dbh ) {
 
23
   plan skip_all => 'Cannot connect to sandbox master';
 
24
}
 
25
else {
 
26
   plan tests => 2;
 
27
}
 
28
 
 
29
# #############################################################################
 
30
# Issue 903: mk-log-player --only-select does not handle comments
 
31
# #############################################################################
 
32
 
 
33
# This should not cause an error because the leading comment
 
34
# prevents the query from looking like a SELECT.
 
35
my $output;
 
36
$output = `$trunk/bin/pt-log-player --threads 1 --play $trunk/t/pt-log-player/samples/issue_903.txt h=127.1,P=12345,u=msandbox,p=msandbox,D=mysql 2>&1`;
 
37
like(
 
38
   $output,
 
39
   qr/caused an error/,
 
40
   'Error without --only-select'
 
41
);
 
42
 
 
43
# This will cause an error now, too, because the leading comment
 
44
# is stripped.
 
45
$output = `$trunk/bin/pt-log-player --threads 1 --play $trunk/t/pt-log-player/samples/issue_903.txt h=127.1,P=12345,u=msandbox,p=msandbox,D=mysql --only-select 2>&1`;
 
46
like(
 
47
   $output,
 
48
   qr/caused an error/,
 
49
   'Error with --only-select'
 
50
);
 
51
 
 
52
# #############################################################################
 
53
# Done.
 
54
# #############################################################################
 
55
diag(`rm -rf ./session-results-*`);
 
56
exit;