Run the entire test suite under replicated SQLite on DBICTEST_VIA_REPLICATED
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest;
1c339d71 3
4use strict;
5use warnings;
39568b8a 6
bbcc1fe8 7use DBICTest::Util 'local_umask';
1c339d71 8use DBICTest::Schema;
218b7c12 9use DBICTest::Util::LeakTracer qw/populate_weakregistry assert_empty_weakregistry/;
e1d9e578 10use DBIx::Class::_Util 'detected_reinvoked_destructor';
a258bfc7 11use Carp;
de306d4b 12use Path::Class::File ();
8d6b1478 13use File::Spec;
027e3cc6 14use Fcntl qw/:DEFAULT :flock/;
2525160d 15use Config;
17e7d7f0 16
17=head1 NAME
18
a5a7bb73 19DBICTest - Library to be used by DBIx::Class test scripts
17e7d7f0 20
21=head1 SYNOPSIS
22
23 use lib qw(t/lib);
24 use DBICTest;
25 use Test::More;
8273e845 26
17e7d7f0 27 my $schema = DBICTest->init_schema();
28
29=head1 DESCRIPTION
30
8273e845 31This module provides the basic utilities to write tests against
17e7d7f0 32DBIx::Class.
33
a5a7bb73 34=head1 EXPORTS
35
36The module does not export anything by default, nor provides individual
37function exports in the conventional sense. Instead the following tags are
38recognized:
39
40=head2 :DiffSQL
41
42Same as C<use SQL::Abstract::Test
43qw(L<is_same_sql_bind|SQL::Abstract::Test/is_same_sql_bind>
44L<is_same_sql|SQL::Abstract::Test/is_same_sql>
45L<is_same_bind|SQL::Abstract::Test/is_same_bind>)>
46
47=head2 :GlobalLock
48
49Some tests are very time sensitive and need to run on their own, without
50being disturbed by anything else grabbing CPU or disk IO. Hence why everything
51using C<DBICTest> grabs a shared lock, and the few tests that request a
52C<:GlobalLock> will ask for an exclusive one and block until they can get it.
53
17e7d7f0 54=head1 METHODS
55
56=head2 init_schema
57
58 my $schema = DBICTest->init_schema(
59 no_deploy=>1,
60 no_populate=>1,
2bf79155 61 storage_type=>'::DBI::Replicated',
cb6ec758 62 storage_type_args=>{
d7a58a29 63 balancer_type=>'DBIx::Class::Storage::DBI::Replicated::Balancer::Random'
cb6ec758 64 },
17e7d7f0 65 );
66
8273e845 67This method removes the test SQLite database in t/var/DBIxClass.db
17e7d7f0 68and then creates a new, empty database.
69
a5a7bb73 70This method will call L<deploy_schema()|/deploy_schema> by default, unless the
71C<no_deploy> flag is set.
17e7d7f0 72
a5a7bb73 73Also, by default, this method will call L<populate_schema()|/populate_schema>
74by default, unless the C<no_deploy> or C<no_populate> flags are set.
17e7d7f0 75
76=cut
1c339d71 77
a5a7bb73 78# see L</:GlobalLock>
8d6b1478 79our ($global_lock_fh, $global_exclusive_lock);
80sub import {
81 my $self = shift;
82
0a03f539 83 my $lockpath = DBICTest::RunMode->tmpdir->file('_dbictest_global.lock');
8d6b1478 84
85 {
86 my $u = local_umask(0); # so that the file opens as 666, and any user can lock
fa19e5d6 87 sysopen ($global_lock_fh, $lockpath, O_RDWR|O_CREAT)
88 or die "Unable to open $lockpath: $!";
8d6b1478 89 }
90
a5a7bb73 91 for my $exp (@_) {
92 if ($exp eq ':GlobalLock') {
8d6b1478 93 flock ($global_lock_fh, LOCK_EX) or die "Unable to lock $lockpath: $!";
94 $global_exclusive_lock = 1;
95 }
a5a7bb73 96 elsif ($exp eq ':DiffSQL') {
97 require SQL::Abstract::Test;
98 my $into = caller(0);
99 for (qw(is_same_sql_bind is_same_sql is_same_bind)) {
100 no strict 'refs';
101 *{"${into}::$_"} = \&{"SQL::Abstract::Test::$_"};
102 }
103 }
8d6b1478 104 else {
a5a7bb73 105 croak "Unknown export $exp requested from $self";
8d6b1478 106 }
107 }
108
109 unless ($global_exclusive_lock) {
110 flock ($global_lock_fh, LOCK_SH) or die "Unable to lock $lockpath: $!";
111 }
112}
113
114END {
115 if ($global_lock_fh) {
116 # delay destruction even more
117 }
857d66ca 118}
119
8d6b1478 120{
de306d4b 121 my $dir = Path::Class::File->new(__FILE__)->dir->parent->subdir('var');
122 $dir->mkpath unless -d "$dir";
8d6b1478 123 $dir = "$dir";
124
125 sub _sqlite_dbfilename {
126 my $holder = $ENV{DBICTEST_LOCK_HOLDER} || $$;
127 $holder = $$ if $holder == -1;
128
129 # useful for missing cleanup debugging
130 #if ( $holder == $$) {
131 # my $x = $0;
132 # $x =~ s/\//#/g;
133 # $holder .= "-$x";
134 #}
135
136 return "$dir/DBIxClass-$holder.db";
137 }
138
139 END {
140 _cleanup_dbfile();
141 }
142}
143
144$SIG{INT} = sub { _cleanup_dbfile(); exit 1 };
145
ee573365 146my $need_global_cleanup;
8d6b1478 147sub _cleanup_dbfile {
148 # cleanup if this is us
149 if (
150 ! $ENV{DBICTEST_LOCK_HOLDER}
151 or
152 $ENV{DBICTEST_LOCK_HOLDER} == -1
153 or
154 $ENV{DBICTEST_LOCK_HOLDER} == $$
155 ) {
ee573365 156 if ($need_global_cleanup and my $dbh = DBICTest->schema->storage->_dbh) {
157 $dbh->disconnect;
158 }
159
8d6b1478 160 my $db_file = _sqlite_dbfilename();
161 unlink $_ for ($db_file, "${db_file}-journal");
162 }
163}
164
165sub has_custom_dsn {
166 return $ENV{"DBICTEST_DSN"} ? 1:0;
bcb3e850 167}
168
169sub _sqlite_dbname {
481df957 170 my $self = shift;
171 my %args = @_;
39b80a73 172 return $self->_sqlite_dbfilename if (
173 defined $args{sqlite_use_file} ? $args{sqlite_use_file} : $ENV{'DBICTEST_SQLITE_USE_FILE'}
174 );
d7a58a29 175 return ":memory:";
857d66ca 176}
177
579ca3f7 178sub _database {
17e7d7f0 179 my $self = shift;
481df957 180 my %args = @_;
17e7d7f0 181
a258bfc7 182 if ($ENV{DBICTEST_DSN}) {
183 return (
184 (map { $ENV{"DBICTEST_${_}"} || '' } qw/DSN DBUSER DBPASS/),
185 { AutoCommit => 1, %args },
186 );
187 }
188 my $db_file = $self->_sqlite_dbname(%args);
17e7d7f0 189
a258bfc7 190 for ($db_file, "${db_file}-journal") {
191 next unless -e $_;
192 unlink ($_) or carp (
70c28808 193 "Unable to unlink existing test database file $_ ($!), creation of fresh database / further tests may fail!"
a258bfc7 194 );
195 }
17e7d7f0 196
a258bfc7 197 return ("dbi:SQLite:${db_file}", '', '', {
198 AutoCommit => 1,
199
200 # this is executed on every connect, and thus installs a disconnect/DESTROY
201 # guard for every new $dbh
202 on_connect_do => sub {
9e75be92 203
a258bfc7 204 my $storage = shift;
205 my $dbh = $storage->_get_dbh;
206
207 # no fsync on commit
208 $dbh->do ('PRAGMA synchronous = OFF');
209
4f6eb3d8 210 if (
211 $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER}
212 and
213 # the pragma does not work correctly before libsqlite 3.7.9
214 $storage->_server_info->{normalized_dbms_version} >= 3.007009
215 ) {
4a24dba9 216 $dbh->do ('PRAGMA reverse_unordered_selects = ON');
217 }
fb88ca2c 218
a258bfc7 219 # set a *DBI* disconnect callback, to make sure the physical SQLite
220 # file is still there (i.e. the test does not attempt to delete
221 # an open database, which fails on Win32)
8b60b921 222 if (! $storage->{master} and my $guard_cb = __mk_disconnect_guard($db_file)) {
a258bfc7 223 $dbh->{Callbacks} = {
d9c17594 224 connect => sub { $guard_cb->('connect') },
225 disconnect => sub { $guard_cb->('disconnect') },
e1d9e578 226 DESTROY => sub { &detected_reinvoked_destructor; $guard_cb->('DESTROY') },
a258bfc7 227 };
228 }
229 },
230 %args,
231 });
579ca3f7 232}
233
d9c17594 234sub __mk_disconnect_guard {
d12d8272 235
d9c17594 236 my $db_file = shift;
7edb97b0 237
238 return if (
239 # this perl leaks handles, delaying DESTROY, can't work right
240 DBIx::Class::_ENV_::PEEPEENESS
241 or
242 ! -f $db_file
243 );
244
d9c17594 245
246 my $orig_inode = (stat($db_file))[1]
247 or return;
248
249 my $clan_connect_caller = '*UNKNOWN*';
250 my $i;
251 while ( my ($pack, $file, $line) = caller(++$i) ) {
252 next if $file eq __FILE__;
253 next if $pack =~ /^DBIx::Class|^Try::Tiny/;
254 $clan_connect_caller = "$file line $line";
255 }
256
257 my $failed_once = 0;
258 my $connected = 1;
259
260 return sub {
261 return if $failed_once;
262
263 my $event = shift;
264 if ($event eq 'connect') {
265 # this is necessary in case we are disconnected and connected again, all within the same $dbh object
266 $connected = 1;
267 return;
268 }
269 elsif ($event eq 'disconnect') {
270 $connected = 0;
271 }
272 elsif ($event eq 'DESTROY' and ! $connected ) {
273 return;
274 }
275
276 my $fail_reason;
277 if (! -e $db_file) {
278 $fail_reason = 'is missing';
279 }
280 else {
281 my $cur_inode = (stat($db_file))[1];
282
283 if ($orig_inode != $cur_inode) {
2525160d 284 my @inodes = ($orig_inode, $cur_inode);
285 # unless this is a fixed perl (P5RT#84590) pack/unpack before display
286 # to match the unsigned longs returned by `stat`
287 @inodes = map { unpack ('L', pack ('l', $_) ) } @inodes
288 unless $Config{st_ino_size};
289
290 $fail_reason = sprintf
291 'was recreated (initially inode %s, now %s)',
292 @inodes
293 ;
d9c17594 294 }
295 }
296
297 if ($fail_reason) {
298 $failed_once++;
299
300 require Test::Builder;
301 my $t = Test::Builder->new;
302 local $Test::Builder::Level = $Test::Builder::Level + 3;
303 $t->ok (0,
304 "$db_file originally created at $clan_connect_caller $fail_reason before $event "
305 . 'of DBI handle - a strong indicator that the database file was tampered with while '
306 . 'still being open. This action would fail massively if running under Win32, hence '
307 . 'we make sure it fails on any OS :)'
308 );
309 }
310
311 return; # this empty return is a DBI requirement
312 };
313}
314
65d35121 315my $weak_registry = {};
316
579ca3f7 317sub init_schema {
318 my $self = shift;
319 my %args = @_;
320
321 my $schema;
d7a58a29 322
8b60b921 323 if (
324 $ENV{DBICTEST_VIA_REPLICATED} &&=
325 ( !$args{storage_type} && !defined $args{sqlite_use_file} )
326 ) {
327 $args{storage_type} = ['::DBI::Replicated', { balancer_type => '::Random' }];
328 $args{sqlite_use_file} = 1;
329 }
330
b74b15b0 331 my @dsn = $self->_database(%args);
332
640ac94c 333 if ($args{compose_connection}) {
ee573365 334 $need_global_cleanup = 1;
640ac94c 335 $schema = DBICTest::Schema->compose_connection(
b74b15b0 336 'DBICTest', @dsn
640ac94c 337 );
338 } else {
339 $schema = DBICTest::Schema->compose_namespace('DBICTest');
340 }
a258bfc7 341
2bf79155 342 if( $args{storage_type}) {
d7a58a29 343 $schema->storage_type($args{storage_type});
344 }
a258bfc7 345
579ca3f7 346 if ( !$args{no_connect} ) {
b74b15b0 347 $schema->connection(@dsn);
8b60b921 348
349 $schema->storage->connect_replicants(\@dsn)
350 if $ENV{DBICTEST_VIA_REPLICATED};
3943fd63 351 }
a258bfc7 352
17e7d7f0 353 if ( !$args{no_deploy} ) {
89cf6a70 354 __PACKAGE__->deploy_schema( $schema, $args{deploy_args} );
355 __PACKAGE__->populate_schema( $schema )
356 if( !$args{no_populate} );
17e7d7f0 357 }
65d35121 358
359 populate_weakregistry ( $weak_registry, $schema->storage )
360 if $INC{'Test/Builder.pm'} and $schema->storage;
361
17e7d7f0 362 return $schema;
363}
364
65d35121 365END {
961d79db 366 # Make sure we run after any cleanup in other END blocks
961d79db 367 push @{ B::end_av()->object_2svref }, sub {
65d35121 368 assert_empty_weakregistry($weak_registry, 'quiet');
961d79db 369 };
65d35121 370}
371
17e7d7f0 372=head2 deploy_schema
373
374 DBICTest->deploy_schema( $schema );
375
8273e845 376This method does one of two things to the schema. It can either call
377the experimental $schema->deploy() if the DBICTEST_SQLT_DEPLOY environment
378variable is set, otherwise the default is to read in the t/lib/sqlite.sql
379file and execute the SQL within. Either way you end up with a fresh set
17e7d7f0 380of tables for testing.
381
382=cut
383
384sub deploy_schema {
385 my $self = shift;
89cf6a70 386 my $schema = shift;
387 my $args = shift || {};
17e7d7f0 388
f8200928 389 local $schema->storage->{debug}
390 if ($ENV{TRAVIS}||'') eq 'true';
391
8273e845 392 if ($ENV{"DBICTEST_SQLT_DEPLOY"}) {
06e15b8e 393 $schema->deploy($args);
17e7d7f0 394 } else {
de306d4b 395 my $filename = Path::Class::File->new(__FILE__)->dir
396 ->file('sqlite.sql')->stringify;
397 my $sql = do { local (@ARGV, $/) = $filename ; <> };
ebf846e8 398 for my $chunk ( split (/;\s*\n+/, $sql) ) {
399 if ( $chunk =~ / ^ (?! --\s* ) \S /xm ) { # there is some real sql in the chunk - a non-space at the start of the string which is not a comment
856e2d17 400 $schema->storage->dbh_do(sub { $_[1]->do($chunk) }) or print "Error on SQL: $chunk\n";
ebf846e8 401 }
402 }
17e7d7f0 403 }
89cf6a70 404 return;
17e7d7f0 405}
406
407=head2 populate_schema
408
409 DBICTest->populate_schema( $schema );
410
8273e845 411After you deploy your schema you can use this method to populate
17e7d7f0 412the tables with test data.
413
414=cut
415
416sub populate_schema {
417 my $self = shift;
418 my $schema = shift;
419
f8200928 420 local $schema->storage->{debug}
421 if ($ENV{TRAVIS}||'') eq 'true';
422
972015a7 423 $schema->populate('Genre', [
424 [qw/genreid name/],
425 [qw/1 emo /],
426 ]);
427
17e7d7f0 428 $schema->populate('Artist', [
77211009 429 [ qw/artistid name/ ],
430 [ 1, 'Caterwauler McCrae' ],
431 [ 2, 'Random Boy Band' ],
432 [ 3, 'We Are Goth' ],
17e7d7f0 433 ]);
434
435 $schema->populate('CD', [
972015a7 436 [ qw/cdid artist title year genreid/ ],
437 [ 1, 1, "Spoonful of bees", 1999, 1 ],
17e7d7f0 438 [ 2, 1, "Forkful of bees", 2001 ],
439 [ 3, 1, "Caterwaulin' Blues", 1997 ],
440 [ 4, 2, "Generic Manufactured Singles", 2001 ],
441 [ 5, 3, "Come Be Depressed With Us", 1998 ],
442 ]);
443
444 $schema->populate('LinerNotes', [
445 [ qw/liner_id notes/ ],
446 [ 2, "Buy Whiskey!" ],
447 [ 4, "Buy Merch!" ],
448 [ 5, "Kill Yourself!" ],
449 ]);
450
451 $schema->populate('Tag', [
452 [ qw/tagid cd tag/ ],
453 [ 1, 1, "Blue" ],
454 [ 2, 2, "Blue" ],
455 [ 3, 3, "Blue" ],
456 [ 4, 5, "Blue" ],
457 [ 5, 2, "Cheesy" ],
458 [ 6, 4, "Cheesy" ],
459 [ 7, 5, "Cheesy" ],
460 [ 8, 2, "Shiny" ],
461 [ 9, 4, "Shiny" ],
462 ]);
463
464 $schema->populate('TwoKeys', [
465 [ qw/artist cd/ ],
466 [ 1, 1 ],
467 [ 1, 2 ],
468 [ 2, 2 ],
469 ]);
470
471 $schema->populate('FourKeys', [
3bd6e3e0 472 [ qw/foo bar hello goodbye sensors/ ],
473 [ 1, 2, 3, 4, 'online' ],
474 [ 5, 4, 3, 6, 'offline' ],
17e7d7f0 475 ]);
476
477 $schema->populate('OneKey', [
478 [ qw/id artist cd/ ],
479 [ 1, 1, 1 ],
480 [ 2, 1, 2 ],
481 [ 3, 2, 2 ],
482 ]);
483
484 $schema->populate('SelfRef', [
485 [ qw/id name/ ],
486 [ 1, 'First' ],
487 [ 2, 'Second' ],
488 ]);
489
490 $schema->populate('SelfRefAlias', [
491 [ qw/self_ref alias/ ],
492 [ 1, 2 ]
493 ]);
494
495 $schema->populate('ArtistUndirectedMap', [
496 [ qw/id1 id2/ ],
497 [ 1, 2 ]
498 ]);
499
500 $schema->populate('Producer', [
501 [ qw/producerid name/ ],
502 [ 1, 'Matt S Trout' ],
503 [ 2, 'Bob The Builder' ],
504 [ 3, 'Fred The Phenotype' ],
505 ]);
506
507 $schema->populate('CD_to_Producer', [
508 [ qw/cd producer/ ],
509 [ 1, 1 ],
510 [ 1, 2 ],
511 [ 1, 3 ],
512 ]);
8273e845 513
8871d4ad 514 $schema->populate('TreeLike', [
61177e44 515 [ qw/id parent name/ ],
972015a7 516 [ 1, undef, 'root' ],
8871d4ad 517 [ 2, 1, 'foo' ],
518 [ 3, 2, 'bar' ],
519 [ 6, 2, 'blop' ],
520 [ 4, 3, 'baz' ],
521 [ 5, 4, 'quux' ],
522 [ 7, 3, 'fong' ],
523 ]);
4b8dcc58 524
17e7d7f0 525 $schema->populate('Track', [
526 [ qw/trackid cd position title/ ],
527 [ 4, 2, 1, "Stung with Success"],
528 [ 5, 2, 2, "Stripy"],
529 [ 6, 2, 3, "Sticky Honey"],
530 [ 7, 3, 1, "Yowlin"],
531 [ 8, 3, 2, "Howlin"],
532 [ 9, 3, 3, "Fowlin"],
533 [ 10, 4, 1, "Boring Name"],
534 [ 11, 4, 2, "Boring Song"],
535 [ 12, 4, 3, "No More Ideas"],
536 [ 13, 5, 1, "Sad"],
537 [ 14, 5, 2, "Under The Weather"],
538 [ 15, 5, 3, "Suicidal"],
539 [ 16, 1, 1, "The Bees Knees"],
540 [ 17, 1, 2, "Apiary"],
541 [ 18, 1, 3, "Beehind You"],
542 ]);
4b8dcc58 543
ae515736 544 $schema->populate('Event', [
ff8a6e3b 545 [ qw/id starts_at created_on varchar_date varchar_datetime skip_inflation/ ],
546 [ 1, '2006-04-25 22:24:33', '2006-06-22 21:00:05', '2006-07-23', '2006-05-22 19:05:07', '2006-04-21 18:04:06'],
ae515736 547 ]);
548
17e7d7f0 549 $schema->populate('Link', [
54e0bd06 550 [ qw/id url title/ ],
551 [ 1, '', 'aaa' ]
17e7d7f0 552 ]);
e673f011 553
17e7d7f0 554 $schema->populate('Bookmark', [
555 [ qw/id link/ ],
556 [ 1, 1 ]
557 ]);
78060df8 558
559 $schema->populate('Collection', [
560 [ qw/collectionid name/ ],
561 [ 1, "Tools" ],
562 [ 2, "Body Parts" ],
563 ]);
8273e845 564
78060df8 565 $schema->populate('TypedObject', [
566 [ qw/objectid type value/ ],
567 [ 1, "pointy", "Awl" ],
568 [ 2, "round", "Bearing" ],
569 [ 3, "pointy", "Knife" ],
570 [ 4, "pointy", "Tooth" ],
571 [ 5, "round", "Head" ],
572 ]);
89cf6a70 573 $schema->populate('CollectionObject', [
574 [ qw/collection object/ ],
575 [ 1, 1 ],
576 [ 1, 2 ],
577 [ 1, 3 ],
578 [ 2, 4 ],
579 [ 2, 5 ],
580 ]);
78060df8 581
582 $schema->populate('Owners', [
bed3a173 583 [ qw/id name/ ],
78060df8 584 [ 1, "Newton" ],
585 [ 2, "Waltham" ],
586 ]);
587
588 $schema->populate('BooksInLibrary', [
cda5e082 589 [ qw/id owner title source price/ ],
590 [ 1, 1, "Programming Perl", "Library", 23 ],
591 [ 2, 1, "Dynamical Systems", "Library", 37 ],
592 [ 3, 2, "Best Recipe Cookbook", "Library", 65 ],
78060df8 593 ]);
1c339d71 594}
4b8dcc58 595
510ca912 5961;