3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use DateTime
::Duration
;
30 use Module
::Load
::Conditional qw
/check_install/;
33 if ( check_install
( module
=> 'Test::DBIx::Class' ) ) {
36 plan skip_all
=> "Need Test::DBIx::Class"
40 use_ok
('Koha::Calendar');
42 use Test
::DBIx
::Class
;
44 my $db = Test
::MockModule
->new('Koha::Database');
46 _new_schema
=> sub { return Schema
(); }
49 # We need to mock the C4::Context->preference method for
50 # simplicity and re-usability of the session definition. Any
51 # syspref fits for syspref-agnostic tests.
52 my $module_context = new Test
::MockModule
('C4::Context');
53 $module_context->mock(
62 RepeatableHoliday
=> [
63 [ qw( branchcode day month weekday title description) ],
64 [ 'MPL', undef, undef, 0, '', '' ], # sundays
65 [ 'MPL', undef, undef, 6, '', '' ],# saturdays
66 [ 'MPL', 1, 1, undef, '', ''], # new year's day
67 [ 'MPL', 25, 12, undef, '', ''], # chrismas
71 [qw( branchcode day month year title description isexception )],
72 [ 'MPL', 11, 11, 2012, '', '', 1 ], # sunday exception
73 [ 'MPL', 1, 6, 2011, '', '', 0 ],
74 [ 'MPL', 4, 7, 2012, '', '', 0 ],
75 [ 'CPL', 6, 8, 2012, '', '', 0 ],
79 my $cache = Koha
::Caches
->get_instance();
80 $cache->clear_from_cache('MPL_holidays');
81 $cache->clear_from_cache('CPL_holidays');
83 # 'MPL' branch is arbitrary, is not used at all but is needed for initialization
84 my $cal = Koha
::Calendar
->new( branchcode
=> 'MPL' );
86 isa_ok
( $cal, 'Koha::Calendar', 'Calendar class returned' );
88 my $saturday = DateTime
->new(
94 my $sunday = DateTime
->new(
100 my $monday = DateTime
->new(
106 my $new_year = DateTime
->new(
112 my $single_holiday = DateTime
->new(
116 ); # should be a holiday
118 my $notspecial = DateTime
->new(
122 ); # should NOT be a holiday
124 my $sunday_exception = DateTime
->new(
130 my $day_after_christmas = DateTime
->new(
134 ); # for testing negative addDate
136 my $holiday_for_another_branch = DateTime
->new(
139 day
=> 6, # This is a monday
142 { # Syspref-agnostic tests
143 is
( $saturday->day_of_week, 6, '\'$saturday\' is actually a saturday (6th day of week)');
144 is
( $sunday->day_of_week, 7, '\'$sunday\' is actually a sunday (7th day of week)');
145 is
( $monday->day_of_week, 1, '\'$monday\' is actually a monday (1st day of week)');
146 is
( $cal->is_holiday($saturday), 1, 'Saturday is a closed day' );
147 is
( $cal->is_holiday($sunday), 1, 'Sunday is a closed day' );
148 is
( $cal->is_holiday($monday), 0, 'Monday is not a closed day' );
149 is
( $cal->is_holiday($new_year), 1, 'Month/Day closed day test (New year\'s day)' );
150 is
( $cal->is_holiday($single_holiday), 1, 'Single holiday closed day test' );
151 is
( $cal->is_holiday($notspecial), 0, 'Fixed single date that is not a holiday test' );
152 is
( $cal->is_holiday($sunday_exception), 0, 'Exception holiday is not a closed day test' );
153 is
( $cal->is_holiday($holiday_for_another_branch), 0, 'Holiday defined for another branch should not be defined as an holiday' );
156 { # Bugzilla #8966 - is_holiday truncates referenced date
157 my $later_dt = DateTime
->new( # Monday
163 time_zone
=> 'Europe/London',
167 is
( $cal->is_holiday($later_dt), 0, 'bz-8966 (1/2) Apply is_holiday for the next test' );
168 cmp_ok
( $later_dt, 'eq', '2012-09-17T17:30:00', 'bz-8966 (2/2) Date should be the same after is_holiday' );
171 { # Bugzilla #8800 - is_holiday should use truncated date for 'contains' call
172 my $single_holiday_time = DateTime
->new(
180 is
( $cal->is_holiday($single_holiday_time),
181 $cal->is_holiday($single_holiday) ,
182 'bz-8800 is_holiday should truncate the date for holiday validation' );
185 my $one_day_dur = DateTime
::Duration
->new( days
=> 1 );
186 my $two_day_dur = DateTime
::Duration
->new( days
=> 2 );
187 my $seven_day_dur = DateTime
::Duration
->new( days
=> 7 );
189 my $dt = dt_from_string
( '2012-07-03','iso' ); #tuesday
191 my $test_dt = DateTime
->new( # Monday
199 my $later_dt = DateTime
->new( # Monday
205 time_zone
=> 'Europe/London',
210 $cal = Koha
::Calendar
->new( branchcode
=> 'MPL', days_mode
=> 'Datedue' );
212 is
($cal->addDate( $dt, $one_day_dur, 'days' ), # tuesday
213 dt_from_string
('2012-07-05','iso'),
214 'Single day add (Datedue, matches holiday, shift)' );
216 is
($cal->addDate( $dt, $two_day_dur, 'days' ),
217 dt_from_string
('2012-07-05','iso'),
218 'Two days add, skips holiday (Datedue)' );
220 cmp_ok
($cal->addDate( $test_dt, $seven_day_dur, 'days' ), 'eq',
221 '2012-07-30T11:53:00',
222 'Add 7 days (Datedue)' );
224 is
( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 1,
225 'addDate skips closed Sunday (Datedue)' );
227 is
( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-24',
228 'Negative call to addDate (Datedue)' );
230 ## Note that the days_between API says closed days are not considered.
231 ## This tests are here as an API test.
232 cmp_ok
( $cal->days_between( $test_dt, $later_dt )->in_units('days'),
233 '==', 40, 'days_between calculates correctly (Days)' );
235 cmp_ok
( $cal->days_between( $later_dt, $test_dt )->in_units('days'),
236 '==', 40, 'Test parameter order not relevant (Days)' );
239 { ## 'Calendar' tests'
241 $cal = Koha
::Calendar
->new( branchcode
=> 'MPL', days_mode
=> 'Calendar' );
243 $dt = dt_from_string
('2012-07-03','iso');
245 is
($cal->addDate( $dt, $one_day_dur, 'days' ),
246 dt_from_string
('2012-07-05','iso'),
247 'Single day add (Calendar)' );
249 cmp_ok
($cal->addDate( $test_dt, $seven_day_dur, 'days' ), 'eq',
250 '2012-08-01T11:53:00',
251 'Add 7 days (Calendar)' );
253 is
( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 1,
254 'addDate skips closed Sunday (Calendar)' );
256 is
( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-24',
257 'Negative call to addDate (Calendar)' );
259 cmp_ok
( $cal->days_between( $test_dt, $later_dt )->in_units('days'),
260 '==', 40, 'days_between calculates correctly (Calendar)' );
262 cmp_ok
( $cal->days_between( $later_dt, $test_dt )->in_units('days'),
263 '==', 40, 'Test parameter order not relevant (Calendar)' );
269 $cal = Koha
::Calendar
->new( branchcode
=> 'MPL', days_mode
=> 'Days' );
271 $dt = dt_from_string
('2012-07-03','iso');
273 is
($cal->addDate( $dt, $one_day_dur, 'days' ),
274 dt_from_string
('2012-07-04','iso'),
275 'Single day add (Days)' );
277 cmp_ok
($cal->addDate( $test_dt, $seven_day_dur, 'days' ),'eq',
278 '2012-07-30T11:53:00',
279 'Add 7 days (Days)' );
281 is
( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 7,
282 'addDate doesn\'t skip closed Sunday (Days)' );
284 is
( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-25',
285 'Negative call to addDate (Days)' );
287 ## Note that the days_between API says closed days are not considered.
288 ## This tests are here as an API test.
289 cmp_ok
( $cal->days_between( $test_dt, $later_dt )->in_units('days'),
290 '==', 40, 'days_between calculates correctly (Days)' );
292 cmp_ok
( $cal->days_between( $later_dt, $test_dt )->in_units('days'),
293 '==', 40, 'Test parameter order not relevant (Days)' );
298 $cal = Koha
::Calendar
->new( branchcode
=> 'CPL' );
299 is
( $cal->is_holiday($single_holiday), 0, 'Single holiday for MPL, not CPL' );
300 is
( $cal->is_holiday($holiday_for_another_branch), 1, 'Holiday defined for CPL should be defined as an holiday' );
303 subtest
'days_mode parameter' => sub {
306 t
::lib
::Mocks
::mock_preference
('useDaysMode', 'Days');
308 $cal = Koha
::Calendar
->new( branchcode
=> 'CPL', days_mode
=> 'Calendar' );
309 is
( $cal->{days_mode
}, 'Calendar', q
|If set
, days_mode is correctly set
|);
313 $cache->clear_from_cache('MPL_holidays');
314 $cache->clear_from_cache('CPL_holidays');