t/50fork.t made a little more resilient
[dbsrgits/DBIx-Class.git] / t / 50fork.t
1 use Class::C3;
2 use strict;
3 use Test::More;
4 use 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
10 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
11
12 plan skip_all => 'Set $ENV{DBICTEST_FORK_STRESS} to run this test'
13     unless $ENV{DBICTEST_FORK_STRESS};
14
15 plan 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
18 plan tests => 15;
19
20 use lib qw(t/lib);
21
22 use_ok('DBICTest::Schema');
23
24 DBICTest::Schema->compose_connection('PgTest' => $dsn, $user, $pass, { AutoCommit => 1 });
25
26 my ($first_rs, $joe_record);
27
28 eval {
29     my $dbh = PgTest->schema->storage->dbh;
30
31     eval {
32         $dbh->do("DROP TABLE cd");
33         $dbh->do("CREATE TABLE cd (cdid serial PRIMARY KEY, artist INTEGER NOT NULL UNIQUE, title VARCHAR(255) NOT NULL UNIQUE, year VARCHAR(255));");
34     };
35
36     PgTest->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
37     PgTest->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
38
39     $first_rs = PgTest->resultset('CD')->search({ year => 1901 });
40     $joe_record = $first_rs->next;
41 };
42 ok(!$@) or diag "Creation eval failed: $@";
43
44 my $num_children = 10;
45 my @pids;
46 while(@pids < $num_children) {
47
48     my $pid = fork;
49     if(!defined $pid) {
50         die "fork failed: $!";
51     }
52     elsif($pid) {
53         push(@pids, $pid);
54         next;
55     }
56
57     $pid = $$;
58     my ($forked_rs, $joe_forked);
59
60     $forked_rs = PgTest->resultset('CD')->search({ year => 1901 });
61     $joe_forked = $first_rs->next;
62     if($joe_forked && $joe_forked->get_column('artist') =~ /^(?:123|456)$/) {
63         PgTest->resultset('CD')->create({ title => "test success $pid", artist => $pid, year => scalar(@pids) });
64     }
65     sleep(3);
66     exit;
67 }
68
69 ok(1, "past forking");
70
71 waitpid($_,0) for(@pids);
72
73 ok(1, "past waiting");
74
75 while(@pids) {
76     my $pid = pop(@pids);
77     my $rs = PgTest->resultset('CD')->search({ title => "test success $pid", artist => $pid, year => scalar(@pids) });
78     is($rs->next->get_column('artist'), $pid, "Child $pid successful");
79 }
80
81 ok(1, "Made it to the end");
82
83 PgTest->schema->storage->dbh->do("DROP TABLE cd");