Commit | Line | Data |
1346e22d |
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} || $] < 5.008; |
12 | } |
13 | |
14 | use threads; |
15 | |
16 | my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; |
17 | my $num_children = $ENV{DBICTEST_THREAD_STRESS}; |
18 | |
19 | plan skip_all => 'Set $ENV{DBICTEST_THREAD_STRESS} to run this test' |
20 | unless $num_children; |
21 | |
22 | plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test' |
23 | . ' (note: creates and drops a table named artist!)' unless ($dsn && $user); |
24 | |
25 | diag 'It is normal to see a series of "Scalars leaked: ..." messages during this test'; |
26 | |
27 | if($num_children !~ /^[0-9]+$/ || $num_children < 10) { |
28 | $num_children = 10; |
29 | } |
30 | |
31 | plan tests => $num_children + 5; |
32 | |
33 | use lib qw(t/lib); |
34 | |
35 | use_ok('DBICTest::Schema'); |
36 | |
37 | my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 }); |
38 | |
39 | my $parent_rs; |
40 | |
41 | eval { |
42 | my $dbh = $schema->storage->dbh; |
43 | |
44 | { |
45 | local $SIG{__WARN__} = sub {}; |
46 | eval { $dbh->do("DROP TABLE cd") }; |
47 | $dbh->do("CREATE TABLE cd (cdid serial PRIMARY KEY, artist INTEGER NOT NULL UNIQUE, title VARCHAR(255) NOT NULL UNIQUE, year VARCHAR(255));"); |
48 | } |
49 | |
50 | $schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 }); |
51 | $schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 }); |
52 | |
53 | $parent_rs = $schema->resultset('CD')->search({ year => 1901 }); |
54 | $parent_rs->next; |
55 | }; |
56 | ok(!$@) or diag "Creation eval failed: $@"; |
57 | |
58 | my @children; |
59 | while(@children < $num_children) { |
60 | |
61 | my $newthread = async { |
62 | my $tid = threads->tid; |
63 | my $dbh = $schema->storage->dbh; |
64 | |
65 | my $child_rs = $schema->resultset('CD')->search({ year => 1901 }); |
66 | my $row = $parent_rs->next; |
67 | if($row && $row->get_column('artist') =~ /^(?:123|456)$/) { |
68 | $schema->resultset('CD')->create({ title => "test success $tid", artist => $tid, year => scalar(@children) }); |
69 | } |
70 | sleep(3); |
71 | }; |
72 | die "Thread creation failed: $! $@" if !defined $newthread; |
73 | push(@children, $newthread); |
74 | } |
75 | |
76 | ok(1, "past spawning"); |
77 | |
78 | { |
79 | $_->join for(@children); |
80 | } |
81 | |
82 | ok(1, "past joining"); |
83 | |
84 | while(@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 | |
91 | ok(1, "Made it to the end"); |
92 | |
93 | $schema->storage->dbh->do("DROP TABLE cd"); |