X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F52leaks.t;h=4f75810005188586a381d5d79f29b616376fc0d8;hb=1239d14e2874c2209270d5388fd5055e348cf83f;hp=7ecec4946b8544940ee4f8b378f8fb019bbbdcd2;hpb=226d1c35c31ebc68b3214fe8b33912d06d2c5b2f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/52leaks.t b/t/52leaks.t index 7ecec49..4f75810 100644 --- a/t/52leaks.t +++ b/t/52leaks.t @@ -1,58 +1,236 @@ use strict; use warnings; +# Do the override as early as possible so that CORE::bless doesn't get compiled away +# We will replace $bless_override only if we are in author mode +my $bless_override; +BEGIN { + $bless_override = sub { + CORE::bless( $_[0], (@_ > 1) ? $_[1] : caller() ); + }; + *CORE::GLOBAL::bless = sub { goto $bless_override }; +} + use Test::More; use lib qw(t/lib); +use DBICTest::RunMode; +BEGIN { + plan skip_all => "Your perl version $] appears to leak like a sieve - skipping test" + if DBICTest::RunMode->peepeeness; +} + +use Scalar::Util qw/refaddr reftype weaken/; +use Carp qw/longmess/; +use Try::Tiny; +my $have_test_cycle; BEGIN { require DBIx::Class::Optional::Dependencies; - plan skip_all => 'Test needs: ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_leaks') - unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_leaks') ); + $have_test_cycle = DBIx::Class::Optional::Dependencies->req_ok_for ('test_leaks') + and import Test::Memory::Cycle; } -use DBICTest; -use DBICTest::Schema; -use Scalar::Util 'weaken'; -use namespace::clean; +# this is what holds all weakened refs to be checked for leakage +my $weak_registry = {}; + +# Skip the heavy-duty leak tracing when just doing an install +unless (DBICTest::RunMode->is_plain) { + + # Some modules are known to install singletons on-load + # Load them before we swap out $bless_override + require DBI; + require DBD::SQLite; + require Errno; + require Class::Struct; + require FileHandle; + require Hash::Merge; + + no warnings qw/redefine once/; + no strict qw/refs/; + + # redefine the bless override so that we can catch each and every object created + $bless_override = sub { + + my $obj = CORE::bless( + $_[0], (@_ > 1) ? $_[1] : do { + my ($class, $fn, $line) = caller(); + fail ("bless() of $_[0] into $class without explicit class specification at $fn line $line") + if $class =~ /^ (?: DBIx\:\:Class | DBICTest ) /x; + $class; + } + ); + + my $slot = (sprintf '%s=%s(0x%x)', # so we don't trigger stringification + ref $obj, + reftype $obj, + refaddr $obj, + ); -import Test::Memory::Cycle; + # weaken immediately to avoid weird side effects + $weak_registry->{$slot} = { weakref => $obj, strace => longmess() }; + weaken $weak_registry->{$slot}{weakref}; -my $weak; + return $obj; + }; + + for my $func (qw/try catch finally/) { + my $orig = \&{"Try::Tiny::$func"}; + *{"Try::Tiny::$func"} = sub (&;@) { + + my $slot = sprintf ('CODE(0x%x)', refaddr $_[0]); + + $weak_registry->{$slot} = { weakref => $_[0], strace => longmess() }; + weaken $weak_registry->{$slot}{weakref}; + + goto $orig; + } + } +} { - my $s = $weak->{schema} = DBICTest->init_schema; - ok ($s->storage->connected, 'we are connected'); - memory_cycle_ok($s, 'No cycles in schema'); + require DBICTest; + + my $schema = DBICTest->init_schema; + my $rs = $schema->resultset ('Artist'); + my $storage = $schema->storage; + + ok ($storage->connected, 'we are connected'); + + my $row_obj = $rs->search({}, { rows => 1})->next; # so that commits/rollbacks work + ok ($row_obj, 'row from db'); + + # txn_do to invoke more codepaths + my ($mc_row_obj, $pager, $pager_explicit_count) = $schema->txn_do (sub { + + my $artist = $rs->create ({ + name => 'foo artist', + cds => [{ + title => 'foo cd', + year => 1984, + }], + }); + + my $pg = $rs->search({}, { rows => 1})->page(2)->pager; - my $storage = $weak->{storage} = $s->storage; - memory_cycle_ok($storage, 'No cycles in storage'); + my $pg_wcount = $rs->page(4)->pager->total_entries (66); - my $rs = $weak->{resultset} = $s->resultset ('Artist'); - memory_cycle_ok($rs, 'No cycles in resultset'); + return ($artist, $pg, $pg_wcount); + }); - my $rsrc = $weak->{resultsource} = $rs->result_source; - memory_cycle_ok($rsrc, 'No cycles in resultsource'); + is ($pager->next_page, 3, 'There is one more page available'); - my $row = $weak->{row} = $rs->first; - memory_cycle_ok($row, 'No cycles in row'); + # based on 66 per 10 pages + is ($pager_explicit_count->last_page, 7, 'Correct last page'); - my $sqla = $weak->{sqla} = $s->storage->sql_maker; - memory_cycle_ok($sqla, 'No cycles in SQL maker'); + # do some population (invokes some extra codepaths) + # also exercise the guard code and the manual txn control + { + my $guard = $schema->txn_scope_guard; + # populate with bindvars + $rs->populate([{ name => 'James Bound' }]); + $guard->commit; - my $dbh = $weak->{dbh} = $s->storage->_get_dbh; - memory_cycle_ok($dbh, 'No cycles in DBI handle'); + $schema->txn_begin; + # populate mixed + $rs->populate([{ name => 'James Rebound', rank => \ '11' }]); + $schema->txn_commit; - for (@{$dbh->{ChildHandles}}) { - $weak->{"$_"} = $_ if $_; + $schema->txn_begin; + # and without bindvars + $rs->populate([{ name => \ '"James Unbound"' }]); + $schema->txn_rollback; } - weaken $_ for values %$weak; - memory_cycle_ok($weak, 'No cycles in weak object collection'); + my $base_collection = { + schema => $schema, + storage => $storage, + + resultset => $rs, + + # twice so that we make sure only one H::M object spawned + chained_resultset => $rs->search_rs ({}, { '+columns' => [ 'foo' ] } ), + chained_resultset2 => $rs->search_rs ({}, { '+columns' => [ 'bar' ] } ), + + row_object => $row_obj, + + result_source => $rs->result_source, + + fresh_pager => $rs->page(5)->pager, + pager => $pager, + pager_explicit_count => $pager_explicit_count, + + sql_maker => $storage->sql_maker, + dbh => $storage->_dbh + }; + + memory_cycle_ok ($base_collection, 'No cycles in the object collection') + if $have_test_cycle; + + for (keys %$base_collection) { + $weak_registry->{"basic $_"} = { weakref => $base_collection->{$_} }; + weaken $weak_registry->{"basic $_"}{weakref}; + } + +} + +memory_cycle_ok($weak_registry, 'No cycles in the weakened object collection') + if $have_test_cycle; + +# Naturally we have some exceptions +my $cleared; +for my $slot (keys %$weak_registry) { + if ($slot =~ /^\QTest::Builder/) { + # T::B 2.0 has result objects and other fancyness + delete $weak_registry->{$slot}; + } + elsif ($slot =~ /^\QSQL::Translator/) { + # SQLT is a piece of shit, leaks all over + delete $weak_registry->{$slot}; + } + elsif ($slot =~ /^\QHash::Merge/) { + # only clear one object of a specific behavior - more would indicate trouble + delete $weak_registry->{$slot} + unless $cleared->{hash_merge_singleton}{$weak_registry->{$slot}{weakref}{behavior}}++; + } + elsif ($slot =~ /^__TxnScopeGuard__FIXUP__/) { + die 'The $@ debacle should have been fixed by now!!!' if $] >= 5.013008; + delete $weak_registry->{$slot}; + } } -for (keys %$weak) { - ok (! $weak->{$_}, "No $_ leaks"); + +# FIXME +# For reasons I can not yet fully understand the table() god-method (located in +# ::ResultSourceProxy::Table) attaches an actual source instance to each class +# as virtually *immortal* class-data. +# For now just blow away these instances manually but there got to be a saner way +$_->result_source_instance(undef) for ( + 'DBICTest::BaseResult', + map { DBICTest::Schema->class ($_) } DBICTest::Schema->sources +); + +# FIXME +# same problem goes for the schema - its classdata contains live result source +# objects, which to add insult to the injury are *different* instances from the +# ones we destroyed above +DBICTest::Schema->source_registrations(undef); + +my $tb = Test::More->builder; +for my $slot (keys %$weak_registry) { + + ok (! defined $weak_registry->{$slot}{weakref}, "No leaks of $slot") or do { + my $diag = ''; + + $diag .= Devel::FindRef::track ($weak_registry->{$slot}{weakref}, 20) . "\n" + if ( $ENV{TEST_VERBOSE} && try { require Devel::FindRef }); + + if (my $stack = $weak_registry->{$slot}{strace}) { + $diag .= " Reference first seen$stack"; + } + + diag $diag if $diag; + }; } done_testing;