Calendar-List

 view release on metacpan or  search on metacpan

t/13timelocal.t  view on Meta::CPAN

#!/usr/bin/perl -w
use strict;

use lib './t';
use Test::More qw|no_plan|;
use TestData;
use Calendar::Functions qw(:all :test);

###########################################################################
# name: 13timelocal.t
# desc: Functionality check with Time::Local
###########################################################################

# switch off DateTime and Date::ICal, if loaded
_caltest(0,0);

foreach my $test (@datetest) {

	# before the epoch, skipping
	next	if(!$on_unix && $test->{tl} == 2);

	# should have real values
	if($test->{tl}) {
		my $date = encode_date(@{$test->{array}});
        ok($date,"date encoded [@{$test->{array}}]");
		my @date = decode_date($date);
		is_deeply(\@date,$test->{array},"date decoded [@{$test->{array}}]");

	# expecting undef values
	} else {
		my $date = encode_date(@{$test->{array}});
		is($date,undef,"date not encoded [@{$test->{array}}]");
		is(decode_date(undef),undef,"date not decoded [@{$test->{array}}]");
	}
}

foreach my $test (@diffs) {
	# outside the epoch range, skipping
	next	if(!$on_unix && $test->{tl} == 2);
	next	if($test->{tl} == 0);

    my ($date1,$date2);
	$date1 = encode_date(@{$test->{from}})  if(@{$test->{from}});
	$date2 = encode_date(@{$test->{to}})    if(@{$test->{to}});

	is(compare_dates($date1,$date2),$test->{compare},
            sprintf ".. [%02d/%02d/%04d] => [%02d/%02d/%04d]",
                $test->{from}[0]||'-1',$test->{from}[1]||'-1',$test->{from}[2]||'-1',
                $test->{to}[0]||'-1',$test->{to}[1]||'-1',$test->{to}[2]||'-1');
}

foreach my $test (@monthlists) {
	# cant do dates before the epoch
	next	if(!$on_unix && $test->{array}->[1] < 1970);
}


# fail_range
is(fail_range(0),1);
is(fail_range(1899),1);
is(fail_range(1965),0);
is(fail_range(1999),0);
is(fail_range(2000),0);
is(fail_range(2038),1);



( run in 2.917 seconds using v1.01-cache-2.11-cpan-d8267643d1d )