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