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