Massive rewrite of bind handling, and overall simplification of ::Storage::DBI
[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
c76e5262 12BEGIN {
13 plan skip_all => 'Minimum of perl 5.8.3 required for thread tests (DBD::Pg mandated)'
14 if $] < '5.008003';
15}
16
1346e22d 17use threads;
8ec03a3a 18use Test::Exception;
19use lib qw(t/lib);
1346e22d 20
21my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
8ec03a3a 22plan 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# README: If you set the env var to a number greater than 10,
26# we will use that many children
be21f2eb 27my $num_children = $ENV{DBICTEST_THREAD_STRESS} || 1;
1346e22d 28if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
29 $num_children = 10;
30}
31
1346e22d 32use_ok('DBICTest::Schema');
ec6415a9 33
34diag "\n\nIt is ok if you see series of 'Attempt to free unreferenced scalar: ...' warnings during this test\n "
35 if $] < '5.008005';
36
1346e22d 37my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
38
39my $parent_rs;
40
ca507a2f 41lives_ok (sub {
1346e22d 42 my $dbh = $schema->storage->dbh;
43
44 {
45 local $SIG{__WARN__} = sub {};
46 eval { $dbh->do("DROP TABLE cd") };
a1cb5921 47 $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 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;
ca507a2f 55}, 'populate successfull');
1346e22d 56
57my @children;
58while(@children < $num_children) {
59
60 my $newthread = async {
61 my $tid = threads->tid;
1346e22d 62
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 sleep(3);
69 };
70 die "Thread creation failed: $! $@" if !defined $newthread;
71 push(@children, $newthread);
72}
73
74ok(1, "past spawning");
75
76{
77 $_->join for(@children);
78}
79
80ok(1, "past joining");
81
82while(@children) {
83 my $child = pop(@children);
84 my $tid = $child->tid;
85 my $rs = $schema->resultset('CD')->search({ title => "test success $tid", artist => $tid, year => scalar(@children) });
86 is($rs->next->get_column('artist'), $tid, "Child $tid successful");
87}
88
89ok(1, "Made it to the end");
90
91$schema->storage->dbh->do("DROP TABLE cd");
8ec03a3a 92
93done_testing;