line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test2::Plugin::SRand; |
2
|
156
|
|
|
156
|
|
1202
|
use strict; |
|
156
|
|
|
|
|
409
|
|
|
156
|
|
|
|
|
6423
|
|
3
|
156
|
|
|
156
|
|
814
|
use warnings; |
|
156
|
|
|
|
|
5758
|
|
|
156
|
|
|
|
|
8589
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '0.000155'; |
6
|
|
|
|
|
|
|
|
7
|
156
|
|
|
156
|
|
962
|
use Carp qw/carp/; |
|
156
|
|
|
|
|
2172
|
|
|
156
|
|
|
|
|
14893
|
|
8
|
|
|
|
|
|
|
|
9
|
156
|
|
|
|
|
72014
|
use Test2::API qw{ |
10
|
|
|
|
|
|
|
context |
11
|
|
|
|
|
|
|
test2_add_callback_post_load |
12
|
|
|
|
|
|
|
test2_add_callback_exit |
13
|
|
|
|
|
|
|
test2_stack |
14
|
156
|
|
|
156
|
|
105493
|
}; |
|
156
|
|
|
|
|
11361817
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
my $ADDED_HOOK = 0; |
17
|
|
|
|
|
|
|
my $SEED; |
18
|
|
|
|
|
|
|
my $FROM; |
19
|
|
|
|
|
|
|
|
20
|
8
|
|
|
8
|
0
|
55
|
sub seed { $SEED } |
21
|
5
|
|
|
5
|
0
|
26
|
sub from { $FROM } |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub import { |
24
|
162
|
|
|
162
|
|
8191
|
my $class = shift; |
25
|
|
|
|
|
|
|
|
26
|
162
|
100
|
|
|
|
1543
|
carp "SRand loaded multiple times, re-seeding rand" |
27
|
|
|
|
|
|
|
if defined $SEED; |
28
|
|
|
|
|
|
|
|
29
|
162
|
100
|
66
|
|
|
1664
|
if (@_ == 1) { |
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
30
|
2
|
|
|
|
|
6
|
($SEED) = @_; |
31
|
2
|
|
|
|
|
4
|
$FROM = 'import arg'; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
elsif (@_ == 2 and $_[0] eq 'seed') { |
34
|
1
|
|
|
|
|
3
|
$SEED = $_[1]; |
35
|
1
|
|
|
|
|
2
|
$FROM = 'import arg'; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
elsif(exists $ENV{T2_RAND_SEED}) { |
38
|
1
|
|
|
|
|
12
|
$SEED = $ENV{T2_RAND_SEED}; |
39
|
1
|
|
|
|
|
3
|
$FROM = 'environment variable'; |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
else { |
42
|
158
|
|
|
|
|
9572
|
my @ltime = localtime; |
43
|
|
|
|
|
|
|
# Yes, this would be an awful seed if you actually wanted randomness. |
44
|
|
|
|
|
|
|
# The idea here is that we want "random" behavior to be predictable |
45
|
|
|
|
|
|
|
# within a given day. This allows you to reproduce failures that may or |
46
|
|
|
|
|
|
|
# may not happen due to randomness. |
47
|
158
|
|
|
|
|
1895
|
$SEED = sprintf('%04d%02d%02d', 1900 + $ltime[5], 1 + $ltime[4], $ltime[3]); |
48
|
158
|
|
|
|
|
708
|
$FROM = 'local date'; |
49
|
|
|
|
|
|
|
} |
50
|
|
|
|
|
|
|
|
51
|
162
|
100
|
|
|
|
714
|
$SEED = 0 unless $SEED; |
52
|
162
|
|
|
|
|
639
|
srand($SEED); |
53
|
|
|
|
|
|
|
|
54
|
162
|
100
|
66
|
|
|
2293
|
if ($ENV{HARNESS_IS_VERBOSE} || !$ENV{HARNESS_ACTIVE}) { |
|
|
100
|
|
|
|
|
|
55
|
|
|
|
|
|
|
# If the harness is verbose then just display the message for all to |
56
|
|
|
|
|
|
|
# see. It is nice info and they already asked for noisy output. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
test2_add_callback_post_load(sub { |
59
|
4
|
|
|
4
|
|
109
|
test2_stack()->top; # Ensure we have at least 1 hub. |
60
|
4
|
|
|
|
|
84
|
my ($hub) = test2_stack()->all; |
61
|
4
|
|
|
|
|
56
|
$hub->send( |
62
|
|
|
|
|
|
|
Test2::Event::Note->new( |
63
|
|
|
|
|
|
|
trace => Test2::Util::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__, 'SRAND']), |
64
|
|
|
|
|
|
|
message => "Seeded srand with seed '$SEED' from $FROM.", |
65
|
|
|
|
|
|
|
) |
66
|
|
|
|
|
|
|
); |
67
|
4
|
|
|
|
|
28
|
}); |
68
|
|
|
|
|
|
|
} |
69
|
|
|
|
|
|
|
elsif (!$ADDED_HOOK++) { |
70
|
|
|
|
|
|
|
# The seed can be important for debugging, so if anything is wrong we |
71
|
|
|
|
|
|
|
# should output the seed message as a diagnostics message. This must be |
72
|
|
|
|
|
|
|
# done at the very end, even later than a hub hook. |
73
|
|
|
|
|
|
|
test2_add_callback_exit( |
74
|
|
|
|
|
|
|
sub { |
75
|
103
|
|
|
103
|
|
1890
|
my ($ctx, $real, $new) = @_; |
76
|
|
|
|
|
|
|
|
77
|
103
|
50
|
33
|
|
|
1922
|
$ctx->diag("Seeded srand with seed '$SEED' from $FROM.") |
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
78
|
|
|
|
|
|
|
if $real |
79
|
|
|
|
|
|
|
|| ($new && $$new) |
80
|
|
|
|
|
|
|
|| !$ctx->hub->is_passing; |
81
|
|
|
|
|
|
|
} |
82
|
156
|
|
|
|
|
2163
|
); |
83
|
|
|
|
|
|
|
} |
84
|
|
|
|
|
|
|
} |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
1; |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
__END__ |