Bug 25723: Remove tests for removed method
[koha.git] / t / db_dependent / Holidays.t
blobced8bd538b3785353e66fe9815039ee890263a31
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 tests => 12;
22 use DateTime;
23 use DateTime::TimeZone;
25 use t::lib::TestBuilder;
26 use C4::Context;
27 use Koha::Database;
28 use Koha::DateUtils;
31 BEGIN {
32 use_ok('Koha::Calendar');
33 use_ok('C4::Calendar');
36 my $schema = Koha::Database->new->schema;
37 my $dbh = C4::Context->dbh;
38 my $builder = t::lib::TestBuilder->new;
40 subtest 'is_holiday timezone tests' => sub {
42 plan tests => 1;
44 $schema->storage->txn_begin;
46 $dbh->do("DELETE FROM special_holidays");
47 # Clear cache
48 Koha::Caches->get_instance->flush_all;
50 # Artificially set timezone
51 my $timezone = 'America/Santiago';
52 $ENV{TZ} = $timezone;
53 use POSIX qw(tzset);
54 tzset;
56 my $branch = $builder->build( { source => 'Branch' } )->{branchcode};
57 my $calendar = Koha::Calendar->new( branchcode => $branch );
59 C4::Calendar->new( branchcode => $branch )->insert_exception_holiday(
60 day => 6,
61 month => 9,
62 year => 2015,
63 title => 'Invalid date',
64 description => 'Invalid date description',
67 my $exception_holiday = DateTime->new( day => 6, month => 9, year => 2015 );
68 my $now_dt = DateTime->now;
70 my $diff;
71 eval { $diff = $calendar->days_between( $now_dt, $exception_holiday ) };
72 unlike(
73 $@,
74 qr/Invalid local time for date in time zone: America\/Santiago/,
75 'Avoid invalid datetime due to DST'
78 $schema->storage->txn_rollback;
81 $schema->storage->txn_begin;
83 # Create two fresh branches for the tests
84 my $branch_1 = $builder->build({ source => 'Branch' })->{ branchcode };
85 my $branch_2 = $builder->build({ source => 'Branch' })->{ branchcode };
87 C4::Calendar->new( branchcode => $branch_1 )->insert_week_day_holiday(
88 weekday => 0,
89 title => '',
90 description => 'Sundays',
93 my $holiday2add = dt_from_string("2015-01-01");
94 C4::Calendar->new( branchcode => $branch_1 )->insert_day_month_holiday(
95 day => $holiday2add->day(),
96 month => $holiday2add->month(),
97 year => $holiday2add->year(),
98 title => '',
99 description => "New Year's Day",
101 $holiday2add = dt_from_string("2014-12-25");
102 C4::Calendar->new( branchcode => $branch_1 )->insert_day_month_holiday(
103 day => $holiday2add->day(),
104 month => $holiday2add->month(),
105 year => $holiday2add->year(),
106 title => '',
107 description => 'Christmas',
110 my $koha_calendar = Koha::Calendar->new( branchcode => $branch_1 );
111 my $c4_calendar = C4::Calendar->new( branchcode => $branch_1 );
113 isa_ok( $koha_calendar, 'Koha::Calendar', 'Koha::Calendar class returned' );
114 isa_ok( $c4_calendar, 'C4::Calendar', 'C4::Calendar class returned' );
116 my $sunday = DateTime->new(
117 year => 2011,
118 month => 6,
119 day => 26,
121 my $monday = DateTime->new(
122 year => 2011,
123 month => 6,
124 day => 27,
126 my $christmas = DateTime->new(
127 year => 2032,
128 month => 12,
129 day => 25,
131 my $newyear = DateTime->new(
132 year => 2035,
133 month => 1,
134 day => 1,
137 is( $koha_calendar->is_holiday($sunday), 1, 'Sunday is a closed day' );
138 is( $koha_calendar->is_holiday($monday), 0, 'Monday is not a closed day' );
139 is( $koha_calendar->is_holiday($christmas), 1, 'Christmas is a closed day' );
140 is( $koha_calendar->is_holiday($newyear), 1, 'New Years day is a closed day' );
142 $dbh->do("DELETE FROM repeatable_holidays");
143 $dbh->do("DELETE FROM special_holidays");
145 my $custom_holiday = DateTime->new(
146 year => 2013,
147 month => 11,
148 day => 12,
151 my $today = dt_from_string();
152 C4::Calendar->new( branchcode => $branch_2 )->insert_single_holiday(
153 day => $today->day(),
154 month => $today->month(),
155 year => $today->year(),
156 title => "$today",
157 description => "$today",
160 is( Koha::Calendar->new( branchcode => $branch_2 )->is_holiday( $today ), 1, "Today is a holiday for $branch_2" );
161 is( Koha::Calendar->new( branchcode => $branch_1 )->is_holiday( $today ), 0, "Today is not a holiday for $branch_1");
163 $schema->storage->txn_rollback;
165 subtest 'copy_to_branch' => sub {
167 plan tests => 8;
169 $schema->storage->txn_begin;
171 my $branch1 = $builder->build( { source => 'Branch' } )->{ branchcode };
172 my $calendar1 = C4::Calendar->new( branchcode => $branch1 );
173 my $sunday = dt_from_string("2020-03-15");
174 $calendar1->insert_week_day_holiday(
175 weekday => 0,
176 title => '',
177 description => 'Sundays',
180 my $day_month = dt_from_string("2020-03-17");
181 $calendar1->insert_day_month_holiday(
182 day => $day_month->day(),
183 month => $day_month->month(),
184 year => $day_month->year(),
185 title => '',
186 description => "",
189 my $future_date = dt_from_string("9999-12-31");
190 $calendar1->insert_single_holiday(
191 day => $future_date->day(),
192 month => $future_date->month(),
193 year => $future_date->year(),
194 title => "",
195 description => "",
198 my $future_exception = dt_from_string("9999-12-30");
199 $calendar1->insert_exception_holiday(
200 day => $future_exception->day(),
201 month => $future_exception->month(),
202 year => $future_exception->year(),
203 title => "",
204 description => "",
207 my $past_date = dt_from_string("2019-11-20");
208 $calendar1->insert_single_holiday(
209 day => $past_date->day(),
210 month => $past_date->month(),
211 year => $past_date->year(),
212 title => "",
213 description => "",
216 my $past_exception = dt_from_string("2020-03-09");
217 $calendar1->insert_exception_holiday(
218 day => $past_exception->day(),
219 month => $past_exception->month(),
220 year => $past_exception->year(),
221 title => "",
222 description => "",
225 my $branch2 = $builder->build( { source => 'Branch' } )->{branchcode};
227 C4::Calendar->new( branchcode => $branch1 )->copy_to_branch( $branch2 );
229 my $calendar2 = C4::Calendar->new( branchcode => $branch2 );
230 my $exceptions = $calendar2->get_exception_holidays;
232 is( $calendar2->isHoliday( $sunday->day, $sunday->month, $sunday->year ), 1, "Weekday holiday copied to branch 2" );
233 is( $calendar2->isHoliday( $day_month->day, $day_month->month, $day_month->year ), 1, "Day/month holiday copied to branch 2" );
234 is( $calendar2->isHoliday( $future_date->day, $future_date->month, $future_date->year ), 1, "Single holiday copied to branch 2" );
235 is( ( grep { $_->{date} eq "9999-12-30"} values %$exceptions ), 1, "Exception holiday copied to branch 2" );
236 is( $calendar2->isHoliday( $past_date->day, $past_date->month, $past_date->year ), 0, "Don't copy past single holidays" );
237 is( ( grep { $_->{date} eq "2020-03-09"} values %$exceptions ), 0, "Don't copy past exception holidays " );
239 C4::Calendar->new( branchcode => $branch1 )->copy_to_branch( $branch2 );
241 #Select all rows with same values from database
242 my $dbh = C4::Context->dbh;
243 my $get_repeatable_holidays = "SELECT a.* FROM repeatable_holidays a
244 JOIN (SELECT branchcode, weekday, day, month, COUNT(*)
245 FROM repeatable_holidays
246 GROUP BY branchcode, weekday, day, month HAVING count(*) > 1) b
247 ON a.branchcode = b.branchcode
248 AND ( a.weekday = b.weekday OR (a.day = b.day AND a.month = b.month))
249 ORDER BY a.branchcode;";
250 my $sth = $dbh->prepare($get_repeatable_holidays);
251 $sth->execute;
253 my @repeatable_holidays;
254 while(my $row = $sth->fetchrow_hashref){
255 push @repeatable_holidays, $row
258 is( scalar(@repeatable_holidays), 0, "None of the repeatable holidays were doubled");
260 my $get_special_holidays = "SELECT a.* FROM special_holidays a
261 JOIN (SELECT branchcode, day, month, year, isexception, COUNT(*)
262 FROM special_holidays
263 GROUP BY branchcode, day, month, year, isexception HAVING count(*) > 1) b
264 ON a.branchcode = b.branchcode
265 AND a.day = b.day AND a.month = b.month AND a.year = b.year AND a.isexception = b.isexception
266 ORDER BY a.branchcode;";
267 $sth = $dbh->prepare($get_special_holidays);
268 $sth->execute;
270 my @special_holidays;
271 while(my $row = $sth->fetchrow_hashref){
272 push @special_holidays, $row
275 is( scalar(@special_holidays), 0, "None of the special holidays were doubled");
277 $schema->storage->txn_rollback;
281 # Clear cache
282 Koha::Caches->get_instance->flush_all;