Reorganize CDBICompat tests - centralize prereq checks in one place
[dbsrgits/DBIx-Class.git] / t / 51threads.t
CommitLineData
1346e22d 1use Config;
1346e22d 2BEGIN {
9798dffd 3 unless ($Config{useithreads}) {
4 print "1..0 # SKIP your perl does not support ithreads\n";
5 exit 0;
6 }
1346e22d 7}
9798dffd 8use threads;
1346e22d 9
9798dffd 10use strict;
11use warnings;
c76e5262 12
9798dffd 13use Test::More;
8ec03a3a 14use Test::Exception;
9798dffd 15
a4367b26 16plan skip_all => 'DBIC does not actively support threads before perl 5.8.5'
9798dffd 17 if $] < '5.008005';
18
199fbc45 19use DBIx::Class::Optional::Dependencies ();
8ec03a3a 20use lib qw(t/lib);
1346e22d 21
199fbc45 22plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_pg')
23 unless DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_pg');
24
1346e22d 25my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
8ec03a3a 26plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
27 . ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
28
29# README: If you set the env var to a number greater than 10,
30# we will use that many children
be21f2eb 31my $num_children = $ENV{DBICTEST_THREAD_STRESS} || 1;
1346e22d 32if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
33 $num_children = 10;
34}
35
1346e22d 36use_ok('DBICTest::Schema');
ec6415a9 37
6892eb09 38my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
1346e22d 39
40my $parent_rs;
41
ca507a2f 42lives_ok (sub {
1346e22d 43 my $dbh = $schema->storage->dbh;
44
45 {
46 local $SIG{__WARN__} = sub {};
47 eval { $dbh->do("DROP TABLE cd") };
a1cb5921 48 $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 49 }
50
51 $schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
52 $schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
53
54 $parent_rs = $schema->resultset('CD')->search({ year => 1901 });
55 $parent_rs->next;
ca507a2f 56}, 'populate successfull');
1346e22d 57
58my @children;
59while(@children < $num_children) {
60
61 my $newthread = async {
62 my $tid = threads->tid;
1346e22d 63
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 }
9798dffd 69 sleep(1); # tasty crashes without this
1346e22d 70 };
71 die "Thread creation failed: $! $@" if !defined $newthread;
72 push(@children, $newthread);
73}
74
75ok(1, "past spawning");
76
77{
78 $_->join for(@children);
79}
80
81ok(1, "past joining");
82
83while(@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
90ok(1, "Made it to the end");
91
92$schema->storage->dbh->do("DROP TABLE cd");
8ec03a3a 93
94done_testing;