Overhaul thread handling
[dbsrgits/DBIx-Class.git] / t / 51threadtxn.t
CommitLineData
39fa10f5 1use strict;
2use warnings;
3use Test::More;
4use Config;
5
6# README: If you set the env var to a number greater than 10,
7# we will use that many children
8
9BEGIN {
10 plan skip_all => 'Your perl does not support ithreads'
55087b99 11 if !$Config{useithreads};
39fa10f5 12}
13
14use threads;
8ec03a3a 15use lib qw(t/lib);
39fa10f5 16
17my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
39fa10f5 18plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
19 . ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
20
8ec03a3a 21
22my $num_children = $ENV{DBICTEST_THREAD_STRESS};
23plan skip_all => 'Set $ENV{DBICTEST_THREAD_STRESS} to run this test'
24 unless $num_children;
39fa10f5 25
26if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
27 $num_children = 10;
28}
29
39fa10f5 30use_ok('DBICTest::Schema');
31
ec6415a9 32diag "\n\nIt is ok if you see series of 'Attempt to free unreferenced scalar: ...' warnings during this test\n "
33 if $] < '5.008005';
34
39fa10f5 35my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
36
37my $parent_rs;
38
39eval {
40 my $dbh = $schema->storage->dbh;
41
42 {
43 local $SIG{__WARN__} = sub {};
44 eval { $dbh->do("DROP TABLE cd") };
a1cb5921 45 $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 46 }
47
48 $schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
49 $schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
50
51 $parent_rs = $schema->resultset('CD')->search({ year => 1901 });
52 $parent_rs->next;
53};
54ok(!$@) or diag "Creation eval failed: $@";
55
56my @children;
57while(@children < $num_children) {
58
59 my $newthread = async {
60 my $tid = threads->tid;
61 # my $dbh = $schema->storage->dbh;
62
63 $schema->txn_do(sub {
64 my $child_rs = $schema->resultset('CD')->search({ year => 1901 });
65 my $row = $parent_rs->next;
66 if($row && $row->get_column('artist') =~ /^(?:123|456)$/) {
67 $schema->resultset('CD')->create({ title => "test success $tid", artist => $tid, year => scalar(@children) });
68 }
69 });
70 sleep(3);
71 };
72 die "Thread creation failed: $! $@" if !defined $newthread;
73 push(@children, $newthread);
74}
75
76ok(1, "past spawning");
77
78{
79 $_->join for(@children);
80}
81
82ok(1, "past joining");
83
84while(@children) {
85 my $child = pop(@children);
86 my $tid = $child->tid;
87 my $rs = $schema->resultset('CD')->search({ title => "test success $tid", artist => $tid, year => scalar(@children) });
88 is($rs->next->get_column('artist'), $tid, "Child $tid successful");
89}
90
91ok(1, "Made it to the end");
92
93$schema->storage->dbh->do("DROP TABLE cd");
8ec03a3a 94
95done_testing;