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
|
#!/perl -I..
# Test examples in the docs, so we know we're not misleading anyone.
# XS TEST: Only need to test the %time and time_format bits.
use strict;
use Test::More tests => 18;
BEGIN { use_ok 'Time::Format', qw(:all) }
my $tl_notok;
BEGIN {$tl_notok = eval ('use Time::Local; 1')? 0 : 1}
# Were all variables imported? (1)
is ref tied %time, 'Time::Format' => '%time imported';
# Get day/month names in current locale
my ($Tuesday, $December, $Thursday, $Thu, $June, $Jun);
unless (eval
{
require I18N::Langinfo;
I18N::Langinfo->import(qw(langinfo DAY_3 MON_12 DAY_5 ABDAY_5 MON_6 ABMON_6));
($Tuesday, $December, $Thursday, $Thu, $June, $Jun) = map langinfo($_), (DAY_3(), MON_12(), DAY_5(), ABDAY_5(), MON_6(), ABMON_6());
1;
})
{
($Tuesday, $December, $Thursday, $Thu, $June, $Jun) = qw(Tuesday December Thursday Thu June Jun);
}
my $t;
unless ($tl_notok)
{
$t = timelocal(9, 58, 13, 5, 5, 103); # June 5, 2003 at 1:58:09 pm
$t .= '.987654321';
}
SKIP:
{
skip 'Time::Local not available', 16 if $tl_notok;
skip 'XS version not available', 16 if !defined $Time::Format_XS::VERSION;
# Synopsis tests (5)
is "Today is $time{'yyyy/mm/dd',$t}", 'Today is 2003/06/05' => 'Today';
is "Yesterday was $time{'yyyy/mm/dd', $t-24*60*60}", 'Yesterday was 2003/06/04' => 'Yesterday';
is "The time is $time{'hh:mm:ss',$t}", 'The time is 13:58:09' => 'time';
is "Another time is $time{'H:mm am', $t}", 'Another time is 1:58 pm' => 'Another time';
is "Timestamp: $time{'yyyymmdd.hhmmss.mmm',$t}", 'Timestamp: 20030605.135809.987' => 'Timestamp';
# Examples section (11)
is $time{'Weekday Month d, yyyy',$t}, "$Thursday $June 5, 2003" => 'Example 1';
is $time{'Day Mon d, yyyy',$t}, "$Thu $Jun 5, 2003" => 'Example 2';
is $time{'dd/mm/yyyy',$t}, "05/06/2003" => 'Example 3';
is $time{'yymmdd',$t}, "030605" => 'Example 4';
is $time{'dth of Month',$t}, "5th of $June" => 'Example 5';
is $time{'H:mm:ss am',$t}, "1:58:09 pm" => 'Example 6';
is $time{'hh:mm:ss.uuuuuu',$t}, "13:58:09.987654" => 'Example 7';
is $time{'yyyy/mm{on}/dd hh:mm{in}:ss.mmm',$t}, '2003/06/05 13:58:09.987' => 'Example 8';
is $time{'yyyy/mm/dd hh:mm:ss.mmm',$t}, '2003/06/05 13:58:09.987' => 'Example 9';
is $time{"It's H:mm.",$t}, "It'9 1:58." => 'Example 10';
is $time{"It'\\s H:mm.",$t}, "It's 1:58." => 'Example 11';
}
|