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
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests.pl";
our $obj1 = new Date::Manip::Date;
$obj1->config("forcedate","now,America/New_York");
our $obj2 = $obj1->new_delta();
sub test {
my(@test)=@_;
my $err = $obj1->parse(shift(@test));
return $$obj1{"err"} if ($err);
$err = $obj2->parse(shift(@test));
return $$obj2{"err"} if ($err);
my $obj3 = $obj1->calc($obj2,@test);
return if (! defined $obj3);
$err = $obj3->err();
return $err if ($err);
my $ret = $obj3->value();
return $ret;
}
my $tests="
'Wed Nov 20 1996 noon' 'business +0:5:0:0' => 1996112108:00:00
'Wed Nov 20 1996 noon' 'business -0:5:0:0' 1 => 1996112108:00:00
'Wed Nov 20 1996 noon' 'business +0:2:0:0' => 1996112014:00:00
'Wed Nov 20 1996 noon' 'business -0:2:0:0' 1 => 1996112014:00:00
'Wed Nov 20 1996 noon' 'business +3:2:0:0' => 1996112514:00:00
'Wed Nov 20 1996 noon' 'business 3:2:0:0' 1 => 1996111510:00:00
'Wed Nov 20 1996 noon' 'business -3:2:0:0' => 1996111510:00:00
'Wed Nov 20 1996 noon' 'business +3:7:0:0' => 1996112610:00:00
'Wed Nov 20 1996 noon' 'business +6:2:0:0' => 1996112814:00:00
'Dec 31 1996 noon' 'business +1:2:0:0' => 1997010114:00:00
'Dec 30 1996 noon' 'business +1:2:0:0' => 1996123114:00:00
'Mar 31 1997 16:59:59' 'business + 1 sec' => 1997040108:00:00
'Wed Nov 20 1996 noon' 'business +0:0:1:0:0:0:0' => 1996112712:00:00
2002120600:00:00 '- business 4 hours' => 2002120513:00:00
2002120600:00:01 '- business 4 hours' => 2002120513:00:00
2002120523:59:59 '- business 4 hours' => 2002120513:00:00
2002120602:00:00 '- business 4 hours' => 2002120513:00:00
2002120609:00:00 '- business 4 hours' => 2002120514:00:00
2002120609:00:10 '- business 4 hours' => 2002120514:00:10
2002120611:00:00 '- business 4 hours' => 2002120516:00:00
2002120612:00:00 '- business 4 hours' => 2002120608:00:00
2002120512:00:00 '+ business 4 hours' => 2002120516:00:00
2002120514:00:00 '+ business 4 hours' => 2002120609:00:00
2002120522:00:00 '+ business 4 hours' => 2002120612:00:00
2002120523:59:59 '+ business 4 hours' => 2002120612:00:00
2002120602:00:00 '+ business 4 hours' => 2002120612:00:00
2002120609:00:00 '+ business 4 hours' => 2002120613:00:00
1998010500:00:00 '0:1:1:0:0:0:0 business' 0 => 1998021208:00:00
1998010500:00:00 '0:1:1:0:0:0:0 business' 1 => 1997112808:00:00
1998010500:00:00 '0:1:1:0:0:0:0 business' 2 => '[calc] Unable to perform calculation'
1998010400:00:00 '0:1:1:0:0:0:0 business' 0 => 1998021108:00:00
1998010400:00:00 '0:1:1:0:0:0:0 business' 1 => 1997112708:00:00
1998010400:00:00 '0:1:1:0:0:0:0 business' 2 => '[calc] Unable to perform calculation'
";
$::ti->tests(func => \&test,
tests => $tests);
$::ti->done_testing();
#Local Variables:
#mode: cperl
#indent-tabs-mode: nil
#cperl-indent-level: 3
#cperl-continued-statement-offset: 2
#cperl-continued-brace-offset: 0
#cperl-brace-offset: 0
#cperl-brace-imaginary-offset: 0
#cperl-label-offset: 0
#End:
|