5

優れた Perl モジュールTime::HiResがあります。ライブラリで頻繁に使用しており、いくつかのテストを作成したいと考えています。perl 関数をモックする 2 つの CPAN モジュールを見つけましtime()たが、どちらも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 に答える