We still intermittently grab a "leaked" SQLT quoter, skip explicitly
[dbsrgits/DBIx-Class.git] / t / 52leaks.t
CommitLineData
66917da3 1# work around brain damage in PPerl (yes, it has to be a global)
2$SIG{__WARN__} = sub {
3 warn @_ unless $_[0] =~ /\QUse of "goto" to jump into a construct is deprecated/
4} if ($ENV{DBICTEST_IN_PERSISTENT_ENV});
5
6# the persistent environments run with this flag first to see if
7# we will run at all (e.g. it will fail if $^X doesn't match)
8exit 0 if $ENV{DBICTEST_PERSISTENT_ENV_BAIL_EARLY};
9
f05edfd1 10# Do the override as early as possible so that CORE::bless doesn't get compiled away
11# We will replace $bless_override only if we are in author mode
12my $bless_override;
13BEGIN {
14 $bless_override = sub {
15 CORE::bless( $_[0], (@_ > 1) ? $_[1] : caller() );
16 };
17 *CORE::GLOBAL::bless = sub { goto $bless_override };
18}
19
50261284 20use strict;
21use warnings;
a917fb06 22use Test::More;
d5e5fb4b 23
66917da3 24my $TB = Test::More->builder;
25if ($ENV{DBICTEST_IN_PERSISTENT_ENV}) {
7be5717e 26 # without this explicit close older TBs warn in END after a ->reset
27 if ($TB->VERSION < 1.005) {
28 close ($TB->$_) for (qw/output failure_output todo_output/);
29 }
66917da3 30
7be5717e 31 # if I do not do this, I get happy sigpipes on new TB, no idea why
32 # (the above close-and-forget doesn't work - new TB does *not* reopen
33 # its handles automatically anymore)
34 else {
35 for (qw/failure_output todo_output/) {
36 close $TB->$_;
37 open ($TB->$_, '>&', *STDERR);
38 }
66917da3 39
7be5717e 40 close $TB->output;
41 open ($TB->output, '>&', *STDOUT);
42 }
43
44 # so done_testing can work on every persistent pass
45 $TB->reset;
66917da3 46}
47
d5e5fb4b 48use lib qw(t/lib);
49use DBICTest::RunMode;
bf302897 50use DBICTest::Util::LeakTracer qw(populate_weakregistry assert_empty_weakregistry visit_refs);
6ae62c5c 51use Scalar::Util qw(weaken blessed reftype);
e0b2dc74 52use DBIx::Class;
bf302897 53use DBIx::Class::_Util qw(hrefaddr sigwarn_silencer);
d12d8272 54BEGIN {
d5e5fb4b 55 plan skip_all => "Your perl version $] appears to leak like a sieve - skipping test"
dee99c24 56 if DBIx::Class::_ENV_::PEEPEENESS;
d12d8272 57}
58
a8c2c746 59# this is what holds all weakened refs to be checked for leakage
60my $weak_registry = {};
61
6a43bc0c 62# whether or to invoke IC::DT
63my $has_dt;
64
a8c2c746 65# Skip the heavy-duty leak tracing when just doing an install
66unless (DBICTest::RunMode->is_plain) {
f05edfd1 67
eb7aa960 68 # redefine the bless override so that we can catch each and every object created
a8c2c746 69 no warnings qw/redefine once/;
70 no strict qw/refs/;
71
f05edfd1 72 $bless_override = sub {
73
a8c2c746 74 my $obj = CORE::bless(
75 $_[0], (@_ > 1) ? $_[1] : do {
76 my ($class, $fn, $line) = caller();
77 fail ("bless() of $_[0] into $class without explicit class specification at $fn line $line")
78 if $class =~ /^ (?: DBIx\:\:Class | DBICTest ) /x;
79 $class;
80 }
81 );
82
8d6b1478 83 # unicode is tricky, and now we happen to invoke it early via a
84 # regex in connection()
85 return $obj if (ref $obj) =~ /^utf8/;
86
7be5717e 87 # Test Builder is now making a new object for every pass/fail (que bloat?)
88 # and as such we can't really store any of its objects (since it will
89 # re-populate the registry while checking it, ewwww!)
90 return $obj if (ref $obj) =~ /^TB2::/;
91
5dc4301c 92 # populate immediately to avoid weird side effects
65d35121 93 return populate_weakregistry ($weak_registry, $obj );
a8c2c746 94 };
95
eb7aa960 96 require Try::Tiny;
a8c2c746 97 for my $func (qw/try catch finally/) {
98 my $orig = \&{"Try::Tiny::$func"};
99 *{"Try::Tiny::$func"} = sub (&;@) {
65d35121 100 populate_weakregistry( $weak_registry, $_[0] );
a8c2c746 101 goto $orig;
102 }
103 }
eb7aa960 104
105 # Some modules are known to install singletons on-load
106 # Load them and empty the registry
107
108 # this loads the DT armada
109 $has_dt = DBIx::Class::Optional::Dependencies->req_ok_for('test_dt_sqlite');
110
111 require Errno;
112 require DBI;
113 require DBD::SQLite;
114 require FileHandle;
e6ff3658 115 require Moo;
eb7aa960 116
117 %$weak_registry = ();
a8c2c746 118}
119
120{
66917da3 121 use_ok ('DBICTest');
a917fb06 122
a8c2c746 123 my $schema = DBICTest->init_schema;
124 my $rs = $schema->resultset ('Artist');
125 my $storage = $schema->storage;
a917fb06 126
a8c2c746 127 ok ($storage->connected, 'we are connected');
a917fb06 128
052b8ce2 129 my $row_obj = $rs->search({}, { rows => 1})->next; # so that commits/rollbacks work
a8c2c746 130 ok ($row_obj, 'row from db');
131
052b8ce2 132 # txn_do to invoke more codepaths
a8c2c746 133 my ($mc_row_obj, $pager, $pager_explicit_count) = $schema->txn_do (sub {
134
9345b14c 135 my $artist = $schema->resultset('Artist')->create ({
a8c2c746 136 name => 'foo artist',
137 cds => [{
138 title => 'foo cd',
139 year => 1984,
187ec69a 140 tracks => [
141 { title => 't1' },
142 { title => 't2' },
143 ],
144 genre => { name => 'mauve' },
a8c2c746 145 }],
146 });
147
148 my $pg = $rs->search({}, { rows => 1})->page(2)->pager;
149
150 my $pg_wcount = $rs->page(4)->pager->total_entries (66);
151
152 return ($artist, $pg, $pg_wcount);
153 });
154
9345b14c 155 # more codepaths - error handling in txn_do
156 {
157 eval { $schema->txn_do ( sub {
158 $storage->_dbh->begin_work;
159 fail ('how did we get so far?!');
160 } ) };
161
162 eval { $schema->txn_do ( sub {
163 $schema->txn_do ( sub {
164 die "It's called EXCEPTION";
165 fail ('how did we get so far?!');
166 } );
167 fail ('how did we get so far?!');
168 } ) };
169 like( $@, qr/It\'s called EXCEPTION/, 'Exception correctly propagated in nested txn_do' );
170 }
171
172 # dbh_do codepath
187ec69a 173 my ($rs_bind_circref, $cond_rowobj) = $schema->storage->dbh_do ( sub {
174 my $row = $_[0]->schema->resultset('Artist')->new({});
175 my $rs = $_[0]->schema->resultset('Artist')->search({
176 name => $row, # this is deliberately bogus, see FIXME below!
177 });
178 return ($rs, $row);
179 });
180
a8c2c746 181 is ($pager->next_page, 3, 'There is one more page available');
182
183 # based on 66 per 10 pages
184 is ($pager_explicit_count->last_page, 7, 'Correct last page');
551e711a 185
052b8ce2 186 # do some population (invokes some extra codepaths)
187 # also exercise the guard code and the manual txn control
188 {
189 my $guard = $schema->txn_scope_guard;
190 # populate with bindvars
191 $rs->populate([{ name => 'James Bound' }]);
192 $guard->commit;
193
194 $schema->txn_begin;
195 # populate mixed
196 $rs->populate([{ name => 'James Rebound', rank => \ '11' }]);
197 $schema->txn_commit;
198
199 $schema->txn_begin;
200 # and without bindvars
201 $rs->populate([{ name => \ '"James Unbound"' }]);
202 $schema->txn_rollback;
203 }
204
0a03206a 205 # prefetching
206 my $cds_rs = $schema->resultset('CD');
207 my $cds_with_artist = $cds_rs->search({}, { prefetch => 'artist' });
208 my $cds_with_tracks = $cds_rs->search({}, { prefetch => 'tracks' });
209 my $cds_with_stuff = $cds_rs->search({}, { prefetch => [ 'genre', { artist => { cds => { tracks => 'cd_single' } } } ] });
210
211 # implicit pref
212 my $cds_with_impl_artist = $cds_rs->search({}, { columns => [qw/me.title artist.name/], join => 'artist' });
213
214 # get_column
215 my $getcol_rs = $cds_rs->get_column('me.cdid');
216 my $pref_getcol_rs = $cds_with_stuff->get_column('me.cdid');
217
a8c2c746 218 my $base_collection = {
a8c2c746 219 resultset => $rs,
307ab4c5 220
0a03206a 221 pref_precursor => $cds_rs,
222
223 pref_rs_single => $cds_with_artist,
224 pref_rs_multi => $cds_with_tracks,
225 pref_rs_nested => $cds_with_stuff,
226
227 pref_rs_implicit => $cds_with_impl_artist,
228
229 pref_row_single => $cds_with_artist->next,
230 pref_row_multi => $cds_with_tracks->next,
231 pref_row_nested => $cds_with_stuff->next,
232
233 # even though this does not leak Storable croaks on it :(((
234 #pref_row_implicit => $cds_with_impl_artist->next,
235
236 get_column_rs_plain => $getcol_rs,
237 get_column_rs_pref => $pref_getcol_rs,
238
37aafa2e 239 # twice so that we make sure only one H::M object spawned
b35500f1 240 chained_resultset => $rs->search_rs ({}, { '+columns' => { foo => 'artistid' } } ),
241 chained_resultset2 => $rs->search_rs ({}, { '+columns' => { bar => 'artistid' } } ),
37aafa2e 242
a8c2c746 243 row_object => $row_obj,
551e711a 244
187ec69a 245 mc_row_object => $mc_row_obj,
246
a8c2c746 247 result_source => $rs->result_source,
551e711a 248
4376a157 249 result_source_handle => $rs->result_source->handle,
250
a8c2c746 251 pager_explicit_count => $pager_explicit_count,
187ec69a 252
253 leaky_resultset => $rs_bind_circref,
254 leaky_resultset_cond => $cond_rowobj,
a8c2c746 255 };
574d9b69 256
6ae62c5c 257 # fire all resultsets multiple times, once here, more below
258 # some of these can't find anything (notably leaky_resultset)
259 my @rsets = grep {
260 blessed $_
261 and
262 (
263 $_->isa('DBIx::Class::ResultSet')
264 or
265 $_->isa('DBIx::Class::ResultSetColumn')
266 )
267 } values %$base_collection;
268
269
270 my $fire_resultsets = sub {
271 local $ENV{DBIC_COLUMNS_INCLUDE_FILTER_RELS} = 1;
272 local $SIG{__WARN__} = sigwarn_silencer(
273 qr/Unable to deflate 'filter'-type relationship 'artist'.+related object primary key not retrieved/
274 );
275
276 map
277 { $_, (blessed($_) ? { $_->get_columns } : ()) }
278 map
279 { $_->all }
280 @rsets
281 ;
282 };
b35500f1 283
6ae62c5c 284 push @{$base_collection->{random_results}}, $fire_resultsets->();
b35500f1 285
286 # FIXME - something throws a Storable for a spin if we keep
287 # the results in-collection. The same problem is seen above,
288 # swept under the rug back in 0a03206a, damned lazy ribantainer
289{
290 local $base_collection->{random_results};
218b7c12 291
eb7aa960 292 require Storable;
4376a157 293 %$base_collection = (
294 %$base_collection,
295 refrozen => Storable::dclone( $base_collection ),
296 rerefrozen => Storable::dclone( Storable::dclone( $base_collection ) ),
0a03206a 297 pref_row_implicit => $cds_with_impl_artist->next,
4376a157 298 schema => $schema,
299 storage => $storage,
300 sql_maker => $storage->sql_maker,
301 dbh => $storage->_dbh,
cd122820 302 fresh_pager => $rs->page(5)->pager,
303 pager => $pager,
4376a157 304 );
b35500f1 305}
4376a157 306
21aa86aa 307 # FIXME - ideally this kind of collector ought to be global, but attempts
308 # with an invasive debugger-based tracer did not quite work out... yet
309 # Manually scan the innards of everything we have in the base collection
310 # we assembled so far (skip the DT madness below) *recursively*
311 #
312 # Only do this when we do have the bits to look inside CVs properly,
313 # without it we are liable to pick up object defaults that are locked
314 # in method closures
315 if (DBICTest::Util::LeakTracer::CV_TRACING) {
316 visit_refs(
317 refs => [ $base_collection ],
318 action => sub {
319 populate_weakregistry ($weak_registry, $_[0]);
320 1; # true means "keep descending"
321 },
322 );
6ae62c5c 323
324 # do a heavy-duty fire-and-compare loop on all resultsets
325 # this is expensive - not running on install
326 my $typecounts = {};
9b3fc1fa 327 unless (DBICTest::RunMode->is_plain or $ENV{DBICTEST_IN_PERSISTENT_ENV}) {
6ae62c5c 328
329 # FIXME - ideally we should be able to just populate an alternative
330 # registry, subtract everything from the main one, and arrive at
331 # an "empty" resulting hash
332 # However due to gross inefficiencies in the ::ResultSet code we
333 # end up recalculating a new set of aliasmaps which could have very
334 # well been cached if it wasn't for... anyhow
335 # What we do here for the time being is similar to the lazy approach
336 # of Devel::LeakTrace - we just make sure we do not end up with more
337 # reftypes than when we started. At least we are not blanket-counting
338 # SVs like D::LT does, but going by reftype... sigh...
339
340 for (values %$weak_registry) {
341 if ( my $r = reftype($_->{weakref}) ) {
342 $typecounts->{$r}--;
343 }
344 }
345
346 # For now we can only reuse the same registry, see FIXME above/below
347 #for my $interim_wr ({}, {}) {
348 for my $interim_wr ( ($weak_registry) x 4 ) {
349
350 visit_refs(
351 refs => [ $fire_resultsets->(), @rsets ],
352 action => sub {
353 populate_weakregistry ($interim_wr, $_[0]);
354 1; # true means "keep descending"
355 },
356 );
357
358 # FIXME - this is what *should* be here
359 #
360 ## anything we have seen so far is cool
361 #delete @{$interim_wr}{keys %$weak_registry};
362 #
6ae62c5c 363 ## moment of truth - the rest ought to be gone
364 #assert_empty_weakregistry($interim_wr);
365 }
366
367 for (values %$weak_registry) {
368 if ( my $r = reftype($_->{weakref}) ) {
369 $typecounts->{$r}++;
370 }
371 }
372 }
373
374 for (keys %$typecounts) {
375 fail ("Amount of $_ refs changed by $typecounts->{$_} during resultset mass-execution")
376 if ( abs ($typecounts->{$_}) > 1 ); # there is a pad caught somewhere, the +1/-1 can be ignored
377 }
21aa86aa 378 }
379
6a43bc0c 380 if ($has_dt) {
381 my $rs = $base_collection->{icdt_rs} = $schema->resultset('Event');
382
383 my $now = DateTime->now;
384 for (1..5) {
385 $base_collection->{"icdt_row_$_"} = $rs->create({
386 created_on => DateTime->new(year => 2011, month => 1, day => $_, time_zone => "-0${_}00" ),
387 starts_at => $now->clone->add(days => $_),
388 });
389 }
390
391 # re-search
392 my @dummy = $rs->all;
393 }
394
eb7aa960 395 # dbh's are created in XS space, so pull them separately
396 for ( grep { defined } map { @{$_->{ChildHandles}} } values %{ {DBI->installed_drivers()} } ) {
397 $base_collection->{"DBI handle $_"} = $_;
398 }
399
65d35121 400 populate_weakregistry ($weak_registry, $base_collection->{$_}, "basic $_")
401 for keys %$base_collection;
551e711a 402}
403
50261284 404# check that "phantom-chaining" works - we never lose track of the original $schema
405# and have access to the entire tree without leaking anything
406{
407 my $phantom;
408 for (
39b80a73 409 sub { DBICTest->init_schema( sqlite_use_file => 0 ) },
50261284 410 sub { shift->source('Artist') },
411 sub { shift->resultset },
412 sub { shift->result_source },
413 sub { shift->schema },
414 sub { shift->resultset('Artist') },
415 sub { shift->find_or_create({ name => 'detachable' }) },
416 sub { shift->result_source },
417 sub { shift->schema },
418 sub { shift->clone },
187ec69a 419 sub { shift->resultset('CD') },
420 sub { shift->next },
421 sub { shift->artist },
422 sub { shift->search_related('cds') },
50261284 423 sub { shift->next },
187ec69a 424 sub { shift->search_related('artist') },
50261284 425 sub { shift->result_source },
426 sub { shift->resultset },
427 sub { shift->create({ name => 'detached' }) },
428 sub { shift->update({ name => 'reattached' }) },
429 sub { shift->discard_changes },
430 sub { shift->delete },
431 sub { shift->insert },
432 ) {
65d35121 433 $phantom = populate_weakregistry ( $weak_registry, scalar $_->($phantom) );
50261284 434 }
435
436 ok( $phantom->in_storage, 'Properly deleted/reinserted' );
437 is( $phantom->name, 'reattached', 'Still correct name' );
438}
a8c2c746 439
307ab4c5 440# Naturally we have some exceptions
441my $cleared;
96577657 442for my $addr (keys %$weak_registry) {
443 my $names = join "\n", keys %{$weak_registry->{$addr}{slot_names}};
444
445 if ($names =~ /^Test::Builder/m) {
c8194884 446 # T::B 2.0 has result objects and other fancyness
96577657 447 delete $weak_registry->{$addr};
c8194884 448 }
96577657 449 elsif ($names =~ /^Hash::Merge/m) {
37aafa2e 450 # only clear one object of a specific behavior - more would indicate trouble
96577657 451 delete $weak_registry->{$addr}
452 unless $cleared->{hash_merge_singleton}{$weak_registry->{$addr}{weakref}{behavior}}++;
307ab4c5 453 }
c0fe9332 454 elsif (
75c23ff0 455# # if we can look at closed over pieces - we will register it as a global
456# !DBICTest::Util::LeakTracer::CV_TRACING
457# and
c0fe9332 458 $names =~ /^SQL::Translator::Generator::DDL::SQLite/m
459 ) {
460 # SQLT::Producer::SQLite keeps global generators around for quoted
461 # and non-quoted DDL, allow one for each quoting style
462 delete $weak_registry->{$addr}
463 unless $cleared->{sqlt_ddl_sqlite}->{@{$weak_registry->{$addr}{weakref}->quote_chars}}++;
464 }
307ab4c5 465}
466
187ec69a 467# FIXME !!!
468# There is an actual strong circular reference taking place here, but because
5dc4301c 469# half of it is in XS, so it is a bit harder to track down (it stumps D::FR)
470# (our tracker does not yet do it, but it'd be nice)
471# The problem is:
187ec69a 472#
728f32b5 473# $cond_object --> result_source --> schema --> storage --> $dbh --> {CachedKids}
187ec69a 474# ^ /
475# \-------- bound value on prepared/cached STH <-----------/
476#
728f32b5 477{
5dc4301c 478 my @circreffed;
479
480 for my $r (map
481 { $_->{weakref} }
482 grep
483 { $_->{slot_names}{'basic leaky_resultset_cond'} }
484 values %$weak_registry
485 ) {
486 local $TODO = 'Needs Data::Entangled or somesuch - see RT#82942';
728f32b5 487 ok(! defined $r, 'Self-referential RS conditions no longer leak!')
5dc4301c 488 or push @circreffed, $r;
489 }
490
491 if (@circreffed) {
492 is (scalar @circreffed, 1, 'One resultset expected to leak');
493
494 # this is useless on its own, it is to showcase the circref-diag
495 # and eventually test it when it is operational
496 local $TODO = 'Needs Data::Entangled or somesuch - see RT#82942';
497 while (@circreffed) {
498 weaken (my $r = shift @circreffed);
499
500 populate_weakregistry( (my $mini_registry = {}), $r );
501 assert_empty_weakregistry( $mini_registry );
502
503 $r->result_source(undef);
504 }
728f32b5 505 }
187ec69a 506}
507
65d35121 508assert_empty_weakregistry ($weak_registry);
551e711a 509
66917da3 510# we got so far without a failure - this is a good thing
511# now let's try to rerun this script under a "persistent" environment
512# this is ugly and dirty but we do not yet have a Test::Embedded or
513# similar
514
f3ec358e 515# set up -I
516require Config;
517$ENV{PERL5LIB} = join ($Config::Config{path_sep}, @INC);
518($ENV{PATH}) = $ENV{PATH} =~ /(.+)/;
519
520
7be5717e 521my $persistence_tests = {
522 PPerl => {
523 cmd => [qw/pperl --prefork=1/, __FILE__],
524 },
525 'CGI::SpeedyCGI' => {
526 cmd => [qw/speedy -- -t5/, __FILE__],
527 },
528};
66917da3 529
530# scgi is smart and will auto-reap after -t amount of seconds
7be5717e 531# pperl needs an actual killer :(
532$persistence_tests->{PPerl}{termcmd} = [
533 $persistence_tests->{PPerl}{cmd}[0],
534 '--kill',
535 @{$persistence_tests->{PPerl}{cmd}}[ 1 .. $#{$persistence_tests->{PPerl}{cmd}} ],
536];
66917da3 537
538SKIP: {
539 skip 'Test already in a persistent loop', 1
540 if $ENV{DBICTEST_IN_PERSISTENT_ENV};
541
66917da3 542 skip 'Main test failed - skipping persistent env tests', 1
543 unless $TB->is_passing;
544
66917da3 545 local $ENV{DBICTEST_IN_PERSISTENT_ENV} = 1;
546
7be5717e 547 require IPC::Open2;
548
549 for my $type (keys %$persistence_tests) { SKIP: {
53a5200d 550 unless (eval "require $type") {
551 # Don't terminate what we didn't start
552 delete $persistence_tests->{$type}{termcmd};
553 skip "$type module not found", 1;
554 }
7be5717e 555
556 my @cmd = @{$persistence_tests->{$type}{cmd}};
66917da3 557
558 # since PPerl is racy and sucks - just prime the "server"
559 {
560 local $ENV{DBICTEST_PERSISTENT_ENV_BAIL_EARLY} = 1;
7be5717e 561 system(@cmd);
66917da3 562 sleep 1;
563
7be5717e 564 # see if the thing actually runs, if not - might as well bail now
565 skip "Something is wrong with $type ($!)", 1
566 if system(@cmd);
66917da3 567 }
568
569 for (1,2,3) {
7be5717e 570 note ("Starting run in persistent env ($type pass $_)");
571 IPC::Open2::open2(my $out, undef, @cmd);
572 my @out_lines;
573 while (my $ln = <$out>) {
574 next if $ln =~ /^\s*$/;
575 push @out_lines, " $ln";
576 last if $ln =~ /^\d+\.\.\d+$/; # this is persistence, we need to terminate reading on our end
577 }
578 print $_ for @out_lines;
579 close $out;
580 wait;
581 ok (!$?, "Run in persistent env ($type pass $_): exit $?");
582 ok (scalar @out_lines, "Run in persistent env ($type pass $_): got output");
66917da3 583 }
584
7be5717e 585 ok (! system (@{$persistence_tests->{$type}{termcmd}}), "killed $type server instance")
586 if $persistence_tests->{$type}{termcmd};
587 }}
66917da3 588}
589
551e711a 590done_testing;
66917da3 591
592# just an extra precaution in case we blew away from the SKIP - since there are no
593# PID files to go by (man does pperl really suck :(
594END {
595 unless ($ENV{DBICTEST_IN_PERSISTENT_ENV}) {
7be5717e 596 close $_ for (*STDIN, *STDOUT, *STDERR);
66917da3 597 local $?; # otherwise test will inherit $? of the system()
53a5200d 598 system (@{$persistence_tests->{PPerl}{termcmd}})
599 if $persistence_tests->{PPerl}{termcmd};
66917da3 600 }
601}