Workaround for double-call of destructors (based on 3d56e026 and e1d9e578)
[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/;
d63c9e64 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
146sub _cleanup_dbfile {
147 # cleanup if this is us
148 if (
149 ! $ENV{DBICTEST_LOCK_HOLDER}
150 or
151 $ENV{DBICTEST_LOCK_HOLDER} == -1
152 or
153 $ENV{DBICTEST_LOCK_HOLDER} == $$
154 ) {
155 my $db_file = _sqlite_dbfilename();
156 unlink $_ for ($db_file, "${db_file}-journal");
157 }
158}
159
160sub has_custom_dsn {
161 return $ENV{"DBICTEST_DSN"} ? 1:0;
bcb3e850 162}
163
164sub _sqlite_dbname {
481df957 165 my $self = shift;
166 my %args = @_;
39b80a73 167 return $self->_sqlite_dbfilename if (
168 defined $args{sqlite_use_file} ? $args{sqlite_use_file} : $ENV{'DBICTEST_SQLITE_USE_FILE'}
169 );
d7a58a29 170 return ":memory:";
857d66ca 171}
172
579ca3f7 173sub _database {
17e7d7f0 174 my $self = shift;
481df957 175 my %args = @_;
17e7d7f0 176
a258bfc7 177 if ($ENV{DBICTEST_DSN}) {
178 return (
179 (map { $ENV{"DBICTEST_${_}"} || '' } qw/DSN DBUSER DBPASS/),
180 { AutoCommit => 1, %args },
181 );
182 }
183 my $db_file = $self->_sqlite_dbname(%args);
17e7d7f0 184
a258bfc7 185 for ($db_file, "${db_file}-journal") {
186 next unless -e $_;
187 unlink ($_) or carp (
70c28808 188 "Unable to unlink existing test database file $_ ($!), creation of fresh database / further tests may fail!"
a258bfc7 189 );
190 }
17e7d7f0 191
a258bfc7 192 return ("dbi:SQLite:${db_file}", '', '', {
193 AutoCommit => 1,
194
195 # this is executed on every connect, and thus installs a disconnect/DESTROY
196 # guard for every new $dbh
197 on_connect_do => sub {
9e75be92 198
a258bfc7 199 my $storage = shift;
200 my $dbh = $storage->_get_dbh;
201
202 # no fsync on commit
203 $dbh->do ('PRAGMA synchronous = OFF');
204
4f6eb3d8 205 if (
206 $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER}
207 and
208 # the pragma does not work correctly before libsqlite 3.7.9
209 $storage->_server_info->{normalized_dbms_version} >= 3.007009
210 ) {
4a24dba9 211 $dbh->do ('PRAGMA reverse_unordered_selects = ON');
212 }
fb88ca2c 213
a258bfc7 214 # set a *DBI* disconnect callback, to make sure the physical SQLite
215 # file is still there (i.e. the test does not attempt to delete
216 # an open database, which fails on Win32)
e1ff35c4 217 if (my $guard_cb = __mk_disconnect_guard($db_file)) {
a258bfc7 218 $dbh->{Callbacks} = {
d9c17594 219 connect => sub { $guard_cb->('connect') },
220 disconnect => sub { $guard_cb->('disconnect') },
d63c9e64 221 DESTROY => sub { &detected_reinvoked_destructor; $guard_cb->('DESTROY') },
a258bfc7 222 };
223 }
224 },
225 %args,
226 });
579ca3f7 227}
228
d9c17594 229sub __mk_disconnect_guard {
d12d8272 230
d9c17594 231 my $db_file = shift;
7edb97b0 232
233 return if (
234 # this perl leaks handles, delaying DESTROY, can't work right
235 DBIx::Class::_ENV_::PEEPEENESS
236 or
237 ! -f $db_file
238 );
239
d9c17594 240
241 my $orig_inode = (stat($db_file))[1]
242 or return;
243
244 my $clan_connect_caller = '*UNKNOWN*';
245 my $i;
246 while ( my ($pack, $file, $line) = caller(++$i) ) {
247 next if $file eq __FILE__;
248 next if $pack =~ /^DBIx::Class|^Try::Tiny/;
249 $clan_connect_caller = "$file line $line";
250 }
251
252 my $failed_once = 0;
253 my $connected = 1;
254
255 return sub {
256 return if $failed_once;
257
258 my $event = shift;
259 if ($event eq 'connect') {
260 # this is necessary in case we are disconnected and connected again, all within the same $dbh object
261 $connected = 1;
262 return;
263 }
264 elsif ($event eq 'disconnect') {
265 $connected = 0;
266 }
267 elsif ($event eq 'DESTROY' and ! $connected ) {
268 return;
269 }
270
271 my $fail_reason;
272 if (! -e $db_file) {
273 $fail_reason = 'is missing';
274 }
275 else {
276 my $cur_inode = (stat($db_file))[1];
277
278 if ($orig_inode != $cur_inode) {
2525160d 279 my @inodes = ($orig_inode, $cur_inode);
280 # unless this is a fixed perl (P5RT#84590) pack/unpack before display
281 # to match the unsigned longs returned by `stat`
282 @inodes = map { unpack ('L', pack ('l', $_) ) } @inodes
283 unless $Config{st_ino_size};
284
285 $fail_reason = sprintf
286 'was recreated (initially inode %s, now %s)',
287 @inodes
288 ;
d9c17594 289 }
290 }
291
292 if ($fail_reason) {
293 $failed_once++;
294
295 require Test::Builder;
296 my $t = Test::Builder->new;
297 local $Test::Builder::Level = $Test::Builder::Level + 3;
298 $t->ok (0,
299 "$db_file originally created at $clan_connect_caller $fail_reason before $event "
300 . 'of DBI handle - a strong indicator that the database file was tampered with while '
301 . 'still being open. This action would fail massively if running under Win32, hence '
302 . 'we make sure it fails on any OS :)'
303 );
304 }
305
306 return; # this empty return is a DBI requirement
307 };
308}
309
65d35121 310my $weak_registry = {};
311
579ca3f7 312sub init_schema {
313 my $self = shift;
314 my %args = @_;
315
316 my $schema;
d7a58a29 317
640ac94c 318 if ($args{compose_connection}) {
319 $schema = DBICTest::Schema->compose_connection(
481df957 320 'DBICTest', $self->_database(%args)
640ac94c 321 );
322 } else {
323 $schema = DBICTest::Schema->compose_namespace('DBICTest');
324 }
a258bfc7 325
2bf79155 326 if( $args{storage_type}) {
d7a58a29 327 $schema->storage_type($args{storage_type});
328 }
a258bfc7 329
579ca3f7 330 if ( !$args{no_connect} ) {
481df957 331 $schema = $schema->connect($self->_database(%args));
3943fd63 332 }
a258bfc7 333
17e7d7f0 334 if ( !$args{no_deploy} ) {
89cf6a70 335 __PACKAGE__->deploy_schema( $schema, $args{deploy_args} );
336 __PACKAGE__->populate_schema( $schema )
337 if( !$args{no_populate} );
17e7d7f0 338 }
65d35121 339
340 populate_weakregistry ( $weak_registry, $schema->storage )
341 if $INC{'Test/Builder.pm'} and $schema->storage;
342
17e7d7f0 343 return $schema;
344}
345
65d35121 346END {
961d79db 347 # Make sure we run after any cleanup in other END blocks
961d79db 348 push @{ B::end_av()->object_2svref }, sub {
65d35121 349 assert_empty_weakregistry($weak_registry, 'quiet');
961d79db 350 };
65d35121 351}
352
17e7d7f0 353=head2 deploy_schema
354
355 DBICTest->deploy_schema( $schema );
356
8273e845 357This method does one of two things to the schema. It can either call
358the experimental $schema->deploy() if the DBICTEST_SQLT_DEPLOY environment
359variable is set, otherwise the default is to read in the t/lib/sqlite.sql
360file and execute the SQL within. Either way you end up with a fresh set
17e7d7f0 361of tables for testing.
362
363=cut
364
365sub deploy_schema {
366 my $self = shift;
89cf6a70 367 my $schema = shift;
368 my $args = shift || {};
17e7d7f0 369
f8200928 370 local $schema->storage->{debug}
371 if ($ENV{TRAVIS}||'') eq 'true';
372
8273e845 373 if ($ENV{"DBICTEST_SQLT_DEPLOY"}) {
06e15b8e 374 $schema->deploy($args);
17e7d7f0 375 } else {
de306d4b 376 my $filename = Path::Class::File->new(__FILE__)->dir
377 ->file('sqlite.sql')->stringify;
378 my $sql = do { local (@ARGV, $/) = $filename ; <> };
ebf846e8 379 for my $chunk ( split (/;\s*\n+/, $sql) ) {
380 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 381 $schema->storage->dbh_do(sub { $_[1]->do($chunk) }) or print "Error on SQL: $chunk\n";
ebf846e8 382 }
383 }
17e7d7f0 384 }
89cf6a70 385 return;
17e7d7f0 386}
387
388=head2 populate_schema
389
390 DBICTest->populate_schema( $schema );
391
8273e845 392After you deploy your schema you can use this method to populate
17e7d7f0 393the tables with test data.
394
395=cut
396
397sub populate_schema {
398 my $self = shift;
399 my $schema = shift;
400
f8200928 401 local $schema->storage->{debug}
402 if ($ENV{TRAVIS}||'') eq 'true';
403
972015a7 404 $schema->populate('Genre', [
405 [qw/genreid name/],
406 [qw/1 emo /],
407 ]);
408
17e7d7f0 409 $schema->populate('Artist', [
77211009 410 [ qw/artistid name/ ],
411 [ 1, 'Caterwauler McCrae' ],
412 [ 2, 'Random Boy Band' ],
413 [ 3, 'We Are Goth' ],
17e7d7f0 414 ]);
415
416 $schema->populate('CD', [
972015a7 417 [ qw/cdid artist title year genreid/ ],
418 [ 1, 1, "Spoonful of bees", 1999, 1 ],
17e7d7f0 419 [ 2, 1, "Forkful of bees", 2001 ],
420 [ 3, 1, "Caterwaulin' Blues", 1997 ],
421 [ 4, 2, "Generic Manufactured Singles", 2001 ],
422 [ 5, 3, "Come Be Depressed With Us", 1998 ],
423 ]);
424
425 $schema->populate('LinerNotes', [
426 [ qw/liner_id notes/ ],
427 [ 2, "Buy Whiskey!" ],
428 [ 4, "Buy Merch!" ],
429 [ 5, "Kill Yourself!" ],
430 ]);
431
432 $schema->populate('Tag', [
433 [ qw/tagid cd tag/ ],
434 [ 1, 1, "Blue" ],
435 [ 2, 2, "Blue" ],
436 [ 3, 3, "Blue" ],
437 [ 4, 5, "Blue" ],
438 [ 5, 2, "Cheesy" ],
439 [ 6, 4, "Cheesy" ],
440 [ 7, 5, "Cheesy" ],
441 [ 8, 2, "Shiny" ],
442 [ 9, 4, "Shiny" ],
443 ]);
444
445 $schema->populate('TwoKeys', [
446 [ qw/artist cd/ ],
447 [ 1, 1 ],
448 [ 1, 2 ],
449 [ 2, 2 ],
450 ]);
451
452 $schema->populate('FourKeys', [
3bd6e3e0 453 [ qw/foo bar hello goodbye sensors/ ],
454 [ 1, 2, 3, 4, 'online' ],
455 [ 5, 4, 3, 6, 'offline' ],
17e7d7f0 456 ]);
457
458 $schema->populate('OneKey', [
459 [ qw/id artist cd/ ],
460 [ 1, 1, 1 ],
461 [ 2, 1, 2 ],
462 [ 3, 2, 2 ],
463 ]);
464
465 $schema->populate('SelfRef', [
466 [ qw/id name/ ],
467 [ 1, 'First' ],
468 [ 2, 'Second' ],
469 ]);
470
471 $schema->populate('SelfRefAlias', [
472 [ qw/self_ref alias/ ],
473 [ 1, 2 ]
474 ]);
475
476 $schema->populate('ArtistUndirectedMap', [
477 [ qw/id1 id2/ ],
478 [ 1, 2 ]
479 ]);
480
481 $schema->populate('Producer', [
482 [ qw/producerid name/ ],
483 [ 1, 'Matt S Trout' ],
484 [ 2, 'Bob The Builder' ],
485 [ 3, 'Fred The Phenotype' ],
486 ]);
487
488 $schema->populate('CD_to_Producer', [
489 [ qw/cd producer/ ],
490 [ 1, 1 ],
491 [ 1, 2 ],
492 [ 1, 3 ],
493 ]);
8273e845 494
8871d4ad 495 $schema->populate('TreeLike', [
61177e44 496 [ qw/id parent name/ ],
972015a7 497 [ 1, undef, 'root' ],
8871d4ad 498 [ 2, 1, 'foo' ],
499 [ 3, 2, 'bar' ],
500 [ 6, 2, 'blop' ],
501 [ 4, 3, 'baz' ],
502 [ 5, 4, 'quux' ],
503 [ 7, 3, 'fong' ],
504 ]);
4b8dcc58 505
17e7d7f0 506 $schema->populate('Track', [
507 [ qw/trackid cd position title/ ],
508 [ 4, 2, 1, "Stung with Success"],
509 [ 5, 2, 2, "Stripy"],
510 [ 6, 2, 3, "Sticky Honey"],
511 [ 7, 3, 1, "Yowlin"],
512 [ 8, 3, 2, "Howlin"],
513 [ 9, 3, 3, "Fowlin"],
514 [ 10, 4, 1, "Boring Name"],
515 [ 11, 4, 2, "Boring Song"],
516 [ 12, 4, 3, "No More Ideas"],
517 [ 13, 5, 1, "Sad"],
518 [ 14, 5, 2, "Under The Weather"],
519 [ 15, 5, 3, "Suicidal"],
520 [ 16, 1, 1, "The Bees Knees"],
521 [ 17, 1, 2, "Apiary"],
522 [ 18, 1, 3, "Beehind You"],
523 ]);
4b8dcc58 524
ae515736 525 $schema->populate('Event', [
ff8a6e3b 526 [ qw/id starts_at created_on varchar_date varchar_datetime skip_inflation/ ],
527 [ 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 528 ]);
529
17e7d7f0 530 $schema->populate('Link', [
54e0bd06 531 [ qw/id url title/ ],
532 [ 1, '', 'aaa' ]
17e7d7f0 533 ]);
e673f011 534
17e7d7f0 535 $schema->populate('Bookmark', [
536 [ qw/id link/ ],
537 [ 1, 1 ]
538 ]);
78060df8 539
540 $schema->populate('Collection', [
541 [ qw/collectionid name/ ],
542 [ 1, "Tools" ],
543 [ 2, "Body Parts" ],
544 ]);
8273e845 545
78060df8 546 $schema->populate('TypedObject', [
547 [ qw/objectid type value/ ],
548 [ 1, "pointy", "Awl" ],
549 [ 2, "round", "Bearing" ],
550 [ 3, "pointy", "Knife" ],
551 [ 4, "pointy", "Tooth" ],
552 [ 5, "round", "Head" ],
553 ]);
89cf6a70 554 $schema->populate('CollectionObject', [
555 [ qw/collection object/ ],
556 [ 1, 1 ],
557 [ 1, 2 ],
558 [ 1, 3 ],
559 [ 2, 4 ],
560 [ 2, 5 ],
561 ]);
78060df8 562
563 $schema->populate('Owners', [
bed3a173 564 [ qw/id name/ ],
78060df8 565 [ 1, "Newton" ],
566 [ 2, "Waltham" ],
567 ]);
568
569 $schema->populate('BooksInLibrary', [
cda5e082 570 [ qw/id owner title source price/ ],
571 [ 1, 1, "Programming Perl", "Library", 23 ],
572 [ 2, 1, "Dynamical Systems", "Library", 37 ],
573 [ 3, 2, "Best Recipe Cookbook", "Library", 65 ],
78060df8 574 ]);
1c339d71 575}
4b8dcc58 576
510ca912 5771;