5

有一个很棒的 Perl 模块Time::HiRes。我在我的库中大量使用它并想编写一些测试。我找到了 2 个模拟 perltime()函数的 CPAN 模块,但它们都不支持Time::HiRes

我如何模拟Time::HiRes sub gettimeofday()

PS我想为我的模块Time::ETA修复测试。现在我将丑陋的黑客与sleep“模拟”一起使用,有时它可以工作,有时它不能

4

2 回答 2

2

您可以使用二十一点和妓女编写自己的模块来模拟 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;

我认为它有很多错误和不完整的功能,朝这个方向工作

于 2013-07-31T08:14:05.803 回答
1

尝试Test::MockTime::HiRes

Test::MockTime::HiRes是 的Time::HiRes兼容版本Test::MockTime。您可以在模拟时间内等待几毫秒。

如果Test::Mock::Time你想模拟函数,比如clock_nanosleep

于 2021-01-25T13:40:52.567 回答