1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
use strict;
use warnings;
use Test::More;
use Test::Exception;
use lib qw(t/lib);
use DBICTest;
use DBIx::Class::Optional::Dependencies ();
my $main_pid = $$;
plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_pg')
unless DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_pg');
my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
. ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
# README: If you set the env var to a number greater than 10,
# we will use that many children
my $num_children = $ENV{DBICTEST_FORK_STRESS} || 1;
if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
$num_children = 10;
}
my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1 });
my $parent_rs;
eval {
my $dbh = $schema->storage->dbh;
{
local $SIG{__WARN__} = sub {};
eval { $dbh->do("DROP TABLE cd") };
$dbh->do("CREATE TABLE cd (cdid serial PRIMARY KEY, artist INTEGER NOT NULL UNIQUE, title VARCHAR(100) NOT NULL UNIQUE, year VARCHAR(100) NOT NULL, genreid INTEGER, single_track INTEGER);");
}
$schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
$schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
$parent_rs = $schema->resultset('CD')->search({ year => 1901 });
is ($parent_rs->count, 2);
};
ok(!$@) or diag "Creation eval failed: $@";
# basic tests
{
ok ($schema->storage->connected(), 'Parent is connected');
is ($parent_rs->next->id, 1, 'Cursor advanced');
my ($parent_in, $child_out);
pipe( $parent_in, $child_out ) or die "Pipe open failed: $!";
my $pid = fork;
if(!defined $pid) {
die "fork failed: $!";
}
if (!$pid) {
close $parent_in;
#simulate a subtest to not confuse the parent TAP emission
my $tb = Test::More->builder;
$tb->reset;
for (qw/output failure_output todo_output/) {
close $tb->$_;
open ($tb->$_, '>&', $child_out);
}
ok(!$schema->storage->connected, "storage->connected() false in child");
for (1,2) {
throws_ok { $parent_rs->next } qr/\QMulti-process access attempted while cursor in progress (position 1)/;
}
$parent_rs->reset;
is($parent_rs->next->id, 1, 'Resetting cursor reprepares it within child environment');
done_testing;
exit 0;
}
close $child_out;
while (my $ln = <$parent_in>) {
print " $ln";
}
waitpid( $pid, 0 );
ok(!$?, 'Child subtests passed');
is ($parent_rs->next->id, 2, 'Cursor still intact in parent');
is ($parent_rs->next, undef, 'Cursor exhausted');
}
$parent_rs->reset;
my @pids;
while(@pids < $num_children) {
my $pid = fork;
if(!defined $pid) {
die "fork failed: $!";
}
elsif($pid) {
push(@pids, $pid);
next;
}
$pid = $$;
my $work = sub {
my $child_rs = $schema->resultset('CD')->search({ year => 1901 });
my $row = $parent_rs->next;
$schema->resultset('CD')->create({ title => "test success $pid", artist => $pid, year => scalar(@pids) })
if($row && $row->get_column('artist') =~ /^(?:123|456)$/);
};
# try with and without transactions
if ((@pids % 3) == 1) {
my $guard = $schema->txn_scope_guard;
$work->();
$guard->commit;
}
elsif ((@pids % 3) == 2) {
$schema->txn_do ($work);
}
else {
$work->();
}
sleep(3);
exit 0;
}
ok(1, "past forking");
for (@pids) {
waitpid($_,0);
ok (! $?, "Child $_ exitted cleanly");
};
ok(1, "past waiting");
while(@pids) {
my $pid = pop(@pids);
my $rs = $schema->resultset('CD')->search({ title => "test success $pid", artist => $pid, year => scalar(@pids) });
is($rs->next->get_column('artist'), $pid, "Child $pid successful");
}
ok(1, "Made it to the end");
done_testing;
END {
$schema->storage->dbh->do("DROP TABLE cd") if ($schema and $main_pid == $$);
undef $schema;
}
|