fixed test plan
[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
6adfd462 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 };
474ab91c 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};
42ok(!$@) or diag "Creation eval failed: $@";
43
44my $num_children = 10;
45my @pids;
46while(@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
69ok(1, "past forking");
70
71waitpid($_,0) for(@pids);
72
73ok(1, "past waiting");
74
75while(@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
81ok(1, "Made it to the end");
82
83PgTest->schema->storage->dbh->do("DROP TABLE cd");