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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
#!/usr/bin/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 tests => 6;
use MockSyncStream;
use Quoter;
use MockSth;
use RowDiff;
use PerconaTest;
my $rd = new RowDiff( dbh => 1 );
my @rows;
sub same_row {
push @rows, 'same';
}
sub not_in_left {
push @rows, 'not in left';
}
sub not_in_right {
push @rows, 'not in right';
}
my $mss = new MockSyncStream(
query => 'SELECT a, b, c FROM foo WHERE id = 1',
cols => [qw(a b c)],
same_row => \&same_row,
not_in_left => \¬_in_left,
not_in_right => \¬_in_right,
);
is(
$mss->get_sql(),
'SELECT a, b, c FROM foo WHERE id = 1',
'get_sql()',
);
is( $mss->done(), undef, 'Not done yet' );
@rows = ();
$rd->compare_sets(
left_sth => new MockSth(
{ a => 1, b => 2, c => 3 },
{ a => 2, b => 2, c => 3 },
{ a => 3, b => 2, c => 3 },
# { a => 4, b => 2, c => 3 },
),
right_sth => new MockSth(
# { a => 1, b => 2, c => 3 },
{ a => 2, b => 2, c => 3 },
{ a => 3, b => 2, c => 3 },
{ a => 4, b => 2, c => 3 },
),
syncer => $mss,
tbl_struct => {},
);
is_deeply(
\@rows,
[
'not in right',
'same',
'same',
'not in left',
],
'rows from handler',
);
# #############################################################################
# Test online stuff, e.g. get_cols_and_struct().
# #############################################################################
use DSNParser;
use Sandbox;
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh = $sb->get_dbh_for('master');
SKIP: {
skip 'Cannot connect to sandbox mater', 2 unless $dbh;
diag(`/tmp/12345/use -e 'CREATE DATABASE test' 2>/dev/null`);
diag(`/tmp/12345/use < $trunk/t/lib/samples/col_types.sql`);
my $sth = $dbh->prepare('SELECT * FROM test.col_types_1');
$sth->execute();
is_deeply(
MockSyncStream::get_result_set_struct($dbh, $sth),
{
cols => [
'id',
'i',
'f',
'd',
'dt',
'ts',
'c',
'c2',
'v',
't',
],
type_for => {
id => 'integer',
i => 'integer',
f => 'float',
d => $DBD::mysql::VERSION ge '4.001' ? 'decimal' : 'varchar',
dt => 'timestamp',
ts => 'timestamp',
c => 'char',
c2 => 'char',
v => 'varchar',
t => 'blob',
},
is_numeric => {
id => 1,
i => 1,
f => 1,
d => $DBD::mysql::VERSION ge '4.001' ? 1 : 0,
dt => 0,
ts => 0,
c => 0,
c2 => 0,
v => 0,
t => 0,
},
is_col => {
id => 1,
i => 1,
f => 1,
d => 1,
dt => 1,
ts => 1,
c => 1,
c2 => 1,
v => 1,
t => 1,
},
col_posn => {
id => 0,
i => 1,
f => 2,
d => 3,
dt => 4,
ts => 5,
c => 6,
c2 => 7,
v => 8,
t => 9,
},
is_nullable => {
id => 1,
i => 1,
f => 1,
d => 1,
dt => 0,
ts => 0,
c => 1,
c2 => 1, # it's really not but this is a sth limitation
v => 1,
t => 1,
},
size => {
id => undef,
i => undef,
f => undef,
d => $DBD::mysql::VERSION ge '4.001' ? undef : '(7)',
dt => undef,
ts => undef,
c => $sandbox_version ge '8.0' ? '(4)' : '(3)',
c2 => $sandbox_version ge '8.0' ? '(60)' : '(45)',
v => $sandbox_version ge '8.0' ? '(128)' : '(96)',
t => undef,
},
},
'Gets result set struct from sth attribs'
);
$sth = $dbh->prepare('SELECT v, c, t, id, i, f, d FROM test.col_types_1');
$sth->execute();
my $row = $sth->fetchrow_hashref();
is_deeply(
MockSyncStream::as_arrayref($sth, $row),
['hello world','c','this is text',1,1,3.14,5.08,],
'as_arrayref()'
);
$sth->finish();
$sb->wipe_clean($dbh);
$dbh->disconnect();
};
# #############################################################################
# Done.
# #############################################################################
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
exit;
|