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