Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / 51threadtxn.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
10dd5c05 3# README: If you set the env var to a number greater than 5,
39fa10f5 4# we will use that many children
5
9798dffd 6use Config;
39fa10f5 7BEGIN {
9798dffd 8 unless ($Config{useithreads}) {
9 print "1..0 # SKIP your perl does not support ithreads\n";
10 exit 0;
11 }
f15baf68 12
13 if ($INC{'Devel/Cover.pm'}) {
14 print "1..0 # SKIP Devel::Cover does not work with threads yet\n";
15 exit 0;
16 }
39fa10f5 17}
9798dffd 18use threads;
39fa10f5 19
cb551b07 20use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_pg';
21
9798dffd 22use strict;
23use warnings;
c76e5262 24
9798dffd 25use Test::More;
26
a4367b26 27plan skip_all => 'DBIC does not actively support threads before perl 5.8.5'
750a4ad2 28 if "$]" < 5.008005;
c76e5262 29
6892eb09 30use Scalar::Util 'weaken';
10dd5c05 31use Time::HiRes qw(time sleep);
ef25a429 32use List::Util 'max';
c0329273 33
8d6b1478 34use DBICTest;
39fa10f5 35
be21f2eb 36my $num_children = $ENV{DBICTEST_THREAD_STRESS} || 1;
10dd5c05 37if($num_children !~ /^[0-9]+$/ || $num_children < 5) {
38 $num_children = 5;
39fa10f5 39}
40
cb551b07 41my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
39fa10f5 42
6892eb09 43my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
39fa10f5 44
45my $parent_rs;
46
47eval {
48 my $dbh = $schema->storage->dbh;
49
50 {
51 local $SIG{__WARN__} = sub {};
52 eval { $dbh->do("DROP TABLE cd") };
a1cb5921 53 $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);");
39fa10f5 54 }
55
56 $schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
57 $schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
58
59 $parent_rs = $schema->resultset('CD')->search({ year => 1901 });
a2f22854 60 is ($parent_rs->count, 2);
39fa10f5 61};
62ok(!$@) or diag "Creation eval failed: $@";
63
10dd5c05 64# sleep until this spot so everything starts simultaneously
65# add "until turn of second" for prettier display
66my $t = int( time() ) + 4;
67
39fa10f5 68my @children;
69while(@children < $num_children) {
70
71 my $newthread = async {
72 my $tid = threads->tid;
10dd5c05 73
ef25a429 74 sleep( max( 0.1, $t - time ) );
10dd5c05 75
76 # FIXME if we do not stagger the threads, sparks fly due to CXSA
77 sleep ( $tid / 10 ) if "$]" < 5.012;
78
79 note ("Thread $tid starting work at " . time() );
80
6892eb09 81 weaken(my $weak_schema = $schema);
82 weaken(my $weak_parent_rs = $parent_rs);
39fa10f5 83 $schema->txn_do(sub {
6892eb09 84 my $child_rs = $weak_schema->resultset('CD')->search({ year => 1901 });
85 my $row = $weak_parent_rs->next;
39fa10f5 86 if($row && $row->get_column('artist') =~ /^(?:123|456)$/) {
6892eb09 87 $weak_schema->resultset('CD')->create({ title => "test success $tid", artist => $tid, year => scalar(@children) });
39fa10f5 88 }
89 });
10dd5c05 90
91 sleep (0.2); # without this many tasty crashes even on latest perls
39fa10f5 92 };
93 die "Thread creation failed: $! $@" if !defined $newthread;
94 push(@children, $newthread);
95}
96
97ok(1, "past spawning");
98
99{
100 $_->join for(@children);
101}
102
103ok(1, "past joining");
104
105while(@children) {
106 my $child = pop(@children);
107 my $tid = $child->tid;
108 my $rs = $schema->resultset('CD')->search({ title => "test success $tid", artist => $tid, year => scalar(@children) });
109 is($rs->next->get_column('artist'), $tid, "Child $tid successful");
110}
111
112ok(1, "Made it to the end");
113
114$schema->storage->dbh->do("DROP TABLE cd");
8ec03a3a 115
10dd5c05 116# Too many threading bugs on exit, none of which have anything to do with
117# the actual stuff we test
118$ENV{DBICTEST_DIRTY_EXIT} = 1
119 if "$]" < 5.012;
120
8ec03a3a 121done_testing;