Switch all Storable serialization calls from freeze() to nfreeze()
[dbsrgits/DBIx-Class.git] / t / 51threads.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6 use Config;
7 BEGIN {
8     plan skip_all => 'Your perl does not support ithreads'
9         if !$Config{useithreads};
10 }
11
12 use threads;
13 use Test::Exception;
14 use lib qw(t/lib);
15
16 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
17 plan 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
22 my $num_children = $ENV{DBICTEST_THREAD_STRESS};
23
24 plan skip_all => 'Set $ENV{DBICTEST_THREAD_STRESS} to run this test'
25     unless $num_children;
26
27 if($num_children !~ /^[0-9]+$/ || $num_children < 10) {
28    $num_children = 10;
29 }
30
31 diag 'It is normal to see a series of "Scalars leaked: ..." warnings during this test';
32
33 use_ok('DBICTest::Schema');
34 my $schema = DBICTest::Schema->connection($dsn, $user, $pass, { AutoCommit => 1, RaiseError => 1, PrintError => 0 });
35
36 my $parent_rs;
37
38 lives_ok (sub {
39     my $dbh = $schema->storage->dbh;
40
41     {
42         local $SIG{__WARN__} = sub {};
43         eval { $dbh->do("DROP TABLE cd") };
44         $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);");
45     }
46
47     $schema->resultset('CD')->create({ title => 'vacation in antarctica', artist => 123, year => 1901 });
48     $schema->resultset('CD')->create({ title => 'vacation in antarctica part 2', artist => 456, year => 1901 });
49
50     $parent_rs = $schema->resultset('CD')->search({ year => 1901 });
51     $parent_rs->next;
52 }, 'populate successfull');
53
54 my @children;
55 while(@children < $num_children) {
56
57     my $newthread = async {
58         my $tid = threads->tid;
59
60         my $child_rs = $schema->resultset('CD')->search({ year => 1901 });
61         my $row = $parent_rs->next;
62         if($row && $row->get_column('artist') =~ /^(?:123|456)$/) {
63             $schema->resultset('CD')->create({ title => "test success $tid", artist => $tid, year => scalar(@children) });
64         }
65         sleep(3);
66     };
67     die "Thread creation failed: $! $@" if !defined $newthread;
68     push(@children, $newthread);
69 }
70
71 ok(1, "past spawning");
72
73 {
74     $_->join for(@children);
75 }
76
77 ok(1, "past joining");
78
79 while(@children) {
80     my $child = pop(@children);
81     my $tid = $child->tid;
82     my $rs = $schema->resultset('CD')->search({ title => "test success $tid", artist => $tid, year => scalar(@children) });
83     is($rs->next->get_column('artist'), $tid, "Child $tid successful");
84 }
85
86 ok(1, "Made it to the end");
87
88 $schema->storage->dbh->do("DROP TABLE cd");
89
90 done_testing;