gettimeofday をモックするために、ブラックジャックとフッカーを使用して独自のモジュールを作成できます。Test::MockTime のいくつかの変更により、私は書きました:
#!/usr/bin/perl
package myMockTime;
use strict;
use warnings;
use Exporter qw( import );
use Time::HiRes ();
use Carp;
our @fixed = ();
our $accel = 1;
our $otime = Time::HiRes::gettimeofday;
our @EXPORT_OK = qw(
set_fixed_time_of_day
gettimeofday
restore
throttle
);
sub gettimeofday() {
if ( @fixed ) {
return wantarray ? @fixed : "$fixed[0].$fixed[1]";
}
else {
return $otime + ( ( Time::HiRes::gettimeofday - $otime ) * $accel );
}
}
sub set_fixed_time_of_day {
my ( $time1, $time2 ) = @_;
if ( ! defined $time1 || ! defined $time2 ) {
croak('Incorrect usage');
}
@fixed = ( $time1, $time2 );
}
sub throttle {
my $self = shift @_;
return $accel unless @_;
my $new = shift @_;
$new or croak('Can not set throttle to zero');
$accel = $new;
}
sub restore {
@fixed = ();
}
1;
多くのバグと不完全な機能があると思いますが、この方向で作業してください