dbh->{InactiveDestroy} when reconnecting in child process (prevents auto-disconnectin...
[dbsrgits/DBIx-Class.git] / t / 50fork.t
CommitLineData
474ab91c 1use Class::C3;
2use strict;
3use Test::More;
4use warnings;
5
6# This test passes no matter what in most cases. However, prior to the recent
7# fork-related fixes, it would spew lots of warnings. I have not quite gotten
8# it to where it actually fails in those cases.
9
10my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
11
12plan skip_all => 'Set $ENV{DBICTEST_FORK_STRESS} to run this test'
13 unless $ENV{DBICTEST_FORK_STRESS};
14
15plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
16 . ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
17
18plan tests => 15;
19
20use lib qw(t/lib);
21
22use_ok('DBICTest::Schema');
23
24DBICTest::Schema->compose_connection('PgTest' => $dsn, $user, $pass, { AutoCommit => 1 });
25
26my ($first_rs, $joe_record);
27
28eval {
29 my $dbh = PgTest->schema->storage->dbh;
30
31 $dbh->do("CREATE TABLE cd (cdid serial PRIMARY KEY, artist INTEGER NOT NULL UNIQUE, title VARCHAR(255) NOT NULL UNIQUE, year VARCHAR(255));");
32
33 PgTest->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
34 PgTest->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
35
36 $first_rs = PgTest->resultset('CD')->search({ year => 1901 });
37 $joe_record = $first_rs->next;
38};
39ok(!$@) or diag "Creation eval failed: $@";
40
41my $num_children = 10;
42my @pids;
43while(@pids < $num_children) {
44
45 my $pid = fork;
46 if(!defined $pid) {
47 die "fork failed: $!";
48 }
49 elsif($pid) {
50 push(@pids, $pid);
51 next;
52 }
53
54 $pid = $$;
55 my ($forked_rs, $joe_forked);
56
57 $forked_rs = PgTest->resultset('CD')->search({ year => 1901 });
58 $joe_forked = $first_rs->next;
59 if($joe_forked && $joe_forked->get_column('artist') =~ /^(?:123|456)$/) {
60 PgTest->resultset('CD')->create({ title => "test success $pid", artist => $pid, year => scalar(@pids) });
61 }
62 sleep(3);
63 exit;
64}
65
66ok(1, "past forking");
67
68waitpid($_,0) for(@pids);
69
70ok(1, "past waiting");
71
72while(@pids) {
73 my $pid = pop(@pids);
74 my $rs = PgTest->resultset('CD')->search({ title => "test success $pid", artist => $pid, year => scalar(@pids) });
75 is($rs->next->get_column('artist'), $pid, "Child $pid successful");
76}
77
78ok(1, "Made it to the end");
79
80PgTest->schema->storage->dbh->do("DROP TABLE cd");