Bug 20434: Update UNIMARC framework - auth (TM)
[koha.git] / t / db_dependent / Holidays.t
blob70c71d4bdfc863d7dcbb5a4c9f2469e9ef4e02eb
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 => 16;
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 'exception_holidays() 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 = $calendar->exception_holidays->iterator->next;
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 # Few tests for exception holidays
164 my ( $diff, $cal, $special );
165 $dbh->do("DELETE FROM special_holidays");
166 _add_exception( $today, $branch_1, 'Today' );
167 $cal = Koha::Calendar->new( branchcode => $branch_1 );
168 $special = $cal->exception_holidays;
169 is( $special->count, 1, 'One exception holiday added' );
171 my $tomorrow= dt_from_string();
172 $tomorrow->add_duration( DateTime::Duration->new(days => 1) );
173 _add_exception( $tomorrow, $branch_1, 'Tomorrow' );
174 $cal = Koha::Calendar->new( branchcode => $branch_1 );
175 $special = $cal->exception_holidays;
176 is( $special->count, 2, 'Set of exception holidays contains two dates' );
178 $diff = $today->delta_days( $special->min )->in_units('days');
179 is( $diff, 0, 'Lowest exception holiday is today' );
180 $diff = $tomorrow->delta_days( $special->max )->in_units('days');
181 is( $diff, 0, 'Highest exception holiday is tomorrow' );
183 C4::Calendar->new( branchcode => $branch_1 )->delete_holiday(
184 weekday => $tomorrow->day_of_week,
185 day => $tomorrow->day,
186 month => $tomorrow->month,
187 year => $tomorrow->year,
189 $cal = Koha::Calendar->new( branchcode => $branch_1 );
190 $special = $cal->exception_holidays;
191 is( $special->count, 1, 'Set of exception holidays back to one' );
193 sub _add_exception {
194 my ( $dt, $branch, $descr ) = @_;
195 C4::Calendar->new( branchcode => $branch )->insert_exception_holiday(
196 day => $dt->day,
197 month => $dt->month,
198 year => $dt->year,
199 title => $descr,
200 description => $descr,
204 $schema->storage->txn_rollback;