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