Fix the pure-perl in_global_destruction() emulation under threads
[dbsrgits/DBIx-Class.git] / t / 51threadtxn.t
CommitLineData
39fa10f5 1# README: If you set the env var to a number greater than 10,
2# we will use that many children
3
9798dffd 4use Config;
39fa10f5 5BEGIN {
9798dffd 6 unless ($Config{useithreads}) {
7 print "1..0 # SKIP your perl does not support ithreads\n";
8 exit 0;
9 }
39fa10f5 10}
9798dffd 11use threads;
39fa10f5 12
9798dffd 13use strict;
14use warnings;
c76e5262 15
9798dffd 16use Test::More;
17
a4367b26 18plan skip_all => 'DBIC does not actively support threads before perl 5.8.5'
9798dffd 19 if $] < '5.008005';
c76e5262 20
199fbc45 21use DBIx::Class::Optional::Dependencies ();
8ec03a3a 22use lib qw(t/lib);
39fa10f5 23
24my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
39fa10f5 25plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
26 . ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
27
49b3a264 28plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_pg')
29 unless DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_pg');
8ec03a3a 30
be21f2eb 31my $num_children = $ENV{DBICTEST_THREAD_STRESS} || 1;
39fa10f5 32if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
33 $num_children = 10;
34}
35
39fa10f5 36use_ok('DBICTest::Schema');
37
38my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
39
40my $parent_rs;
41
42eval {
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);");
39fa10f5 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;
56};
57ok(!$@) or diag "Creation eval failed: $@";
58
59my @children;
60while(@children < $num_children) {
61
62 my $newthread = async {
63 my $tid = threads->tid;
64 # my $dbh = $schema->storage->dbh;
65
66 $schema->txn_do(sub {
67 my $child_rs = $schema->resultset('CD')->search({ year => 1901 });
68 my $row = $parent_rs->next;
69 if($row && $row->get_column('artist') =~ /^(?:123|456)$/) {
70 $schema->resultset('CD')->create({ title => "test success $tid", artist => $tid, year => scalar(@children) });
71 }
72 });
9798dffd 73 sleep(1); # tasty crashes without this
39fa10f5 74 };
75 die "Thread creation failed: $! $@" if !defined $newthread;
76 push(@children, $newthread);
77}
78
79ok(1, "past spawning");
80
81{
82 $_->join for(@children);
83}
84
85ok(1, "past joining");
86
87while(@children) {
88 my $child = pop(@children);
89 my $tid = $child->tid;
90 my $rs = $schema->resultset('CD')->search({ title => "test success $tid", artist => $tid, year => scalar(@children) });
91 is($rs->next->get_column('artist'), $tid, "Child $tid successful");
92}
93
94ok(1, "Made it to the end");
95
96$schema->storage->dbh->do("DROP TABLE cd");
8ec03a3a 97
98done_testing;