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
|
use Mojo::Base -strict;
use Test::More;
use Mojo::Date;
subtest "RFC 822/1123" => sub {
my $date = Mojo::Date->new('Sun, 06 Nov 1994 08:49:37 GMT');
is $date->epoch, 784111777, 'right epoch value';
$date = Mojo::Date->new('Fri, 13 May 2011 10:00:24 GMT');
is $date->epoch, 1305280824, 'right epoch value';
};
subtest "RFC 850/1036" => sub {
is(Mojo::Date->new('Sunday, 06-Nov-94 08:49:37 GMT')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('Friday, 13-May-11 10:00:24 GMT')->epoch, 1305280824, 'right epoch value');
};
subtest "RFC 3339" => sub {
is(Mojo::Date->new('2014-08-20T20:45:00')->epoch, 1408567500, 'right epoch value');
is(Mojo::Date->new(1408567500)->to_datetime, '2014-08-20T20:45:00Z', 'right format');
is(Mojo::Date->new('2014-08-20T20:45:00.01')->epoch, 1408567500.01, 'right epoch value');
is(Mojo::Date->new('2014-08-20T20:45:00-00:46')->epoch, 1408570260, 'right epoch value');
is(Mojo::Date->new(1408570260)->to_datetime, '2014-08-20T21:31:00Z', 'right format');
is(Mojo::Date->new('2014-08-20t20:45:00-01:46')->epoch, 1408573860, 'right epoch value');
is(Mojo::Date->new('2014-08-20t20:45:00+01:46')->epoch, 1408561140, 'right epoch value');
is(Mojo::Date->new(1408561140)->to_datetime, '2014-08-20T18:59:00Z', 'right format');
is(Mojo::Date->new('1994-11-06T08:49:37Z')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('1994-11-06t08:49:37.33z')->epoch, 784111777.33, 'right epoch value');
is(Mojo::Date->new(784111777.33)->to_datetime, '1994-11-06T08:49:37.33Z', 'right format');
};
subtest "Special cases" => sub {
is(Mojo::Date->new('Sun , 06-Nov-1994 08:49:37 UTC')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('Sunday,06 Nov 94 08:49:37 UTC')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('Sunday 06 Nov 94 08:49:37UTC')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('2014-08-20 20:45:00')->epoch, 1408567500, 'right epoch value');
};
subtest "ANSI C asctime()" => sub {
is(Mojo::Date->new('Sun Nov 6 08:49:37 1994')->epoch, 784111777, 'right epoch value');
is(Mojo::Date->new('Fri May 13 10:00:24 2011')->epoch, 1305280824, 'right epoch value');
};
subtest "Invalid string" => sub {
is(Mojo::Date->new('')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('123 abc')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('abc')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('Xxx, 00 Xxx 0000 00:00:00 XXX')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('Sun, 06 Nov 1994 08:49:37 GMT GARBAGE')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('Sunday, 06-Nov-94 08:49:37 GMT GARBAGE')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('Sun Nov 6 08:49:37 1994 GARBAGE')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('Fri, 75 May 2011 99:99:99 GMT')->epoch, undef, 'no epoch value');
is(Mojo::Date->new('0000-00-00T00:00:00+01:00')->epoch, undef, 'no epoch value');
};
subtest "to_string" => sub {
my $date = Mojo::Date->new(784111777);
is "$date", 'Sun, 06 Nov 1994 08:49:37 GMT', 'right format';
$date = Mojo::Date->new(1305280824);
is $date->to_string, 'Fri, 13 May 2011 10:00:24 GMT', 'right format';
$date = Mojo::Date->new('1305280824.23');
is $date->to_string, 'Fri, 13 May 2011 10:00:24 GMT', 'right format';
};
subtest "Current time roundtrips" => sub {
my $before = time;
ok(Mojo::Date->new(Mojo::Date->new->to_string)->epoch >= $before, 'successful roundtrip');
ok(Mojo::Date->new(Mojo::Date->new->to_datetime)->epoch >= $before, 'successful roundtrip');
};
subtest "Zero time checks" => sub {
my $date = Mojo::Date->new(0);
is $date->epoch, 0, 'right epoch value';
is "$date", 'Thu, 01 Jan 1970 00:00:00 GMT', 'right format';
is(Mojo::Date->new('Thu, 01 Jan 1970 00:00:00 GMT')->epoch, 0, 'right epoch value');
};
subtest "No epoch value" => sub {
my $date = Mojo::Date->new;
ok $date->parse('Mon, 01 Jan 1900 00:00:00'), 'right format';
is $date->epoch, undef, 'no epoch value';
};
done_testing();
|