annotate test/unit/lib/redmine/utils/date_calculation.rb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents e248c7af89ec
children
rev   line source
Chris@1115 1 # Redmine - project management software
Chris@1494 2 # Copyright (C) 2006-2014 Jean-Philippe Lang
Chris@1115 3 #
Chris@1115 4 # This program is free software; you can redistribute it and/or
Chris@1115 5 # modify it under the terms of the GNU General Public License
Chris@1115 6 # as published by the Free Software Foundation; either version 2
Chris@1115 7 # of the License, or (at your option) any later version.
Chris@1115 8 #
Chris@1115 9 # This program is distributed in the hope that it will be useful,
Chris@1115 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@1115 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@1115 12 # GNU General Public License for more details.
Chris@1115 13 #
Chris@1115 14 # You should have received a copy of the GNU General Public License
Chris@1115 15 # along with this program; if not, write to the Free Software
Chris@1115 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@1115 17
Chris@1115 18 require File.expand_path('../../../../../test_helper', __FILE__)
Chris@1115 19
Chris@1115 20 class Redmine::Utils::DateCalculationTest < ActiveSupport::TestCase
Chris@1115 21 include Redmine::Utils::DateCalculation
Chris@1115 22
Chris@1115 23 def test_working_days_without_non_working_week_days
Chris@1115 24 with_settings :non_working_week_days => [] do
Chris@1115 25 assert_working_days 18, '2012-10-09', '2012-10-27'
Chris@1115 26 assert_working_days 6, '2012-10-09', '2012-10-15'
Chris@1115 27 assert_working_days 5, '2012-10-09', '2012-10-14'
Chris@1115 28 assert_working_days 3, '2012-10-09', '2012-10-12'
Chris@1115 29 assert_working_days 3, '2012-10-14', '2012-10-17'
Chris@1115 30 assert_working_days 16, '2012-10-14', '2012-10-30'
Chris@1115 31 end
Chris@1115 32 end
Chris@1115 33
Chris@1115 34 def test_working_days_with_non_working_week_days
Chris@1115 35 with_settings :non_working_week_days => %w(6 7) do
Chris@1115 36 assert_working_days 14, '2012-10-09', '2012-10-27'
Chris@1115 37 assert_working_days 4, '2012-10-09', '2012-10-15'
Chris@1115 38 assert_working_days 4, '2012-10-09', '2012-10-14'
Chris@1115 39 assert_working_days 3, '2012-10-09', '2012-10-12'
Chris@1115 40 assert_working_days 8, '2012-10-09', '2012-10-19'
Chris@1115 41 assert_working_days 8, '2012-10-11', '2012-10-23'
Chris@1115 42 assert_working_days 2, '2012-10-14', '2012-10-17'
Chris@1115 43 assert_working_days 11, '2012-10-14', '2012-10-30'
Chris@1115 44 end
Chris@1115 45 end
Chris@1115 46
Chris@1115 47 def test_add_working_days_without_non_working_week_days
Chris@1115 48 with_settings :non_working_week_days => [] do
Chris@1115 49 assert_add_working_days '2012-10-10', '2012-10-10', 0
Chris@1115 50 assert_add_working_days '2012-10-11', '2012-10-10', 1
Chris@1115 51 assert_add_working_days '2012-10-12', '2012-10-10', 2
Chris@1115 52 assert_add_working_days '2012-10-13', '2012-10-10', 3
Chris@1115 53 assert_add_working_days '2012-10-25', '2012-10-10', 15
Chris@1115 54 end
Chris@1115 55 end
Chris@1115 56
Chris@1115 57 def test_add_working_days_with_non_working_week_days
Chris@1115 58 with_settings :non_working_week_days => %w(6 7) do
Chris@1115 59 assert_add_working_days '2012-10-10', '2012-10-10', 0
Chris@1115 60 assert_add_working_days '2012-10-11', '2012-10-10', 1
Chris@1115 61 assert_add_working_days '2012-10-12', '2012-10-10', 2
Chris@1115 62 assert_add_working_days '2012-10-15', '2012-10-10', 3
Chris@1115 63 assert_add_working_days '2012-10-31', '2012-10-10', 15
Chris@1115 64 assert_add_working_days '2012-10-19', '2012-10-09', 8
Chris@1115 65 assert_add_working_days '2012-10-23', '2012-10-11', 8
Chris@1115 66 end
Chris@1115 67 end
Chris@1115 68
Chris@1115 69 def assert_working_days(expected_days, from, to)
Chris@1115 70 assert_equal expected_days, working_days(from.to_date, to.to_date)
Chris@1115 71 end
Chris@1115 72
Chris@1115 73 def assert_add_working_days(expected_date, from, working_days)
Chris@1115 74 assert_equal expected_date.to_date, add_working_days(from.to_date, working_days)
Chris@1115 75 end
Chris@1115 76 end