Bug 29403: Unit tests
[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 => 80;
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 eval {
141     $dt0 = dt_from_string( '2012-01-01T23:59:59.999Z+02:00', 'rfc3339' );
142 };
143 like( $@, qr/.*does not match the date format \(rfc3339\).*/, 'dt_from_string should die when passed a bad rfc3339 date string' );
144
145 eval {
146     $dt0 = dt_from_string('2021-11-03T10:16:59+00:00', 'iso');
147 };
148 like( $@, qr/.*does not match the date format \(iso\).*/, 'dt_from_string should die when passed a bad iso date string' );
149
150 # Return undef if passed mysql 0 dates
151 $dt0 = dt_from_string( '0000-00-00', 'iso' );
152 is( $dt0, undef, "undefined returned for 0 iso date" );
153
154 # Return undef if passed mysql 9999-* date
155 my $dt9999 = dt_from_string( '9999-12-31', 'sql' );
156 is( $dt9999->ymd(), '9999-12-31', "dt_from_string should return a DateTime object for 9999-12-31" );
157
158 my $formatted = format_sqldatetime( '2011-06-16 12:00:07', 'metric', '24hr' );
159 cmp_ok( $formatted, 'eq', '16/06/2011 12:00', 'format_sqldatetime conversion' );
160
161 $formatted = format_sqldatetime( undef, 'metric' );
162 cmp_ok( $formatted, 'eq', q{},
163     'format_sqldatetime formats undef as empty string' );
164
165 # Test the as_due_date parameter
166 $dt = DateTime->new(
167     year       => 2013,
168     month      => 12,
169     day        => 11,
170     hour       => 23,
171     minute     => 59,
172 );
173 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
174 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 24hr';
175
176 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', dateonly => 1, as_due_date => 1});
177 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 24hr';
178
179 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', as_due_date => 1 });
180 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date with hours and timeformat 12hr';
181
182 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '12hr', dateonly => 1, as_due_date => 1});
183 cmp_ok $date_string, 'eq', '11/12/2013', 'as_due_date without hours and timeformat 12hr';
184
185 # Test as_due_date for hourly loans
186 $dt = DateTime->new(
187     year       => 2013,
188     month      => 12,
189     day        => 11,
190     hour       => 18,
191     minute     => 35,
192 );
193 $date_string = output_pref({ dt => $dt, dateformat => 'metric', timeformat => '24hr', as_due_date => 1 });
194 cmp_ok $date_string, 'eq', '11/12/2013 18:35', 'as_due_date with hours and timeformat 24hr (non-midnight time)';
195 $date_string = output_pref({ dt => $dt, dateformat => 'us', timeformat => '12hr', as_due_date => 1 });
196 cmp_ok $date_string, 'eq', '12/11/2013 06:35 PM', 'as_due_date with hours and timeformat 12hr (non-midnight time)';
197
198 my $now = DateTime->now;
199 is( dt_from_string, $now, "Without parameter, dt_from_string should return today" );
200
201 my $module_context = Test::MockModule->new('C4::Context');
202 $module_context->mock(
203     'tz',
204     sub {
205         return DateTime::TimeZone->new( name => 'Europe/Lisbon' );
206     }
207 );
208
209 $dt = dt_from_string('1979-04-01');
210 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
211
212 $module_context->mock(
213     'tz',
214     sub {
215         return DateTime::TimeZone->new( name => 'Europe/Paris' );
216     }
217 );
218
219 $dt = dt_from_string('2014-03-30 02:00:00');
220 isa_ok( $dt, 'DateTime', 'dt_from_string should return a DateTime object if a DST is given' );
221
222 # Test dt_from_string
223 t::lib::Mocks::mock_preference('dateformat', 'metric');
224 t::lib::Mocks::mock_preference('TimeFormat', '24hr');
225
226 # dt_from_string should take into account the dateformat pref, or the given parameter
227 $dt = dt_from_string('31/01/2015');
228 is( ref($dt), 'DateTime', '31/01/2015 is a correct date in metric format' );
229 is( output_pref( { dt => $dt, dateonly => 1 } ), '31/01/2015' );
230 $dt = eval { dt_from_string( '31/01/2015', 'iso' ); };
231 is( ref($dt), '', '31/01/2015 is not a correct date in iso format' );
232 $dt = eval { dt_from_string( '01/01/2015', 'iso' ); };
233 is( ref($dt), '', '01/01/2015 is not a correct date in iso format' );
234 $dt = eval { dt_from_string( '01/01/2015', 'rfc3339' ); };
235 is( ref($dt), '', '01/01/2015 is not a correct date in rfc3339 format' );
236 $dt = eval { dt_from_string( '31/01/2015', 'us' ); };
237 is( ref($dt), '', '31/01/2015 is not a correct date in us format' );
238 $dt = dt_from_string( '01/01/2015', 'us' );
239 is( ref($dt), 'DateTime', '01/01/2015 is a correct date in us format' );
240 $dt = dt_from_string( '01.01.2015', 'dmydot' );
241 is( ref($dt), 'DateTime', '01.01.2015 is a correct date in dmydot format' );
242
243
244 # default value for hh and mm is 00:00
245 $dt = dt_from_string('31/01/2015');
246 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' );
247
248 $dt = dt_from_string('31/01/2015 12:34');
249 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm' );
250
251 $dt = dt_from_string('31/01/2015 12:34:56');
252 is( output_pref( { dt => $dt } ), '31/01/2015 12:34', 'dt_from_string should match hh:mm:ss' );
253
254 # date before 1900
255 $dt = dt_from_string('01/01/1900');
256 is( output_pref( { dt => $dt, dateonly => 1 } ), '01/01/1900', 'dt_from_string should manage date < 1900' );
257
258 # fallback
259 $dt = dt_from_string('2015-01-31 01:02:03');
260 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string should fallback to sql format' );
261
262 # 12hr format
263 $dt = dt_from_string('2015-01-31 01:02 AM');
264 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string ' );
265 $dt = dt_from_string('2015-01-31 01:02:03 AM');
266 is( output_pref( {dt => $dt} ), '31/01/2015 01:02', 'dt_from_string ' );
267 $dt = dt_from_string('2015-01-31 01:02 PM');
268 is( output_pref( {dt => $dt} ), '31/01/2015 13:02', 'dt_from_string ' );
269 $dt = dt_from_string('2015-01-31 01:02:03 PM');
270 is( output_pref( {dt => $dt} ), '31/01/2015 13:02', 'dt_from_string ' );
271 $dt = dt_from_string('2015-01-31 12:02 AM');
272 is( output_pref( {dt => $dt} ), '31/01/2015 00:02', 'dt_from_string ' );
273 $dt = dt_from_string('2015-01-31 12:02:03 AM');
274 is( output_pref( {dt => $dt} ), '31/01/2015 00:02', 'dt_from_string ' );
275
276 subtest 'TimeFormat 12hr' => sub {
277     plan tests => 4;
278
279     $dt = DateTime->new( year => 2020, month => 5, day => 28, hour => 12, minute => 49 );
280     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
281     my $output = output_pref({ dt => $dt, dateformat => 'iso' });
282     $dt = dt_from_string( $output, 'iso' );
283     is( output_pref( {dt => $dt} ), '28/05/2020 12:49 PM', "12 NOON formatted correctly in 12hr format" );
284     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
285     is( output_pref( {dt => $dt} ), '28/05/2020 12:49' , "12 NOON formatted correctly in 24hr format" );
286
287     $dt = DateTime->new( year => 2020, month => 5, day => 28, hour => 0, minute => 49 );
288     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
289     $output = output_pref({ dt => $dt, dateformat => 'iso' });
290     $dt = dt_from_string( $output, 'iso' );
291     is( output_pref( {dt => $dt} ), '28/05/2020 12:49 AM', "12 MIDNIGHT formatted correctly in 12hr format" );
292     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
293     is( output_pref( {dt => $dt} ), '28/05/2020 00:49', "12 MIDNIGHT formatted correctly in 24hr format" );
294 };
295
296 # output_pref with no parameters, single parameter (no hash)
297 is( output_pref(), undef, 'Call output_pref without parameters' );
298 try {
299     output_pref( 'no_dt' );
300     ok( 0, 'Passed single invalid dt to output_pref' );
301 } catch {
302     is( ref($_), 'Koha::Exceptions::WrongParameter',
303         'Passed single invalid dt to output_pref' );
304 };
305
306 # pass invalid dt via hash
307 try {
308     output_pref({ dt => 'no_dt' });
309     ok( 0, 'Passed invalid dt in hash to output_pref' );
310 } catch {
311     is( ref($_), 'Koha::Exceptions::WrongParameter',
312         'Passed invalid dt in hash to output_pref' );
313 };
314
315 # output_pref with str parameter
316 is( output_pref( { 'str' => $testdate_iso, dateformat => 'iso', dateonly => 1 } ), $testdate_iso, 'output_pref should handle correctly the iso parameter' );
317 my $output_for_invalid_date;
318 try {
319     $output_for_invalid_date = output_pref({ str => 'invalid_date' });
320     ok( 0, 'Invalid date string passed to output_pref' );
321 } catch {
322     is( ref($_), 'Koha::Exceptions::WrongParameter',
323         'Invalid date string passed to output_pref' );
324 };
325 is( $output_for_invalid_date, undef, 'No return value from output_pref' );
326 try {
327     output_pref({ 'str' => $testdate_iso, dt => $dt, dateformat => 'iso', dateonly => 1 });
328     ok( 0, 'output_pref should carp if str and dt parameters are passed together' );
329 } catch {
330     is( ref($_), 'Koha::Exceptions::WrongParameter', 'output_pref should throw an exception if str and dt parameters are passed together' );
331 };
332
333 # End of tests