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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
use 5.008;
use strict;
use warnings;
use Test::More;
use Test::Exception;
BEGIN {
use_ok('DBD::Mock');
use_ok('DBI');
}
# test the ability to overwrite a
# hash based 'mock_add_resultset'
# and have it work as expected
# tests for the return value of execute below as well
my $dbh = DBI->connect('dbi:Mock:', '', '');
isa_ok($dbh, 'DBI::db');
$dbh->{mock_add_resultset} = {
sql => 'SELECT foo FROM bar',
results => [[ 'foo' ], [ 10 ]]
};
{
my $sth = $dbh->prepare('SELECT foo FROM bar');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 10, '... got the result we expected');
$sth->finish();
}
$dbh->{mock_add_resultset} = {
sql => 'SELECT foo FROM bar',
results => [[ 'foo' ], [ 50 ]]
};
{
my $sth = $dbh->prepare('SELECT foo FROM bar');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 50, '... got the result we expected');
$sth->finish();
}
# get it again
{
my $sth = $dbh->prepare('SELECT foo FROM bar');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 50, '... got the result we expected');
$sth->finish();
}
# and one more time for good measure
{
my $sth = $dbh->prepare('SELECT foo FROM bar');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 50, '... got the result we expected');
$sth->finish();
}
## test regular expression for query matching
$dbh->{mock_add_resultset} = {
sql => qr/^SELECT foo/,
results => [ [ 'foo' ], [ 200 ] ],
};
## This one should never be used as the above one will have precedence
$dbh->{mock_add_resultset} = {
sql => qr/^SELECT foo FROM/,
results => [ [ 'foo' ], [ 300 ] ],
};
{
my $sth = $dbh->prepare('SELECT foo FROM oof');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 200, '... got the result we expected');
$sth->finish();
}
## overwrite regular expression matching
$dbh->{mock_add_resultset} = {
sql => qr/^SELECT foo/,
results => [ [ 'foo' ], [ 400 ] ],
};
{
my $sth = $dbh->prepare('SELECT foo FROM oof');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 400, '... got the result we expected');
$sth->finish();
}
# check that statically assigned queries take precedence over regex matched ones
{
my $sth = $dbh->prepare('SELECT foo FROM bar');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
my ($result) = $sth->fetchrow_array();
is($result, 50, '... got the result we expected');
$sth->finish();
}
## test the return value of execute
$dbh->{mock_add_resultset} = {
sql => 'INSERT INTO foo VALUES(bar)',
results => [[], []]
};
# check no SELECT statements
{
my $sth = $dbh->prepare('INSERT INTO foo VALUES(bar)');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, 1, '... got back 1 for rows with our INSERT statement');
$sth->finish();
}
$dbh->{mock_add_resultset} = {
sql => 'UPDATE foo SET(bar = "baz")',
results => [[], [], [], [], []]
};
# check no SELECT statements
{
my $sth = $dbh->prepare('UPDATE foo SET(bar = "baz")');
isa_ok($sth, 'DBI::st');
my $rows = $sth->execute();
is($rows, 4, '... got back 4 for rows with our UPDATE statement');
$sth->finish();
}
$dbh->{mock_add_resultset} = {
sql => 'SELECT x FROM y WHERE z = ?',
results => [ ["x"] ],
callback => sub {
my @bound_params = @_;
my %result = ( rows => [[ 1] ] );
if ($bound_params[0] == 1) {
$result{rows} = [ [32] ];
} elsif ($bound_params[0] == 2) {
$result{rows} = [ [43] ];
}
return %result;
},
};
{
my $sth = $dbh->prepare('SELECT x FROM y WHERE z = ?');
isa_ok($sth, 'DBI::st');
is($sth->{NUM_OF_FIELDS}, 1, "... When we specify the fields in the results parameter then we expect an answer from NUM_OF_FIELDS before we execute the statement");
my $rows = $sth->execute(1);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
is($sth->{NUM_OF_FIELDS}, 1, "... When we specify the fields in the results parameter then we expect an answer from NUM_OF_FIELDS after we execute the statement");
my ($result) = $sth->fetchrow_array();
is($result, 32, '... got the result we expected');
$rows = $sth->execute(2);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 43, '... got the result we expected');
$rows = $sth->execute(33);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 1, '... got the result we expected');
$sth->finish();
}
$dbh->{mock_add_resultset} = {
sql => 'SELECT a FROM b WHERE c = ?',
callback => sub {
my @bound_params = @_;
my %result = (
fields => [ "a" ],
rows => [[ 1] ]
);
if ($bound_params[0] == 1) {
$result{rows} = [ [32] ];
} elsif ($bound_params[0] == 2) {
$result{rows} = [ [43] ];
}
return %result;
},
};
{
my $sth = $dbh->prepare('SELECT a FROM b WHERE c = ?');
isa_ok($sth, 'DBI::st');
is($sth->{NUM_OF_FIELDS}, 0 , "... When we don't specify the fields in the results parameter and we haven't activated the DefaultFieldsToUndef feature, then we expect the NUM_OF_FIELDS to be 0 before we execute the statement");
my $rows = $sth->execute(1);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
is($sth->{NUM_OF_FIELDS}, 1, "... When we don't specify the fields in the results parameter then we still expect an answer from NUM_OF_FIELDS after we've execute the statement");
my ($result) = $sth->fetchrow_array();
is($result, 32, '... got the result we expected');
$rows = $sth->execute(2);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 43, '... got the result we expected');
$rows = $sth->execute(33);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 1, '... got the result we expected');
$sth->finish();
}
{
# Activate the DefaultFieldsToUndef feature
$DBD::Mock::DefaultFieldsToUndef = 1;
my $sth = $dbh->prepare('SELECT a FROM b WHERE c = ?');
isa_ok($sth, 'DBI::st');
is($sth->{NUM_OF_FIELDS}, undef , "... When we don't specify the fields in the results parameter then we expect the NUM_OF_FIELDS to be undef before we execute the statement");
my $rows = $sth->execute(1);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
is($sth->{NUM_OF_FIELDS}, 1, "... When we don't specify the fields in the results parameter then we still expect an answer from NUM_OF_FIELDS after we've execute the statement");
my ($result) = $sth->fetchrow_array();
is($result, 32, '... got the result we expected');
$rows = $sth->execute(2);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 43, '... got the result we expected');
$rows = $sth->execute(33);
is($rows, '0E0', '... got back 0E0 for rows with a SELECT statement');
($result) = $sth->fetchrow_array();
is($result, 1, '... got the result we expected');
$sth->finish();
}
$dbh->{mock_start_insert_id} = [ 'y', 4 ];
$dbh->{mock_add_resultset} = {
sql => 'INSERT INTO y ( x ) VALUES ( ? )',
callback => sub {
my @bound_params = @_;
my %result = (
fields => [],
rows => []
);
return %result;
},
};
{
my $sth = $dbh->prepare( 'INSERT INTO y ( x ) VALUES ( ? )' );
$sth->execute( 'test' );
is( $dbh->last_insert_id( (undef) x 4 ), 4, "last_insert_id should return the next Id value after an insert as our callback doesn't override it")
}
$dbh->{mock_add_resultset} = {
sql => 'INSERT INTO y ( x ) VALUES ( ? )',
callback => sub {
my @bound_params = @_;
my %result = (
fields => [],
rows => [],
last_insert_id => 99,
);
return %result;
},
};
{
my $sth = $dbh->prepare( 'INSERT INTO y ( x ) VALUES ( ? )' );
$sth->execute( 'test' );
is( $dbh->last_insert_id( (undef) x 4 ), 99, "last_insert_id should return the id the callback has provided");
is( $dbh->{mock_last_insert_ids}{y}, 5, "If we provide a last_insert_id value then the one stored against the table shouldn't be updated");
}
$dbh->{mock_add_resultset} = {
sql => 'SELECT x FROM y WHERE z = ?',
callback => sub {
return (
fields => [ 'a' ],
rows => [ 1 ],
);
},
};
{
my $sth = $dbh->prepare('SELECT x FROM y WHERE z = ?');
isa_ok($sth, 'DBI::st');
throws_ok {
my $rows = $sth->execute(1);
} qr/DBD::Mock error - a resultset's callback should return rows as an arrayref of arrayrefs/, "If we don't provided an arrayref or arrayrefs for the rows then that's an error";
}
done_testing();
|