Bug 25566: Add option to ignore found holds and use it when checking high holds
[koha.git] / t / Calendar.t
blobb3dc02ffaf9440ec17173622b8e3088ea03167ce
1 #!/usr/bin/perl
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>.
18 use Modern::Perl;
20 use Test::More;
21 use Test::MockModule;
23 use DateTime;
24 use DateTime::Duration;
25 use Koha::Caches;
26 use Koha::DateUtils;
28 use t::lib::Mocks;
30 use Module::Load::Conditional qw/check_install/;
32 BEGIN {
33 if ( check_install( module => 'Test::DBIx::Class' ) ) {
34 plan tests => 39;
35 } else {
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');
45 $db->mock(
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(
54 'preference',
55 sub {
56 return 'Calendar';
60 fixtures_ok [
61 # weekly holidays
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
69 # exception holidays
70 SpecialHoliday => [
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 ],
77 ], "add fixtures";
79 my $cache = Koha::Caches->get_instance();
80 $cache->clear_from_cache( 'single_holidays' ) ;
81 $cache->clear_from_cache( 'exception_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(
89 year => 2012,
90 month => 11,
91 day => 24,
94 my $sunday = DateTime->new(
95 year => 2012,
96 month => 11,
97 day => 25,
100 my $monday = DateTime->new(
101 year => 2012,
102 month => 11,
103 day => 26,
106 my $new_year = DateTime->new(
107 year => 2013,
108 month => 1,
109 day => 1,
112 my $single_holiday = DateTime->new(
113 year => 2011,
114 month => 6,
115 day => 1,
116 ); # should be a holiday
118 my $notspecial = DateTime->new(
119 year => 2011,
120 month => 6,
121 day => 2
122 ); # should NOT be a holiday
124 my $sunday_exception = DateTime->new(
125 year => 2012,
126 month => 11,
127 day => 11
130 my $day_after_christmas = DateTime->new(
131 year => 2012,
132 month => 12,
133 day => 26
134 ); # for testing negative addDate
136 my $holiday_for_another_branch = DateTime->new(
137 year => 2012,
138 month => 8,
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
158 year => 2012,
159 month => 9,
160 day => 17,
161 hour => 17,
162 minute => 30,
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(
173 year => 2011,
174 month => 6,
175 day => 1,
176 hour => 11,
177 minute => 2
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
192 year => 2012,
193 month => 7,
194 day => 23,
195 hour => 11,
196 minute => 53,
199 my $later_dt = DateTime->new( # Monday
200 year => 2012,
201 month => 9,
202 day => 17,
203 hour => 17,
204 minute => 30,
205 time_zone => 'Europe/London',
208 { ## 'Datedue' tests
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)' );
267 { ## 'Days' tests
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 {
304 plan tests => 1;
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|);
312 END {
313 $cache->clear_from_cache( 'single_holidays' ) ;
314 $cache->clear_from_cache( 'exception_holidays' ) ;