Bug 15181: Rename marc21 fast add framework sql file
[koha.git] / t / db_dependent / Holidays.t
blob3080d5c0b35ea2d3b7a64d6fa4c807c2e983a903
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 => 10;
21 use t::lib::TestBuilder;
23 use C4::Context;
24 use C4::Branch;
25 use Koha::Database;
26 use Koha::DateUtils;
28 use DateTime;
29 use DateTime::TimeZone;
31 BEGIN {
32 use_ok('Koha::Calendar');
33 use_ok('C4::Calendar');
36 my $schema = Koha::Database->new->schema;
37 $schema->storage->txn_begin;
39 my $dbh = C4::Context->dbh();
41 my $builder = t::lib::TestBuilder->new();
42 # Create two fresh branches for the tests
43 my $branch_1 = $builder->build({ source => 'Branch' })->{ branchcode };
44 my $branch_2 = $builder->build({ source => 'Branch' })->{ branchcode };
46 C4::Calendar->new( branchcode => $branch_1 )->insert_week_day_holiday(
47 weekday => 0,
48 title => '',
49 description => 'Sundays',
52 my $holiday2add = dt_from_string("2015-01-01");
53 C4::Calendar->new( branchcode => $branch_1 )->insert_day_month_holiday(
54 day => $holiday2add->day(),
55 month => $holiday2add->month(),
56 year => $holiday2add->year(),
57 title => '',
58 description => "New Year's Day",
60 $holiday2add = dt_from_string("2014-12-25");
61 C4::Calendar->new( branchcode => $branch_1 )->insert_day_month_holiday(
62 day => $holiday2add->day(),
63 month => $holiday2add->month(),
64 year => $holiday2add->year(),
65 title => '',
66 description => 'Christmas',
69 my $koha_calendar = Koha::Calendar->new( branchcode => $branch_1 );
70 my $c4_calendar = C4::Calendar->new( branchcode => $branch_1 );
72 isa_ok( $koha_calendar, 'Koha::Calendar', 'Koha::Calendar class returned' );
73 isa_ok( $c4_calendar, 'C4::Calendar', 'C4::Calendar class returned' );
75 my $sunday = DateTime->new(
76 year => 2011,
77 month => 6,
78 day => 26,
80 my $monday = DateTime->new(
81 year => 2011,
82 month => 6,
83 day => 27,
85 my $christmas = DateTime->new(
86 year => 2032,
87 month => 12,
88 day => 25,
90 my $newyear = DateTime->new(
91 year => 2035,
92 month => 1,
93 day => 1,
96 is( $koha_calendar->is_holiday($sunday), 1, 'Sunday is a closed day' );
97 is( $koha_calendar->is_holiday($monday), 0, 'Monday is not a closed day' );
98 is( $koha_calendar->is_holiday($christmas), 1, 'Christmas is a closed day' );
99 is( $koha_calendar->is_holiday($newyear), 1, 'New Years day is a closed day' );
101 $dbh->do("DELETE FROM repeatable_holidays");
102 $dbh->do("DELETE FROM special_holidays");
104 my $custom_holiday = DateTime->new(
105 year => 2013,
106 month => 11,
107 day => 12,
110 my $today = dt_from_string();
111 C4::Calendar->new( branchcode => $branch_2 )->insert_single_holiday(
112 day => $today->day(),
113 month => $today->month(),
114 year => $today->year(),
115 title => "$today",
116 description => "$today",
119 is( Koha::Calendar->new( branchcode => $branch_2 )->is_holiday( $today ), 1, "Today is a holiday for $branch_2" );
120 is( Koha::Calendar->new( branchcode => $branch_1 )->is_holiday( $today ), 0, "Today is not a holiday for $branch_1");
122 $schema->storage->txn_rollback;