Commit | Line | Data |
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) |
8 | exit 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 |
12 | my $bless_override; |
13 | BEGIN { |
14 | $bless_override = sub { |
15 | CORE::bless( $_[0], (@_ > 1) ? $_[1] : caller() ); |
16 | }; |
17 | *CORE::GLOBAL::bless = sub { goto $bless_override }; |
18 | } |
19 | |
50261284 |
20 | use strict; |
21 | use warnings; |
a917fb06 |
22 | use Test::More; |
d5e5fb4b |
23 | |
66917da3 |
24 | my $TB = Test::More->builder; |
25 | if ($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 |
48 | use lib qw(t/lib); |
49 | use DBICTest::RunMode; |
bf302897 |
50 | use DBICTest::Util::LeakTracer qw(populate_weakregistry assert_empty_weakregistry visit_refs); |
6ae62c5c |
51 | use Scalar::Util qw(weaken blessed reftype); |
e0b2dc74 |
52 | use DBIx::Class; |
bf302897 |
53 | use DBIx::Class::_Util qw(hrefaddr sigwarn_silencer); |
d12d8272 |
54 | BEGIN { |
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 |
60 | my $weak_registry = {}; |
61 | |
6a43bc0c |
62 | # whether or to invoke IC::DT |
63 | my $has_dt; |
64 | |
a8c2c746 |
65 | # Skip the heavy-duty leak tracing when just doing an install |
66 | unless (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 = {}; |
014846ee |
327 | if ( |
328 | ! DBICTest::RunMode->is_plain |
329 | and |
330 | ! $ENV{DBICTEST_IN_PERSISTENT_ENV} |
331 | and |
332 | # FIXME - investigate wtf is going on with 5.18 |
333 | ! ( $] > 5.017 and $ENV{DBIC_TRACE_PROFILE} ) |
334 | ) { |
6ae62c5c |
335 | |
336 | # FIXME - ideally we should be able to just populate an alternative |
337 | # registry, subtract everything from the main one, and arrive at |
338 | # an "empty" resulting hash |
339 | # However due to gross inefficiencies in the ::ResultSet code we |
340 | # end up recalculating a new set of aliasmaps which could have very |
341 | # well been cached if it wasn't for... anyhow |
342 | # What we do here for the time being is similar to the lazy approach |
343 | # of Devel::LeakTrace - we just make sure we do not end up with more |
344 | # reftypes than when we started. At least we are not blanket-counting |
345 | # SVs like D::LT does, but going by reftype... sigh... |
346 | |
347 | for (values %$weak_registry) { |
348 | if ( my $r = reftype($_->{weakref}) ) { |
349 | $typecounts->{$r}--; |
350 | } |
351 | } |
352 | |
353 | # For now we can only reuse the same registry, see FIXME above/below |
354 | #for my $interim_wr ({}, {}) { |
355 | for my $interim_wr ( ($weak_registry) x 4 ) { |
356 | |
357 | visit_refs( |
358 | refs => [ $fire_resultsets->(), @rsets ], |
359 | action => sub { |
360 | populate_weakregistry ($interim_wr, $_[0]); |
361 | 1; # true means "keep descending" |
362 | }, |
363 | ); |
364 | |
365 | # FIXME - this is what *should* be here |
366 | # |
367 | ## anything we have seen so far is cool |
368 | #delete @{$interim_wr}{keys %$weak_registry}; |
369 | # |
6ae62c5c |
370 | ## moment of truth - the rest ought to be gone |
371 | #assert_empty_weakregistry($interim_wr); |
372 | } |
373 | |
374 | for (values %$weak_registry) { |
375 | if ( my $r = reftype($_->{weakref}) ) { |
376 | $typecounts->{$r}++; |
377 | } |
378 | } |
379 | } |
380 | |
381 | for (keys %$typecounts) { |
382 | fail ("Amount of $_ refs changed by $typecounts->{$_} during resultset mass-execution") |
383 | if ( abs ($typecounts->{$_}) > 1 ); # there is a pad caught somewhere, the +1/-1 can be ignored |
384 | } |
21aa86aa |
385 | } |
386 | |
6a43bc0c |
387 | if ($has_dt) { |
388 | my $rs = $base_collection->{icdt_rs} = $schema->resultset('Event'); |
389 | |
390 | my $now = DateTime->now; |
391 | for (1..5) { |
392 | $base_collection->{"icdt_row_$_"} = $rs->create({ |
393 | created_on => DateTime->new(year => 2011, month => 1, day => $_, time_zone => "-0${_}00" ), |
394 | starts_at => $now->clone->add(days => $_), |
395 | }); |
396 | } |
397 | |
398 | # re-search |
399 | my @dummy = $rs->all; |
400 | } |
401 | |
eb7aa960 |
402 | # dbh's are created in XS space, so pull them separately |
403 | for ( grep { defined } map { @{$_->{ChildHandles}} } values %{ {DBI->installed_drivers()} } ) { |
404 | $base_collection->{"DBI handle $_"} = $_; |
405 | } |
406 | |
65d35121 |
407 | populate_weakregistry ($weak_registry, $base_collection->{$_}, "basic $_") |
408 | for keys %$base_collection; |
551e711a |
409 | } |
410 | |
50261284 |
411 | # check that "phantom-chaining" works - we never lose track of the original $schema |
412 | # and have access to the entire tree without leaking anything |
413 | { |
414 | my $phantom; |
415 | for ( |
39b80a73 |
416 | sub { DBICTest->init_schema( sqlite_use_file => 0 ) }, |
50261284 |
417 | sub { shift->source('Artist') }, |
418 | sub { shift->resultset }, |
419 | sub { shift->result_source }, |
420 | sub { shift->schema }, |
421 | sub { shift->resultset('Artist') }, |
422 | sub { shift->find_or_create({ name => 'detachable' }) }, |
423 | sub { shift->result_source }, |
424 | sub { shift->schema }, |
425 | sub { shift->clone }, |
187ec69a |
426 | sub { shift->resultset('CD') }, |
427 | sub { shift->next }, |
428 | sub { shift->artist }, |
429 | sub { shift->search_related('cds') }, |
50261284 |
430 | sub { shift->next }, |
187ec69a |
431 | sub { shift->search_related('artist') }, |
50261284 |
432 | sub { shift->result_source }, |
433 | sub { shift->resultset }, |
434 | sub { shift->create({ name => 'detached' }) }, |
435 | sub { shift->update({ name => 'reattached' }) }, |
436 | sub { shift->discard_changes }, |
437 | sub { shift->delete }, |
438 | sub { shift->insert }, |
439 | ) { |
65d35121 |
440 | $phantom = populate_weakregistry ( $weak_registry, scalar $_->($phantom) ); |
50261284 |
441 | } |
442 | |
443 | ok( $phantom->in_storage, 'Properly deleted/reinserted' ); |
444 | is( $phantom->name, 'reattached', 'Still correct name' ); |
445 | } |
a8c2c746 |
446 | |
307ab4c5 |
447 | # Naturally we have some exceptions |
448 | my $cleared; |
96577657 |
449 | for my $addr (keys %$weak_registry) { |
450 | my $names = join "\n", keys %{$weak_registry->{$addr}{slot_names}}; |
451 | |
452 | if ($names =~ /^Test::Builder/m) { |
c8194884 |
453 | # T::B 2.0 has result objects and other fancyness |
96577657 |
454 | delete $weak_registry->{$addr}; |
c8194884 |
455 | } |
96577657 |
456 | elsif ($names =~ /^Hash::Merge/m) { |
37aafa2e |
457 | # only clear one object of a specific behavior - more would indicate trouble |
96577657 |
458 | delete $weak_registry->{$addr} |
459 | unless $cleared->{hash_merge_singleton}{$weak_registry->{$addr}{weakref}{behavior}}++; |
307ab4c5 |
460 | } |
c0fe9332 |
461 | elsif ( |
75c23ff0 |
462 | # # if we can look at closed over pieces - we will register it as a global |
463 | # !DBICTest::Util::LeakTracer::CV_TRACING |
464 | # and |
c0fe9332 |
465 | $names =~ /^SQL::Translator::Generator::DDL::SQLite/m |
466 | ) { |
467 | # SQLT::Producer::SQLite keeps global generators around for quoted |
468 | # and non-quoted DDL, allow one for each quoting style |
469 | delete $weak_registry->{$addr} |
470 | unless $cleared->{sqlt_ddl_sqlite}->{@{$weak_registry->{$addr}{weakref}->quote_chars}}++; |
471 | } |
307ab4c5 |
472 | } |
473 | |
187ec69a |
474 | # FIXME !!! |
475 | # There is an actual strong circular reference taking place here, but because |
5dc4301c |
476 | # half of it is in XS, so it is a bit harder to track down (it stumps D::FR) |
477 | # (our tracker does not yet do it, but it'd be nice) |
478 | # The problem is: |
187ec69a |
479 | # |
728f32b5 |
480 | # $cond_object --> result_source --> schema --> storage --> $dbh --> {CachedKids} |
187ec69a |
481 | # ^ / |
482 | # \-------- bound value on prepared/cached STH <-----------/ |
483 | # |
728f32b5 |
484 | { |
5dc4301c |
485 | my @circreffed; |
486 | |
487 | for my $r (map |
488 | { $_->{weakref} } |
489 | grep |
490 | { $_->{slot_names}{'basic leaky_resultset_cond'} } |
491 | values %$weak_registry |
492 | ) { |
493 | local $TODO = 'Needs Data::Entangled or somesuch - see RT#82942'; |
728f32b5 |
494 | ok(! defined $r, 'Self-referential RS conditions no longer leak!') |
5dc4301c |
495 | or push @circreffed, $r; |
496 | } |
497 | |
498 | if (@circreffed) { |
499 | is (scalar @circreffed, 1, 'One resultset expected to leak'); |
500 | |
501 | # this is useless on its own, it is to showcase the circref-diag |
502 | # and eventually test it when it is operational |
503 | local $TODO = 'Needs Data::Entangled or somesuch - see RT#82942'; |
504 | while (@circreffed) { |
505 | weaken (my $r = shift @circreffed); |
506 | |
507 | populate_weakregistry( (my $mini_registry = {}), $r ); |
508 | assert_empty_weakregistry( $mini_registry ); |
509 | |
510 | $r->result_source(undef); |
511 | } |
728f32b5 |
512 | } |
187ec69a |
513 | } |
514 | |
65d35121 |
515 | assert_empty_weakregistry ($weak_registry); |
551e711a |
516 | |
66917da3 |
517 | # we got so far without a failure - this is a good thing |
518 | # now let's try to rerun this script under a "persistent" environment |
519 | # this is ugly and dirty but we do not yet have a Test::Embedded or |
520 | # similar |
521 | |
f3ec358e |
522 | # set up -I |
523 | require Config; |
524 | $ENV{PERL5LIB} = join ($Config::Config{path_sep}, @INC); |
525 | ($ENV{PATH}) = $ENV{PATH} =~ /(.+)/; |
526 | |
527 | |
7be5717e |
528 | my $persistence_tests = { |
529 | PPerl => { |
530 | cmd => [qw/pperl --prefork=1/, __FILE__], |
531 | }, |
532 | 'CGI::SpeedyCGI' => { |
533 | cmd => [qw/speedy -- -t5/, __FILE__], |
534 | }, |
535 | }; |
66917da3 |
536 | |
537 | # scgi is smart and will auto-reap after -t amount of seconds |
7be5717e |
538 | # pperl needs an actual killer :( |
539 | $persistence_tests->{PPerl}{termcmd} = [ |
540 | $persistence_tests->{PPerl}{cmd}[0], |
541 | '--kill', |
542 | @{$persistence_tests->{PPerl}{cmd}}[ 1 .. $#{$persistence_tests->{PPerl}{cmd}} ], |
543 | ]; |
66917da3 |
544 | |
545 | SKIP: { |
546 | skip 'Test already in a persistent loop', 1 |
547 | if $ENV{DBICTEST_IN_PERSISTENT_ENV}; |
548 | |
66917da3 |
549 | skip 'Main test failed - skipping persistent env tests', 1 |
550 | unless $TB->is_passing; |
551 | |
66917da3 |
552 | local $ENV{DBICTEST_IN_PERSISTENT_ENV} = 1; |
553 | |
7be5717e |
554 | require IPC::Open2; |
555 | |
556 | for my $type (keys %$persistence_tests) { SKIP: { |
53a5200d |
557 | unless (eval "require $type") { |
558 | # Don't terminate what we didn't start |
559 | delete $persistence_tests->{$type}{termcmd}; |
560 | skip "$type module not found", 1; |
561 | } |
7be5717e |
562 | |
563 | my @cmd = @{$persistence_tests->{$type}{cmd}}; |
66917da3 |
564 | |
565 | # since PPerl is racy and sucks - just prime the "server" |
566 | { |
567 | local $ENV{DBICTEST_PERSISTENT_ENV_BAIL_EARLY} = 1; |
7be5717e |
568 | system(@cmd); |
66917da3 |
569 | sleep 1; |
570 | |
7be5717e |
571 | # see if the thing actually runs, if not - might as well bail now |
572 | skip "Something is wrong with $type ($!)", 1 |
573 | if system(@cmd); |
66917da3 |
574 | } |
575 | |
576 | for (1,2,3) { |
7be5717e |
577 | note ("Starting run in persistent env ($type pass $_)"); |
578 | IPC::Open2::open2(my $out, undef, @cmd); |
579 | my @out_lines; |
580 | while (my $ln = <$out>) { |
581 | next if $ln =~ /^\s*$/; |
582 | push @out_lines, " $ln"; |
583 | last if $ln =~ /^\d+\.\.\d+$/; # this is persistence, we need to terminate reading on our end |
584 | } |
585 | print $_ for @out_lines; |
586 | close $out; |
587 | wait; |
588 | ok (!$?, "Run in persistent env ($type pass $_): exit $?"); |
589 | ok (scalar @out_lines, "Run in persistent env ($type pass $_): got output"); |
66917da3 |
590 | } |
591 | |
7be5717e |
592 | ok (! system (@{$persistence_tests->{$type}{termcmd}}), "killed $type server instance") |
593 | if $persistence_tests->{$type}{termcmd}; |
594 | }} |
66917da3 |
595 | } |
596 | |
551e711a |
597 | done_testing; |
66917da3 |
598 | |
599 | # just an extra precaution in case we blew away from the SKIP - since there are no |
600 | # PID files to go by (man does pperl really suck :( |
601 | END { |
602 | unless ($ENV{DBICTEST_IN_PERSISTENT_ENV}) { |
7be5717e |
603 | close $_ for (*STDIN, *STDOUT, *STDERR); |
66917da3 |
604 | local $?; # otherwise test will inherit $? of the system() |
53a5200d |
605 | system (@{$persistence_tests->{PPerl}{termcmd}}) |
606 | if $persistence_tests->{PPerl}{termcmd}; |
66917da3 |
607 | } |
608 | } |