X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2FCalendar.t;h=e390696a443145ad4fc911af2299aa04a4d5c3e9;hb=20ce110f5c656f51bad262708d4b577568c1a52a;hp=859d60b343db542661e782beb1bb0e3899ff99b4;hpb=cd44ef2dc9fa4ea5a5c138998921043b08d2ff32;p=koha.git diff --git a/t/Calendar.t b/t/Calendar.t index 859d60b343..e390696a44 100755 --- a/t/Calendar.t +++ b/t/Calendar.t @@ -1,129 +1,340 @@ -#!/usr/bin/env perl +#!/usr/bin/perl + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Test::More; +use Test::MockModule; -use strict; -use warnings; use DateTime; -use Test::More tests => 21; +use DateTime::Duration; +use Koha::Caches; use Koha::DateUtils; -BEGIN { - use_ok('Koha::Calendar'); +use t::lib::Mocks; + +use Module::Load::Conditional qw/check_install/; - # This was the only test C4 had - # Remove when no longer used - use_ok('C4::Calendar'); +BEGIN { + if ( check_install( module => 'Test::DBIx::Class' ) ) { + plan tests => 39; + } else { + plan skip_all => "Need Test::DBIx::Class" + } } -my $cal = Koha::Calendar->new( TEST_MODE => 1 ); +use_ok('Koha::Calendar'); + +use Test::DBIx::Class; + +my $db = Test::MockModule->new('Koha::Database'); +$db->mock( + _new_schema => sub { return Schema(); } +); + +# We need to mock the C4::Context->preference method for +# simplicity and re-usability of the session definition. Any +# syspref fits for syspref-agnostic tests. +my $module_context = new Test::MockModule('C4::Context'); +$module_context->mock( + 'preference', + sub { + return 'Calendar'; + } +); + +fixtures_ok [ + # weekly holidays + RepeatableHoliday => [ + [ qw( branchcode day month weekday title description) ], + [ 'MPL', undef, undef, 0, '', '' ], # sundays + [ 'MPL', undef, undef, 6, '', '' ],# saturdays + [ 'MPL', 1, 1, undef, '', ''], # new year's day + [ 'MPL', 25, 12, undef, '', ''], # chrismas + ], + # exception holidays + SpecialHoliday => [ + [qw( branchcode day month year title description isexception )], + [ 'MPL', 11, 11, 2012, '', '', 1 ], # sunday exception + [ 'MPL', 1, 6, 2011, '', '', 0 ], + [ 'MPL', 4, 7, 2012, '', '', 0 ], + [ 'CPL', 6, 8, 2012, '', '', 0 ], + ], +], "add fixtures"; + +my $cache = Koha::Caches->get_instance(); +$cache->clear_from_cache( 'single_holidays' ) ; +$cache->clear_from_cache( 'exception_holidays' ) ; + +# 'MPL' branch is arbitrary, is not used at all but is needed for initialization +my $cal = Koha::Calendar->new( branchcode => 'MPL' ); isa_ok( $cal, 'Koha::Calendar', 'Calendar class returned' ); my $saturday = DateTime->new( - year => 2011, - month => 6, - day => 25, - time_zone => 'Europe/London', + year => 2012, + month => 11, + day => 24, ); + my $sunday = DateTime->new( - year => 2011, - month => 6, - day => 26, - time_zone => 'Europe/London', + year => 2012, + month => 11, + day => 25, ); + my $monday = DateTime->new( - year => 2011, - month => 6, - day => 27, - time_zone => 'Europe/London', + year => 2012, + month => 11, + day => 26, ); -my $bloomsday = DateTime->new( - year => 2011, - month => 6, - day => 16, - time_zone => 'Europe/London', -); # should be a holiday -my $special = DateTime->new( + +my $new_year = DateTime->new( + year => 2013, + month => 1, + day => 1, +); + +my $single_holiday = DateTime->new( year => 2011, month => 6, day => 1, - time_zone => 'Europe/London', ); # should be a holiday + my $notspecial = DateTime->new( year => 2011, month => 6, - day => 2, - time_zone => 'Europe/London', + day => 2 ); # should NOT be a holiday -is( $cal->is_holiday($sunday), 1, 'Sunday is a closed day' ); # wee free test; -is( $cal->is_holiday($monday), 0, 'Monday is not a closed day' ); # alas -is( $cal->is_holiday($bloomsday), 1, 'month/day closed day test' ); -is( $cal->is_holiday($special), 1, 'special closed day test' ); -is( $cal->is_holiday($notspecial), 0, 'open day test' ); - -my $dt = $cal->addDate( $saturday, 1, 'days' ); -is( $dt->day_of_week, 1, 'addDate skips closed Sunday' ); - -$dt = $cal->addDate( $bloomsday, -1 ); -is( $dt->ymd(), '2011-06-15', 'Negative call to addDate' ); - -my $test_dt = DateTime->new( # Monday +my $sunday_exception = DateTime->new( year => 2012, - month => 7, - day => 23, - hour => 11, - minute => 53, - time_zone => 'Europe/London', + month => 11, + day => 11 ); -my $later_dt = DateTime->new( # Monday - year => 2012, - month => 9, - day => 17, - hour => 17, - minute => 30, - time_zone => 'Europe/London', +my $day_after_christmas = DateTime->new( + year => 2012, + month => 12, + day => 26 +); # for testing negative addDate + +my $holiday_for_another_branch = DateTime->new( + year => 2012, + month => 8, + day => 6, # This is a monday ); -my $daycount = $cal->days_between( $test_dt, $later_dt ); -cmp_ok( $daycount->in_units('days'), - '==', 48, 'days_between calculates correctly' ); - -my $ret = $cal->addDate( $test_dt, 1, 'days' ); - -cmp_ok( $ret->ymd(), 'eq', '2012-07-24', 'Simple Single Day Add (Calendar)`' ); - -$ret = $cal->addDate( $test_dt, 7, 'days' ); -cmp_ok( $ret->ymd(), 'eq', '2012-07-31', 'Add 7 days Calendar mode' ); -$cal->set_daysmode('Datedue'); -$ret = $cal->addDate( $test_dt, 7, 'days' ); -cmp_ok( $ret->ymd(), 'eq', '2012-07-30', 'Add 7 days Datedue mode' ); -$cal->set_daysmode('Days'); -$ret = $cal->addDate( $test_dt, 7, 'days' ); -cmp_ok( $ret->ymd(), 'eq', '2012-07-30', 'Add 7 days Days mode' ); -$cal->set_daysmode('Calendar'); - -# example tests for bug report -$cal->clear_weekly_closed_days(); - -$daycount = $cal->days_between( dt_from_string('2012-01-10'), - dt_from_string("2012-05-05") )->in_units('days'); -cmp_ok( $daycount, '==', 116, 'test larger intervals' ); -$daycount = $cal->days_between( dt_from_string("2012-01-01"), - dt_from_string("2012-05-05") )->in_units('days'); -cmp_ok( $daycount, '==', 125, 'test positive intervals' ); -my $daycount2 = $cal->days_between( dt_from_string("2012-05-05"), - dt_from_string("2012-01-01") )->in_units('days'); -cmp_ok( $daycount2, '==', $daycount, 'test parameter order not relevant' ); -$daycount = $cal->days_between( dt_from_string("2012-07-01"), - dt_from_string("2012-07-15") )->in_units('days'); -cmp_ok( $daycount, '==', 14, 'days_between calculates correctly' ); -$cal->add_holiday( dt_from_string('2012-07-06') ); -$daycount = $cal->days_between( dt_from_string("2012-07-01"), - dt_from_string("2012-07-15") )->in_units('days'); -cmp_ok( $daycount, '==', 13, 'holiday correctly recognized' ); - -$cal->add_holiday( dt_from_string('2012-07-07') ); -$daycount = $cal->days_between( dt_from_string("2012-07-01"), - dt_from_string("2012-07-15") )->in_units('days'); -cmp_ok( $daycount, '==', 12, 'multiple holidays correctly recognized' ); +{ # Syspref-agnostic tests + is ( $saturday->day_of_week, 6, '\'$saturday\' is actually a saturday (6th day of week)'); + is ( $sunday->day_of_week, 7, '\'$sunday\' is actually a sunday (7th day of week)'); + is ( $monday->day_of_week, 1, '\'$monday\' is actually a monday (1st day of week)'); + is ( $cal->is_holiday($saturday), 1, 'Saturday is a closed day' ); + is ( $cal->is_holiday($sunday), 1, 'Sunday is a closed day' ); + is ( $cal->is_holiday($monday), 0, 'Monday is not a closed day' ); + is ( $cal->is_holiday($new_year), 1, 'Month/Day closed day test (New year\'s day)' ); + is ( $cal->is_holiday($single_holiday), 1, 'Single holiday closed day test' ); + is ( $cal->is_holiday($notspecial), 0, 'Fixed single date that is not a holiday test' ); + is ( $cal->is_holiday($sunday_exception), 0, 'Exception holiday is not a closed day test' ); + is ( $cal->is_holiday($holiday_for_another_branch), 0, 'Holiday defined for another branch should not be defined as an holiday' ); +} + +{ # Bugzilla #8966 - is_holiday truncates referenced date + my $later_dt = DateTime->new( # Monday + year => 2012, + month => 9, + day => 17, + hour => 17, + minute => 30, + time_zone => 'Europe/London', + ); + + + is( $cal->is_holiday($later_dt), 0, 'bz-8966 (1/2) Apply is_holiday for the next test' ); + cmp_ok( $later_dt, 'eq', '2012-09-17T17:30:00', 'bz-8966 (2/2) Date should be the same after is_holiday' ); +} + +{ # Bugzilla #8800 - is_holiday should use truncated date for 'contains' call + my $single_holiday_time = DateTime->new( + year => 2011, + month => 6, + day => 1, + hour => 11, + minute => 2 + ); + + is( $cal->is_holiday($single_holiday_time), + $cal->is_holiday($single_holiday) , + 'bz-8800 is_holiday should truncate the date for holiday validation' ); +} + + my $one_day_dur = DateTime::Duration->new( days => 1 ); + my $two_day_dur = DateTime::Duration->new( days => 2 ); + my $seven_day_dur = DateTime::Duration->new( days => 7 ); + + my $dt = dt_from_string( '2012-07-03','iso' ); #tuesday + + my $test_dt = DateTime->new( # Monday + year => 2012, + month => 7, + day => 23, + hour => 11, + minute => 53, + ); + + my $later_dt = DateTime->new( # Monday + year => 2012, + month => 9, + day => 17, + hour => 17, + minute => 30, + time_zone => 'Europe/London', + ); + +{ ## 'Datedue' tests + + $module_context->unmock('preference'); + $module_context->mock( + 'preference', + sub { + return 'Datedue'; + } + ); + + $cal = Koha::Calendar->new( branchcode => 'MPL' ); + + is($cal->addDate( $dt, $one_day_dur, 'days' ), # tuesday + dt_from_string('2012-07-05','iso'), + 'Single day add (Datedue, matches holiday, shift)' ); + + is($cal->addDate( $dt, $two_day_dur, 'days' ), + dt_from_string('2012-07-05','iso'), + 'Two days add, skips holiday (Datedue)' ); + + cmp_ok($cal->addDate( $test_dt, $seven_day_dur, 'days' ), 'eq', + '2012-07-30T11:53:00', + 'Add 7 days (Datedue)' ); + + is( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 1, + 'addDate skips closed Sunday (Datedue)' ); + + is( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-24', + 'Negative call to addDate (Datedue)' ); + + ## Note that the days_between API says closed days are not considered. + ## This tests are here as an API test. + cmp_ok( $cal->days_between( $test_dt, $later_dt )->in_units('days'), + '==', 40, 'days_between calculates correctly (Days)' ); + + cmp_ok( $cal->days_between( $later_dt, $test_dt )->in_units('days'), + '==', 40, 'Test parameter order not relevant (Days)' ); +} + +{ ## 'Calendar' tests' + + $module_context->unmock('preference'); + $module_context->mock( + 'preference', + sub { + return 'Calendar'; + } + ); + + $cal = Koha::Calendar->new( branchcode => 'MPL' ); + + $dt = dt_from_string('2012-07-03','iso'); + + is($cal->addDate( $dt, $one_day_dur, 'days' ), + dt_from_string('2012-07-05','iso'), + 'Single day add (Calendar)' ); + + cmp_ok($cal->addDate( $test_dt, $seven_day_dur, 'days' ), 'eq', + '2012-08-01T11:53:00', + 'Add 7 days (Calendar)' ); + + is( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 1, + 'addDate skips closed Sunday (Calendar)' ); + + is( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-24', + 'Negative call to addDate (Calendar)' ); + + cmp_ok( $cal->days_between( $test_dt, $later_dt )->in_units('days'), + '==', 40, 'days_between calculates correctly (Calendar)' ); + + cmp_ok( $cal->days_between( $later_dt, $test_dt )->in_units('days'), + '==', 40, 'Test parameter order not relevant (Calendar)' ); +} + + +{ ## 'Days' tests + $module_context->unmock('preference'); + $module_context->mock( + 'preference', + sub { + return 'Days'; + } + ); + + $cal = Koha::Calendar->new( branchcode => 'MPL' ); + + $dt = dt_from_string('2012-07-03','iso'); + + is($cal->addDate( $dt, $one_day_dur, 'days' ), + dt_from_string('2012-07-04','iso'), + 'Single day add (Days)' ); + + cmp_ok($cal->addDate( $test_dt, $seven_day_dur, 'days' ),'eq', + '2012-07-30T11:53:00', + 'Add 7 days (Days)' ); + + is( $cal->addDate( $saturday, $one_day_dur, 'days' )->day_of_week, 7, + 'addDate doesn\'t skip closed Sunday (Days)' ); + + is( $cal->addDate($day_after_christmas, -1, 'days')->ymd(), '2012-12-25', + 'Negative call to addDate (Days)' ); + + ## Note that the days_between API says closed days are not considered. + ## This tests are here as an API test. + cmp_ok( $cal->days_between( $test_dt, $later_dt )->in_units('days'), + '==', 40, 'days_between calculates correctly (Days)' ); + + cmp_ok( $cal->days_between( $later_dt, $test_dt )->in_units('days'), + '==', 40, 'Test parameter order not relevant (Days)' ); + +} + +{ + $cal = Koha::Calendar->new( branchcode => 'CPL' ); + is ( $cal->is_holiday($single_holiday), 0, 'Single holiday for MPL, not CPL' ); + is ( $cal->is_holiday($holiday_for_another_branch), 1, 'Holiday defined for CPL should be defined as an holiday' ); +} + +subtest 'days_mode parameter' => sub { + plan tests => 2; + + t::lib::Mocks::mock_preference('useDaysMode', 'Days'); + my $cal = Koha::Calendar->new( branchcode => 'CPL' ); + is( $cal->{days_mode}, 'Days', q|If not set, days_mode defaults to syspref's value|); + + $cal = Koha::Calendar->new( branchcode => 'CPL', days_mode => 'Calendar' ); + is( $cal->{days_mode}, 'Calendar', q|If set, days_mode is correctly set|); +}; + +END { + $cache->clear_from_cache( 'single_holidays' ) ; + $cache->clear_from_cache( 'exception_holidays' ) ; +};