1 # Do the override as early as possible so that CORE::bless doesn't get compiled away
2 # We will replace $bless_override only if we are in author mode
5 $bless_override = sub {
6 CORE::bless( $_[0], (@_ > 1) ? $_[1] : caller() );
8 *CORE::GLOBAL::bless = sub { goto $bless_override };
16 use DBICTest::RunMode;
18 plan skip_all => "Your perl version $] appears to leak like a sieve - skipping test"
19 if DBICTest::RunMode->peepeeness;
22 use Scalar::Util qw/refaddr reftype weaken/;
23 use Carp qw/longmess/;
28 require DBIx::Class::Optional::Dependencies;
29 $have_test_cycle = DBIx::Class::Optional::Dependencies->req_ok_for ('test_leaks')
30 and import Test::Memory::Cycle;
33 # this is what holds all weakened refs to be checked for leakage
34 my $weak_registry = {};
36 # Skip the heavy-duty leak tracing when just doing an install
37 unless (DBICTest::RunMode->is_plain) {
39 # Some modules are known to install singletons on-load
40 # Load them before we swap out $bless_override
44 require Class::Struct;
49 no warnings qw/redefine once/;
52 # redefine the bless override so that we can catch each and every object created
53 $bless_override = sub {
55 my $obj = CORE::bless(
56 $_[0], (@_ > 1) ? $_[1] : do {
57 my ($class, $fn, $line) = caller();
58 fail ("bless() of $_[0] into $class without explicit class specification at $fn line $line")
59 if $class =~ /^ (?: DBIx\:\:Class | DBICTest ) /x;
64 my $slot = (sprintf '%s=%s(0x%x)', # so we don't trigger stringification
70 # weaken immediately to avoid weird side effects
71 $weak_registry->{$slot} = { weakref => $obj, strace => longmess() };
72 weaken $weak_registry->{$slot}{weakref};
77 for my $func (qw/try catch finally/) {
78 my $orig = \&{"Try::Tiny::$func"};
79 *{"Try::Tiny::$func"} = sub (&;@) {
81 my $slot = sprintf ('CODE(0x%x)', refaddr $_[0]);
83 $weak_registry->{$slot} = { weakref => $_[0], strace => longmess() };
84 weaken $weak_registry->{$slot}{weakref};
94 my $schema = DBICTest->init_schema;
95 my $rs = $schema->resultset ('Artist');
96 my $storage = $schema->storage;
98 ok ($storage->connected, 'we are connected');
100 my $row_obj = $rs->search({}, { rows => 1})->next; # so that commits/rollbacks work
101 ok ($row_obj, 'row from db');
103 # txn_do to invoke more codepaths
104 my ($mc_row_obj, $pager, $pager_explicit_count) = $schema->txn_do (sub {
106 my $artist = $rs->create ({
107 name => 'foo artist',
114 my $pg = $rs->search({}, { rows => 1})->page(2)->pager;
116 my $pg_wcount = $rs->page(4)->pager->total_entries (66);
118 return ($artist, $pg, $pg_wcount);
121 is ($pager->next_page, 3, 'There is one more page available');
123 # based on 66 per 10 pages
124 is ($pager_explicit_count->last_page, 7, 'Correct last page');
126 # do some population (invokes some extra codepaths)
127 # also exercise the guard code and the manual txn control
129 my $guard = $schema->txn_scope_guard;
130 # populate with bindvars
131 $rs->populate([{ name => 'James Bound' }]);
136 $rs->populate([{ name => 'James Rebound', rank => \ '11' }]);
140 # and without bindvars
141 $rs->populate([{ name => \ '"James Unbound"' }]);
142 $schema->txn_rollback;
145 my $base_collection = {
148 # twice so that we make sure only one H::M object spawned
149 chained_resultset => $rs->search_rs ({}, { '+columns' => [ 'foo' ] } ),
150 chained_resultset2 => $rs->search_rs ({}, { '+columns' => [ 'bar' ] } ),
152 row_object => $row_obj,
154 result_source => $rs->result_source,
156 result_source_handle => $rs->result_source->handle,
158 fresh_pager => $rs->page(5)->pager,
160 pager_explicit_count => $pager_explicit_count,
164 %$base_collection = (
166 refrozen => Storable::dclone( $base_collection ),
167 rerefrozen => Storable::dclone( Storable::dclone( $base_collection ) ),
170 sql_maker => $storage->sql_maker,
171 dbh => $storage->_dbh,
174 memory_cycle_ok ($base_collection, 'No cycles in the object collection')
177 for (keys %$base_collection) {
178 $weak_registry->{"basic $_"} = { weakref => $base_collection->{$_} };
179 weaken $weak_registry->{"basic $_"}{weakref};
183 # check that "phantom-chaining" works - we never lose track of the original $schema
184 # and have access to the entire tree without leaking anything
188 sub { DBICTest->init_schema },
189 sub { shift->source('Artist') },
190 sub { shift->resultset },
191 sub { shift->result_source },
192 sub { shift->schema },
193 sub { shift->resultset('Artist') },
194 sub { shift->find_or_create({ name => 'detachable' }) },
195 sub { shift->result_source },
196 sub { shift->schema },
197 sub { shift->clone },
198 sub { shift->resultset('Artist') },
200 sub { shift->result_source },
201 sub { shift->resultset },
202 sub { shift->create({ name => 'detached' }) },
203 sub { shift->update({ name => 'reattached' }) },
204 sub { shift->discard_changes },
205 sub { shift->delete },
206 sub { shift->insert },
208 $phantom = $_->($phantom);
210 my $slot = (sprintf 'phantom %s=%s(0x%x)', # so we don't trigger stringification
215 $weak_registry->{$slot} = $phantom;
216 weaken $weak_registry->{$slot};
219 ok( $phantom->in_storage, 'Properly deleted/reinserted' );
220 is( $phantom->name, 'reattached', 'Still correct name' );
223 # Naturally we have some exceptions
225 for my $slot (keys %$weak_registry) {
226 if ($slot =~ /^\QTest::Builder/) {
227 # T::B 2.0 has result objects and other fancyness
228 delete $weak_registry->{$slot};
230 elsif ($slot =~ /^\QSQL::Translator/) {
231 # SQLT is a piece of shit, leaks all over
232 delete $weak_registry->{$slot};
234 elsif ($slot =~ /^\QHash::Merge/) {
235 # only clear one object of a specific behavior - more would indicate trouble
236 delete $weak_registry->{$slot}
237 unless $cleared->{hash_merge_singleton}{$weak_registry->{$slot}{weakref}{behavior}}++;
239 elsif ($slot =~ /^__TxnScopeGuard__FIXUP__/) {
240 delete $weak_registry->{$slot}
241 if $] > 5.013001 and $] < 5.013008;
247 # For reasons I can not yet fully understand the table() god-method (located in
248 # ::ResultSourceProxy::Table) attaches an actual source instance to each class
249 # as virtually *immortal* class-data.
250 # For now just blow away these instances manually but there got to be a saner way
251 $_->result_source_instance(undef) for (
252 'DBICTest::BaseResult',
253 map { DBICTest::Schema->class ($_) } DBICTest::Schema->sources
257 # same problem goes for the schema - its classdata contains live result source
258 # objects, which to add insult to the injury are *different* instances from the
259 # ones we destroyed above
260 DBICTest::Schema->source_registrations(undef);
262 my $tb = Test::More->builder;
263 for my $slot (sort keys %$weak_registry) {
265 ok (! defined $weak_registry->{$slot}{weakref}, "No leaks of $slot") or do {
268 $diag .= Devel::FindRef::track ($weak_registry->{$slot}{weakref}, 20) . "\n"
269 if ( $ENV{TEST_VERBOSE} && try { require Devel::FindRef });
271 if (my $stack = $weak_registry->{$slot}{strace}) {
272 $diag .= " Reference first seen$stack";