]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - t/40-threads.t
Test same signature across threads
[perl/modules/Variable-Magic.git] / t / 40-threads.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Config qw/%Config/;
7
8 BEGIN {
9  if (!$Config{useithreads}) {
10   require Test::More;
11   Test::More->import;
12   plan(skip_all => 'This perl wasn\'t built to support threads');
13  }
14 }
15
16 use threads; # Before Test::More
17 use threads::shared;
18
19 use Test::More;
20
21 use Variable::Magic qw/wizard cast dispell getdata VMG_THREADSAFE/;
22
23 if (VMG_THREADSAFE) {
24  plan tests => 2 * (2 * 16 + 1);
25 } else {
26  plan skip_all => 'This Variable::Magic isn\'t thread safe';
27 }
28
29 my $destroyed : shared = 0;
30
31 my $sig = undef;
32
33 sub try {
34  my $tid = threads->tid();
35  my $c   = 0;
36  my $wiz = eval {
37   wizard get  => sub { ++$c },
38          data => sub { $_[1] + $tid },
39          free => sub { ++$destroyed },
40          sig  => $sig;
41  };
42  is($@,     '',    "wizard in thread $tid doesn't croak");
43  isnt($wiz, undef, "wizard in thread $tid is defined");
44  is($c,     0,     "wizard in thread $tid doesn't trigger magic");
45  my $a = 3;
46  my $res = eval { cast $a, $wiz, sub { 5 }->() };
47  is($@, '', "cast in thread $tid doesn't croak");
48  is($c, 0,  "cast in thread $tid doesn't trigger magic");
49  my $b;
50  eval { $b = $a };
51  is($@, '', "get in thread $tid doesn't croak");
52  is($b, 3,  "get in thread $tid returns the right thing");
53  is($c, 1,  "get in thread $tid triggers magic");
54  my $d = eval { getdata $a, $wiz };
55  is($@, '',       "getdata in thread $tid doesn't croak");
56  is($d, 5 + $tid, "getdata in thread $tid returns the right thing");
57  is($c, 1,        "getdata in thread $tid doesn't trigger magic");
58  $res = eval { dispell $a, $wiz };
59  is($@, '', "dispell in thread $tid doesn't croak");
60  is($c, 1,  "dispell in thread $tid doesn't trigger magic");
61  undef $b;
62  eval { $b = $a };
63  is($@, '', "get in thread $tid after dispell doesn't croak");
64  is($b, 3,  "get in thread $tid after dispell returns the right thing");
65  is($c, 1,  "get in thread $tid after dispell doesn't trigger magic");
66  return;
67 }
68
69 my @t = map { threads->create(\&try) } 1 .. 2;
70 $t[0]->join;
71 $t[1]->join;
72
73 is($destroyed, 0, 'destructors didn\'t fired');
74
75 $destroyed = 0;
76 $sig = Variable::Magic::gensig();
77
78 @t = map { threads->create(\&try) } 1 .. 2;
79 $t[0]->join;
80 $t[1]->join;
81
82 is($destroyed, 0, 'destructors didn\'t fired');
83