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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
#!/usr/bin/perl -w
use strict;
use Test::More;
plan tests => 17;
use DateTime;
use DateTime::Duration;
use DateTime::Set;
use DateTime::Infinite;
my $res;
my $t0 = new DateTime( year => '1810', month => '05', day => '01' );
my $t1 = new DateTime( year => '1810', month => '08', day => '01' );
my $t2 = new DateTime( year => '1810', month => '11', day => '01' );
{
# diag( "monthly from 1810-08-01 until infinity" );
my $_next_month = sub {
# warn "next of ". $_[0]->datetime;
$_[0]->truncate( to => 'month' );
$_[0]->add( months => 1 );
return $_[0] if $_[0] >= $t1;
return $t1->clone;
};
my $_previous_month = sub {
# warn "previous of ". $_[0]->datetime;
my $dt = $_[0]->clone;
$_[0]->truncate( to => 'month' );
$_[0]->subtract( months => 1 ) if $_[0] == $dt;
return $_[0] if $_[0] >= $t1;
return DateTime::Infinite::Past->new;
};
my $months = DateTime::Set->from_recurrence(
next => $_next_month,
previous => $_previous_month,
# detect_bounded => 1,
);
# contains datetime, semi-bounded set
is( $months->contains( $t0 ), 0, "does not contain datetime" );
is( $months->contains( $t0, $t2 ), 0, "does not contain datetime list" );
is( $months->contains( $t2 ), 1, "contains datetime" );
is( $months->intersects( $t0 ), 0, "does not intersect datetime" );
is( $months->intersects( $t0, $t2 ), 1, "intersects datetime list" );
is( $months->intersects( $t2 ), 1, "intersects datetime" );
$res = $months->min;
$res = $res->ymd if ref($res);
is( $res, '1810-08-01',
"min()" );
$res = $months->max;
is( ref($res), 'DateTime::Infinite::Future',
"max()" );
}
{
# diag( "monthly from infinity until 1810-08-01" );
my $_next_month = sub {
# warn "next of ". $_[0]->datetime;
$_[0]->truncate( to => 'month' );
$_[0]->add( months => 1 );
# warn " got ".$_[0]->datetime."\n" if $_[0] <= $t1;
return $_[0] if $_[0] <= $t1;
# warn " got Future\n";
return DateTime::Infinite::Future->new;
};
my $_previous_month = sub {
# warn "previous of ". $_[0]->datetime;
# warn " got ".$t1->datetime."\n" if $_[0] > $t1;
return $t1->clone if $_[0] > $t1;
my $dt = $_[0]->clone;
$_[0]->truncate( to => 'month' );
$_[0]->subtract( months => 1 ) if $_[0] == $dt;
# warn " got ".$_[0]->datetime."\n";
return $_[0];
};
my $months = DateTime::Set->from_recurrence(
next => $_next_month,
previous => $_previous_month,
# detect_bounded => 1,
);
$res = $months->min;
# $res = $res->ymd if ref($res);
is( ref($res), 'DateTime::Infinite::Past',
"min()" );
$res = $months->max;
$res = $res->ymd if ref($res);
is( $res, '1810-08-01',
"max()" );
is( $months->count, undef, "count" );
}
{
# diag( "monthly from 1810-08-01 until 1810-11-01" );
my $_next_month = sub {
# warn "next of ". $_[0]->datetime;
$_[0]->truncate( to => 'month' );
$_[0]->add( months => 1 );
return $t1->clone if $_[0] < $t1;
return $_[0] if $_[0] <= $t2;
return DateTime::Infinite::Future->new;
};
my $_previous_month = sub {
# warn "previous of ". $_[0]->datetime;
my $dt = $_[0]->clone;
$_[0]->truncate( to => 'month' );
$_[0]->subtract( months => 1 ) if $_[0] == $dt;
return DateTime::Infinite::Past->new if $_[0] < $t1;
return $_[0] if $_[0] <= $t2;
return $t2->clone;
};
my $months = DateTime::Set->from_recurrence(
next => $_next_month,
previous => $_previous_month,
# detect_bounded => 1,
);
$res = $months->min;
$res = $res->ymd if ref($res);
is( $res, '1810-08-01',
"min()" );
$res = $months->max;
$res = $res->ymd if ref($res);
is( $res, '1810-11-01',
"max()" );
is( $months->count, 4, "count" );
}
{
# diag( "lists and recurrences are interchangeable" );
my $set = DateTime::Set->from_datetimes(
dates => [ $t0, $t1, $t2 ]
);
my $months = DateTime::Set->from_recurrence(
next => sub{
my $dt = $set->next( $_[0] );
defined $dt ? $dt : DateTime::Infinite::Future->new;
},
previous => sub{
my $dt = $set->previous( $_[0] );
defined $dt ? $dt : DateTime::Infinite::Past->new;
},
# detect_bounded => 1,
);
$res = $months->min;
$res = $res->ymd if ref($res);
is( $res , '1810-05-01',
"min()" );
$res = $months->max;
$res = $res->ymd if ref($res);
is( $res, '1810-11-01',
"max()" );
is( $months->count, 3, "count" );
}
1;
|