Bug 24850: Add tests for invalid RFC3339 dates
[koha.git] / t / DateUtils.t
1 use Modern::Perl;
2 use DateTime;
3 use DateTime::TimeZone;
4
5 use C4::Context;
6
7 use Test::More tests => 79;
8
9 use Test::MockModule;
10 use Test::Warn;
11 use Time::HiRes qw/ gettimeofday /;
12 use Try::Tiny;
13
14 use Koha::DateUtils qw( dt_from_string output_pref format_sqldatetime );
15
16 use t::lib::Mocks;
17
18 t::lib::Mocks::mock_preference('dateformat', 'us');
19 t::lib::Mocks::mock_preference('TimeFormat', 'This_is_not_used_but_called');
20
21 my $tz = C4::Context->tz;
22
23 isa_ok( $tz, 'DateTime::TimeZone', 'Context returns timezone object' );
24
25 my $testdate_iso = '2011-06-16';                   # Bloomsday 2011
26 my $dt = dt_from_string( $testdate_iso, 'iso' );
27
28 isa_ok( $dt, 'DateTime', 'dt_from_string returns a DateTime object' );
29
30 cmp_ok( $dt->ymd(), 'eq', $testdate_iso, 'Returned object matches input' );
31
32 $dt->set_hour(12);
33 $dt->set_minute(0);
34
35 my $date_string;
36
37 my $dateformat = C4::Context->preference('dateformat');
38 cmp_ok  output_pref({ dt => $dt, dateformat => $dateformat }),
39         'eq',
40         output_pref($dt),
41         'output_pref gives an hashref or a dt';
42
43 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => '24hr' });
44 cmp_ok $date_string, 'eq', '2011-06-16 12:00', 'iso output';
45
46 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => '12hr' });
47 cmp_ok $date_string, 'eq', '2011-06-16 12:00 PM', 'iso output 12hr';
48
49 $date_string = output_pref({ dt => $dt, dateformat => 'rfc3339' });
50 like($date_string, qr/2011-06-16T12:00:00\+|-\d\d:\d\d/, 'RFC3339 output');
51
52 $date_string = output_pref({ dt => $dt, dateformat => 'rfc3339', dateonly => 1 });
53 is($date_string, '2011-06-16', 'RFC3339 output');
54
55 # "notime" doesn't actually mean anything in this context, but we
56 # can't pass undef or output_pref will try to access the database
57 $date_string = output_pref({ dt => $dt, dateformat => 'iso', timeformat => 'notime', dateonly => 1 });
58 cmp_ok $date_string, 'eq', '2011-06-16', 'iso output (date only)';
59
60 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '24hr' });
61 cmp_ok $date_string, 'eq', '06/16/2011 12:00', 'us output';
62
63 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '12hr' });
64 cmp_ok $date_string, 'eq', '06/16/2011 12:00 PM', 'us output 12hr';
65
66 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => 'notime', dateonly => 1 });
67 cmp_ok $date_string, 'eq', '06/16/2011', 'us output (date only)';
68
69 # metric should return the French Revolutionary Calendar Really
70 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr' });
71 cmp_ok $date_string, 'eq', '16/06/2011 12:00', 'metric output';
72
73 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => 'notime', dateonly => 1 });
74 cmp_ok $date_string, 'eq', '16/06/2011', 'metric output (date only)';
75
76 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr' });
77 cmp_ok $date_string, 'eq', '16/06/2011 12:00',
78   'output_pref preserves non midnight HH:SS';
79
80 my $dear_dirty_dublin = DateTime::TimeZone->new( name => 'Europe/Dublin' );
81 my $new_dt = dt_from_string( '16/06/2011', 'metric', $dear_dirty_dublin );
82 isa_ok( $new_dt, 'DateTime', 'Create DateTime with different timezone' );
83 cmp_ok( $new_dt->ymd(), 'eq', $testdate_iso,
84     'Returned Dublin object matches input' );
85
86 SKIP: {
87     skip "Don't test execution time of dt_from_string on slow servers", 6 if $ENV{SLOW_SERVER};
88     for ( qw/ 2014-01-01 2100-01-01 9999-01-01 / ) {
89         my $duration = gettimeofday();
90         $new_dt = dt_from_string($_, 'iso', $dear_dirty_dublin);
91         $duration = gettimeofday() - $duration;
92         cmp_ok $duration, '<', 1, "Create DateTime with dt_from_string() for $_ with TZ in less than 1s";
93         $duration = gettimeofday();
94         output_pref( { dt => $new_dt } );
95         $duration = gettimeofday() - $duration;
96         cmp_ok $duration, '<', 1, "Create DateTime with output_pref() for $_ with TZ in less than 1s";
97     }
98 };
99
100 $new_dt = dt_from_string( '2011-06-16 12:00', 'sql' );
101 isa_ok( $new_dt, 'DateTime', 'Create DateTime from (mysql) sql' );
102 cmp_ok( $new_dt->ymd(), 'eq', $testdate_iso, 'sql returns correct date' );
103
104 $new_dt = dt_from_string( $dt, 'iso' );
105 isa_ok( $new_dt, 'DateTime', 'Passed a DateTime dt_from_string returns it' );
106
107 my $ymd = '2012-01-01';
108 my $dt0 = dt_from_string( '00/01/2012', 'metric' );
109 isa_ok( $dt0, 'DateTime',
110     'dt_from_string returns a DateTime object passed a zero metric day' );
111 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects metric day 0' );
112
113 $dt0 = dt_from_string( '01/00/2012', 'us' );
114 isa_ok( $dt0, 'DateTime',
115     'dt_from_string returns a DateTime object passed a zero us day' );
116 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects us day 0' );
117
118 $dt0 = dt_from_string( '2012-01-00', 'iso' );
119 isa_ok( $dt0, 'DateTime',
120     'dt_from_string returns a DateTime object passed a zero iso day' );
121 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects iso day 0' );
122
123 $dt0 = dt_from_string( '2012-01-00T12:00:00Z', 'rfc3339' );
124 isa_ok( $dt0, 'DateTime',
125     'dt_from_string returns a DateTime object passed a zero rfc3339 day' );
126 cmp_ok( $dt0->ymd(), 'eq', $ymd, 'Returned object corrects rfc3339 day 0' );
127
128 $dt0 = dt_from_string( '2012-01-01T23:59:00.0Z', 'rfc3339' );
129 cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with 1 decimal place' );
130
131 $dt0 = dt_from_string( '2012-01-01T23:59:00.00Z', 'rfc3339' );
132 cmp_ok( $dt0->epoch(), 'eq', '1325462340', 'dt_from_string handles seconds with 2 decimal places' );
133
134 $dt0 = dt_from_string( '2012-01-01t23:59:59.999z', 'rfc3339' );
135 cmp_ok( $dt0->epoch(), 'eq', '1325462399', 'dt_from_string handles seconds with 3 decimal places' );
136
137 $dt0 = dt_from_string( '2012-01-01T23:59:59.999+02:00', 'rfc3339' );
138 cmp_ok( $dt0->epoch(), 'eq', '1325455199', 'dt_from_string handles seconds with 3 decimal places and a timezone' );
139
140 try {
141     $dt0 = dt_from_string( '2012-01-01T23:59:59.999Z+02:00', 'rfc3339' );
142 }
143 catch {
144     like( $_, qr/.*does not match the date format \(rfc3339\).*/, 'dt_from_string should die when passed a bad date string' );
145 };
146
147 # Return undef if passed mysql 0 dates
148 $dt0 = dt_from_string( '0000-00-00', 'iso' );
149 is( $dt0, undef, "undefined returned for 0 iso date" );
150
151 # Return undef if passed mysql 9999-* date
152 my $dt9999 = dt_from_string( '9999-12-31', 'sql' );
153 is( $dt9999->ymd(), '9999-12-31', "dt_from_string should return a DateTime object for 9999-12-31" );
154
155 my $formatted = format_sqldatetime( '2011-06-16 12:00:07', 'metric', '24hr' );
156 cmp_ok( $formatted, 'eq', '16/06/2011 12:00', 'format_sqldatetime conversion' );
157
158 $formatted = format_sqldatetime( undef, 'metric' );
159 cmp_ok( $formatted, 'eq', q{},
160     'format_sqldatetime formats undef as empty string' );
161
162 # Test the as_due_date parameter
163 $dt = DateTime->new(
164     year       => 2013,
165     month      => 12,
166     day        => 11,
167     hour       => 23,
168     minute     => 59,
169 );
170 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
171 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 24hr';
172
173 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', dateonly => 1, as_due_date => 1});
174 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 24hr';
175
176 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', as_due_date => 1 });
177 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 12hr';
178
179 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', dateonly => 1, as_due_date => 1});
180 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 12hr';
181
182 # Test as_due_date for hourly loans
183 $dt = DateTime->new(
184     year       => 2013,
185     month      => 12,
186     day        => 11,
187     hour       => 18,
188     minute     => 35,
189 );
190 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
191 cmp_ok $date_string, 'eq', '11/12/2013 18:35', 'as_due_date with hours and timeformat 24hr (non-midnight time)';
192 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '12hr', as_due_date => 1 });
193 cmp_ok $date_string, 'eq', '12/11/2013 06:35 PM', 'as_due_date with hours and timeformat 12hr (non-midnight time)';
194
195 my $now = DateTime->now;
196 is( dt_from_string, $now, "Without parameter, dt_from_string should return today" );
197
198 my $module_context = Test::MockModule->new('C4::Context');
199 $module_context->mock(
200     'tz',
201     sub {
202         return DateTime::TimeZone->new( name => 'Europe/Lisbon' );
203     }
204 );
205
206 $dt = dt_from_string('1979-04-01');
207 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
208
209 $module_context->mock(
210     'tz',
211     sub {
212         return DateTime::TimeZone->new( name => 'Europe/Paris' );
213     }
214 );
215
216 $dt = dt_from_string('2014-03-30 02:00:00');
217 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
218
219 # Test dt_from_string
220 t::lib::Mocks::mock_preference('dateformat', 'metric');
221 t::lib::Mocks::mock_preference('TimeFormat', '24hr');
222
223 # dt_from_string should take into account the dateformat pref, or the given parameter
224 $dt = dt_from_string('31/01/2015');
225 is( ref($dt), 'DateTime', '31/01/2015 is a correct date in metric format' );
226 is( output_pref( { dt => $dt, dateonly => 1 } ), '31/01/2015' );
227 $dt = eval { dt_from_string( '31/01/2015', 'iso' ); };
228 is( ref($dt), '', '31/01/2015 is not a correct date in iso format' );
229 $dt = eval { dt_from_string( '01/01/2015', 'iso' ); };
230 is( ref($dt), '', '01/01/2015 is not a correct date in iso format' );
231 $dt = eval { dt_from_string( '01/01/2015', 'rfc3339' ); };
232 is( ref($dt), '', '01/01/2015 is not a correct date in rfc3339 format' );
233 $dt = eval { dt_from_string( '31/01/2015', 'us' ); };
234 is( ref($dt), '', '31/01/2015 is not a correct date in us format' );
235 $dt = dt_from_string( '01/01/2015', 'us' );
236 is( ref($dt), 'DateTime', '01/01/2015 is a correct date in us format' );
237 $dt = dt_from_string( '01.01.2015', 'dmydot' );
238 is( ref($dt), 'DateTime', '01.01.2015 is a correct date in dmydot format' );
239
240
241 # default value for hh and mm is 00:00
242 $dt = dt_from_string('31/01/2015');
243 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' );
244
245 $dt = dt_from_string('31/01/2015 12:34');
246 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm' );
247
248 $dt = dt_from_string('31/01/2015 12:34:56');
249 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm:ss' );
250
251 # date before 1900
252 $dt = dt_from_string('01/01/1900');
253 is( output_pref( { dt => $dt, dateonly => 1 } ), '01/01/1900', 'dt_from_string should manage date < 1900' );
254
255 # fallback
256 $dt = dt_from_string('2015-01-31 01:02:03');
257 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string should fallback to sql format' );
258
259 # 12hr format
260 $dt = dt_from_string('2015-01-31 01:02 AM');
261 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string ' );
262 $dt = dt_from_string('2015-01-31 01:02:03 AM');
263 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string ' );
264 $dt = dt_from_string('2015-01-31 01:02 PM');
265 is( output_pref( {dt => $dt} ), '31/01/2015 13:02', 'dt_from_string ' );
266 $dt = dt_from_string('2015-01-31 01:02:03 PM');
267 is( output_pref( {dt => $dt} ), '31/01/2015 13:02', 'dt_from_string ' );
268 $dt = dt_from_string('2015-01-31 12:02 AM');
269 is( output_pref( {dt => $dt} ), '31/01/2015 00:02', 'dt_from_string ' );
270 $dt = dt_from_string('2015-01-31 12:02:03 AM');
271 is( output_pref( {dt => $dt} ), '31/01/2015 00:02', 'dt_from_string ' );
272
273 subtest 'TimeFormat 12hr' => sub {
274     plan tests => 4;
275
276     $dt = DateTime->new( year => 2020, month => 5, day => 28, hour => 12, minute => 49 );
277     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
278     my $output = output_pref({ dt => $dt, dateformat => 'iso' });
279     $dt = dt_from_string( $output, 'iso' );
280     is( output_pref( {dt => $dt} ), '28/05/2020 12:49 PM', "12 NOON formatted correctly in 12hr format" );
281     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
282     is( output_pref( {dt => $dt} ), '28/05/2020 12:49' , "12 NOON formatted correctly in 24hr format" );
283
284     $dt = DateTime->new( year => 2020, month => 5, day => 28, hour => 0, minute => 49 );
285     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
286     $output = output_pref({ dt => $dt, dateformat => 'iso' });
287     $dt = dt_from_string( $output, 'iso' );
288     is( output_pref( {dt => $dt} ), '28/05/2020 12:49 AM', "12 MIDNIGHT formatted correctly in 12hr format" );
289     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
290     is( output_pref( {dt => $dt} ), '28/05/2020 00:49', "12 MIDNIGHT formatted correctly in 24hr format" );
291 };
292
293 # output_pref with no parameters, single parameter (no hash)
294 is( output_pref(), undef, 'Call output_pref without parameters' );
295 try {
296     output_pref( 'no_dt' );
297     ok( 0, 'Passed single invalid dt to output_pref' );
298 } catch {
299     is( ref($_), 'Koha::Exceptions::WrongParameter',
300         'Passed single invalid dt to output_pref' );
301 };
302
303 # pass invalid dt via hash
304 try {
305     output_pref({ dt => 'no_dt' });
306     ok( 0, 'Passed invalid dt in hash to output_pref' );
307 } catch {
308     is( ref($_), 'Koha::Exceptions::WrongParameter',
309         'Passed invalid dt in hash to output_pref' );
310 };
311
312 # output_pref with str parameter
313 is( output_pref( { 'str' => $testdate_iso, dateformat => 'iso', dateonly => 1 } ), $testdate_iso, 'output_pref should handle correctly the iso parameter' );
314 my $output_for_invalid_date;
315 try {
316     $output_for_invalid_date = output_pref({ str => 'invalid_date' });
317     ok( 0, 'Invalid date string passed to output_pref' );
318 } catch {
319     is( ref($_), 'Koha::Exceptions::WrongParameter',
320         'Invalid date string passed to output_pref' );
321 };
322 is( $output_for_invalid_date, undef, 'No return value from output_pref' );
323 try {
324     output_pref({ 'str' => $testdate_iso, dt => $dt, dateformat => 'iso', dateonly => 1 });
325     ok( 0, 'output_pref should carp if str and dt parameters are passed together' );
326 } catch {
327     is( ref($_), 'Koha::Exceptions::WrongParameter', 'output_pref should throw an exception if str and dt parameters are passed together' );
328 };
329
330 # End of tests