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