Bug 13601: Add tests to highlight the problems with DateTime::Format::DateParse
[koha.git] / t / DateUtils.t
1 use Modern::Perl;
2 use DateTime;
3 use DateTime::TimeZone;
4
5 use C4::Context;
6 use Test::More tests => 54;
7 use Test::MockModule;
8 use Time::HiRes qw/ gettimeofday /;
9 use t::lib::Mocks;
10
11 BEGIN { use_ok('Koha::DateUtils'); }
12
13 my $tz = C4::Context->tz;
14
15 isa_ok( $tz, 'DateTime::TimeZone', 'Context returns timezone object' );
16
17 my $testdate_iso = '2011-06-16';                   # Bloomsday 2011
18 my $dt = dt_from_string( $testdate_iso, 'iso' );
19
20 isa_ok( $dt, 'DateTime', 'dt_from_string returns a DateTime object' );
21
22 cmp_ok( $dt->ymd(), 'eq', $testdate_iso, 'Returned object matches input' );
23
24 $dt->set_hour(12);
25 $dt->set_minute(0);
26
27 my $date_string;
28
29 my $module_context = new Test::MockModule('C4::Context');
30
31 t::lib::Mocks::mock_preference('dateformat', 'us');
32
33 my $dateformat = C4::Context->preference('dateformat');
34 cmp_ok  output_pref({ dt => $dt, dateformat => $dateformat }),
35         'eq',
36         output_pref($dt),
37         'output_pref gives an hashref or a dt';
38
39 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => '24hr' });
40 cmp_ok $date_string, 'eq', '2011-06-16 12:00', 'iso output';
41
42 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => '12hr' });
43 cmp_ok $date_string, 'eq', '2011-06-16 12:00 PM', 'iso output 12hr';
44
45 # "notime" doesn't actually mean anything in this context, but we
46 # can't pass undef or output_pref will try to access the database
47 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => 'notime', dateonly => 1 });
48 cmp_ok $date_string, 'eq', '2011-06-16', 'iso output (date only)';
49
50 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '24hr' });
51 cmp_ok $date_string, 'eq', '06/16/2011 12:00', 'us output';
52
53 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '12hr' });
54 cmp_ok $date_string, 'eq', '06/16/2011 12:00 PM', 'us output 12hr';
55
56 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => 'notime', dateonly => 1 });
57 cmp_ok $date_string, 'eq', '06/16/2011', 'us output (date only)';
58
59 # metric should return the French Revolutionary Calendar Really
60 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr' });
61 cmp_ok $date_string, 'eq', '16/06/2011 12:00', 'metric output';
62
63 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => 'notime', dateonly => 1 });
64 cmp_ok $date_string, 'eq', '16/06/2011', 'metric output (date only)';
65
66 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr' });
67 cmp_ok $date_string, 'eq', '16/06/2011 12:00',
68   'output_pref preserves non midnight HH:SS';
69
70 my $dear_dirty_dublin = DateTime::TimeZone->new( name => 'Europe/Dublin' );
71 my $new_dt = dt_from_string( '16/06/2011', 'metric', $dear_dirty_dublin );
72 isa_ok( $new_dt, 'DateTime', 'Create DateTime with different timezone' );
73 cmp_ok( $new_dt->ymd(), 'eq', $testdate_iso,
74     'Returned Dublin object matches input' );
75
76 for ( qw/ 2014-01-01 2100-01-01 9999-01-01 / ) {
77     my $duration = gettimeofday();
78     $new_dt = dt_from_string($_, 'iso', $dear_dirty_dublin);
79     $duration = gettimeofday() - $duration;
80     cmp_ok $duration, '<', 1, "Create DateTime with dt_from_string() for $_ with TZ in less than 1s";
81     $duration = gettimeofday();
82     output_pref( { dt => $new_dt } );
83     $duration = gettimeofday() - $duration;
84     cmp_ok $duration, '<', 1, "Create DateTime with output_pref() for $_ with TZ in less than 1s";
85 }
86
87 $new_dt = dt_from_string( '2011-06-16 12:00', 'sql' );
88 isa_ok( $new_dt, 'DateTime', 'Create DateTime from (mysql) sql' );
89 cmp_ok( $new_dt->ymd(), 'eq', $testdate_iso, 'sql returns correct date' );
90
91 $new_dt = dt_from_string( $dt, 'iso' );
92 isa_ok( $new_dt, 'DateTime', 'Passed a DateTime dt_from_string returns it' );
93
94 # C4::Dates allowed 00th of the month
95
96 my $ymd = '2012-01-01';
97 my $dt0 = dt_from_string( '00/01/2012', 'metric' );
98 isa_ok( $dt0, 'DateTime',
99     'dt_from_string returns a DateTime object passed a zero metric day' );
100 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects metric day 0' );
101
102 $dt0 = dt_from_string( '01/00/2012', 'us' );
103 isa_ok( $dt0, 'DateTime',
104     'dt_from_string returns a DateTime object passed a zero us day' );
105 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects us day 0' );
106
107 $dt0 = dt_from_string( '2012-01-00', 'iso' );
108 isa_ok( $dt0, 'DateTime',
109     'dt_from_string returns a DateTime object passed a zero iso day' );
110 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects iso day 0' );
111
112 # Return undef if passed mysql 0 dates
113 $dt0 = dt_from_string( '0000-00-00', 'iso' );
114 is( $dt0, undef, "undefined returned for 0 iso date" );
115
116 # Return undef if passed mysql 9999-* date
117 my $dt9999 = dt_from_string( '9999-12-31', 'sql' );
118 is( $dt9999->ymd(), '9999-12-31', "dt_from_string should return a DateTime object for 9999-12-31" );
119
120 my $formatted = format_sqldatetime( '2011-06-16 12:00:07', 'metric', '24hr' );
121 cmp_ok( $formatted, 'eq', '16/06/2011 12:00', 'format_sqldatetime conversion' );
122
123 $formatted = format_sqldatetime( undef, 'metric' );
124 cmp_ok( $formatted, 'eq', q{},
125     'format_sqldatetime formats undef as empty string' );
126
127 # Test the as_due_date parameter
128 $dt = DateTime->new(
129     year       => 2013,
130     month      => 12,
131     day        => 11,
132     hour       => 23,
133     minute     => 59,
134 );
135 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
136 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 24hr';
137
138 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', dateonly => 1, as_due_date => 1});
139 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 24hr';
140
141 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', as_due_date => 1 });
142 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 12hr';
143
144 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', dateonly => 1, as_due_date => 1});
145 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 12hr';
146
147 # Test as_due_date for hourly loans
148 $dt = DateTime->new(
149     year       => 2013,
150     month      => 12,
151     day        => 11,
152     hour       => 18,
153     minute     => 35,
154 );
155 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
156 cmp_ok $date_string, 'eq', '11/12/2013 18:35', 'as_due_date with hours and timeformat 24hr (non-midnight time)';
157 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '12hr', as_due_date => 1 });
158 cmp_ok $date_string, 'eq', '12/11/2013 06:35 PM', 'as_due_date with hours and timeformat 12hr (non-midnight time)';
159
160 my $now = DateTime->now;
161 is( dt_from_string, $now, "Without parameter, dt_from_string should return today" );
162
163 $module_context->mock(
164     'tz',
165     sub {
166         return DateTime::TimeZone->new( name => 'Europe/Lisbon' );
167     }
168 );
169
170 $dt = dt_from_string('1979-04-01');
171 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
172
173 $module_context->mock(
174     'tz',
175     sub {
176         return DateTime::TimeZone->new( name => 'Europe/Paris' );
177     }
178 );
179
180 $dt = dt_from_string('2014-03-30 02:00:00');
181 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
182
183 # Test dt_from_string
184 t::lib::Mocks::mock_preference('dateformat', 'metric');
185 t::lib::Mocks::mock_preference('TimeFormat', '24hr');
186
187 # dt_from_string should take into account the dateformat pref, or the given parameter
188 $dt = dt_from_string('31/01/2015');
189 is( ref($dt), 'DateTime', '31/01/2015 is a correct date in metric format' );
190 is( output_pref( { dt => $dt, dateonly => 1 } ), '31/01/2015' );
191 $dt = eval { dt_from_string( '31/01/2015', 'iso' ); };
192 is( ref($dt), '', '31/01/2015 is not a correct date in iso format' );
193 $dt = eval { dt_from_string( '01/01/2015', 'iso' ); };
194 is( ref($dt), '', '01/01/2015 is not a correct date in iso format' );
195 $dt = eval { dt_from_string( '31/01/2015', 'us' ); };
196 is( ref($dt), '', '31/01/2015 is not a correct date in us format' );
197 $dt = dt_from_string( '01/01/2015', 'us' );
198 is( ref($dt), 'DateTime', '01/01/2015 is a correct date in us format' );
199
200
201 # default value for hh and mm is 00:00
202 $dt = dt_from_string('31/01/2015');
203 is( output_pref( { dt => $dt } ), '31/01/2015 00:00', 'dt_from_string should generate a DT object with 00:00 as default hh:mm' );
204
205 $dt = dt_from_string('31/01/2015 12:34');
206 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm' );
207
208 $dt = dt_from_string('31/01/2015 12:34:56');
209 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm:ss' );
210
211 # date before 1900
212 $dt = dt_from_string('01/01/1900');
213 is( output_pref( { dt => $dt, dateonly => 1 } ), '01/01/1900', 'dt_from_string should manage date < 1900' );