File: Runtime.t

package info (click to toggle)
percona-toolkit 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 68,916 kB
  • sloc: perl: 241,287; sql: 22,868; sh: 19,746; javascript: 6,799; makefile: 353; awk: 38; python: 30; sed: 1
file content (187 lines) | stat: -rw-r--r-- 3,419 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/usr/bin/perl

BEGIN {
   die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
      unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
   unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
};

use strict;
use warnings FATAL => 'all';
use English qw(-no_match_vars);
use Test::More tests => 20;

use PerconaTest;
use Runtime;

# #############################################################################
# Test a runtime obj with clock time.
# #############################################################################

my $runtime = new Runtime(
   now     => sub { return time; },
   run_time => 3,
);

is(
   $runtime->time_elapsed(),
   0,
   "No time has elapsed yet"
);

is(
   $runtime->time_left(),
   3,
   "First call to time_left() starts the countdown"
);

sleep 1;
my $t = $runtime->time_left();
ok(
   $t < 3 && $t > 0,
   "Time is running out"
);

ok(
   $runtime->have_time(),
   "Have time"
);

is(
   $runtime->time_elapsed(),
   1,
   "Reports 1s elapsed"
);
   
sleep 2;
$t = $runtime->time_left();
is(
   $t,
   0,
   "Zero time left"
);

ok(
   !$runtime->have_time(),
   "Don't have time"
);

sleep 1;
$t = $runtime->time_left();
ok(
   $t < 0,
   "Runtime has elapsed"
);

ok(
   !$runtime->have_time(),
   "Still don't have time"
);

$runtime->reset();
is(
   $runtime->time_left(),
   3,
   "Reset countdown"
);

# #############################################################################
# Test a runtime obj with clock time running forever.
# #############################################################################

$runtime = new Runtime(
   now     => sub { return time; },
   # run_time => undef,  # forever
);

is(
   $runtime->time_left(),
   undef,
   "Running forever: time_left() is undefined"
);

sleep 2;

is(
   $runtime->time_left(),
   undef,
   "Running forever: time_left() is still undefined"
);

ok(
   $runtime->have_time(),
   "Running forever: Have time"
);

is(
   $runtime->time_elapsed(),
   2,
   "Running forever: time still elapses"
);

# #############################################################################
# Test start/stop with clock time.
# #############################################################################

$runtime = new Runtime(
   now     => sub { return time; },
   run_time => 3,
);

is(
   $runtime->time_left(),
   3,
   "Start/stop: started with 3s left"
);

$runtime->stop();

is(
   $runtime->have_time(),
   0,
   "Start/stop: no time after stop"
);

# #############################################################################
# Test a runtime obj with fake time.
# #############################################################################

my @time = qw(0 3 7 9);
$runtime = new Runtime(
   now     => sub { return shift @time; },
   run_time => 8,
);

is(
   $runtime->time_left(),
   8,
   "Fake time: first call to time_left()"
);

is(
   $runtime->time_left(),
   5,
   "Fake time: second call to time_left() as if 3s passed"
);

is(
   $runtime->time_left(),
   1,
   "Fake time: as if 4s more passed"
);

# #############################################################################
# Done.
# #############################################################################
my $output = '';
{
   local *STDERR;
   open STDERR, '>', \$output;
   $runtime->_d('Complete test coverage');
}
like(
   $output,
   qr/Complete test coverage/,
   '_d() works'
);
exit;