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