-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for symbols in #shift_age
Resolves issue: #46
- Loading branch information
Showing
2 changed files
with
43 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,67 @@ | ||
# coding: US-ASCII | ||
# frozen_string_literal: false | ||
require 'logger' | ||
require 'time' | ||
require "logger" | ||
require "time" | ||
|
||
class TestLogPeriod < Test::Unit::TestCase | ||
def test_next_rotate_time | ||
time = Time.parse("2019-07-18 13:52:02") | ||
|
||
daily_result = Logger::Period.next_rotate_time(time, 'daily') | ||
next_day = Time.parse("2019-07-19 00:00:00") | ||
assert_equal(next_day, daily_result) | ||
assert_next_rotate_time_words(time, "2019-07-19 00:00:00", ["daily", :daily]) | ||
assert_next_rotate_time_words(time, "2019-07-21 00:00:00", ["weekly", :weekly]) | ||
assert_next_rotate_time_words(time, "2019-08-01 00:00:00", ["monthly", :monthly]) | ||
|
||
weekly_result = Logger::Period.next_rotate_time(time, 'weekly') | ||
next_week = Time.parse("2019-07-21 00:00:00") | ||
assert_equal(next_week, weekly_result) | ||
|
||
monthly_result = Logger::Period.next_rotate_time(time, 'monthly') | ||
next_month = Time.parse("2019-08-1 00:00:00") | ||
assert_equal(next_month, monthly_result) | ||
|
||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, 'invalid') } | ||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, "invalid") } | ||
end | ||
|
||
def test_next_rotate_time_extreme_cases | ||
# First day of Month and Saturday | ||
time = Time.parse("2018-07-01 00:00:00") | ||
|
||
daily_result = Logger::Period.next_rotate_time(time, 'daily') | ||
next_day = Time.parse("2018-07-02 00:00:00") | ||
assert_equal(next_day, daily_result) | ||
|
||
weekly_result = Logger::Period.next_rotate_time(time, 'weekly') | ||
next_week = Time.parse("2018-07-08 00:00:00") | ||
assert_equal(next_week, weekly_result) | ||
assert_next_rotate_time_words(time, "2018-07-02 00:00:00", ["daily", :daily]) | ||
assert_next_rotate_time_words(time, "2018-07-08 00:00:00", ["weekly", :weekly]) | ||
assert_next_rotate_time_words(time, "2018-08-01 00:00:00", ["monthly", :monthly]) | ||
|
||
monthly_result = Logger::Period.next_rotate_time(time, 'monthly') | ||
next_month = Time.parse("2018-08-1 00:00:00") | ||
assert_equal(next_month, monthly_result) | ||
|
||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, 'invalid') } | ||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, "invalid") } | ||
end | ||
|
||
def test_previous_period_end | ||
time = Time.parse("2019-07-18 13:52:02") | ||
|
||
daily_result = Logger::Period.previous_period_end(time, 'daily') | ||
day_ago = Time.parse("2019-07-17 23:59:59") | ||
assert_equal(day_ago, daily_result) | ||
|
||
weekly_result = Logger::Period.previous_period_end(time, 'weekly') | ||
week_ago = Time.parse("2019-07-13 23:59:59") | ||
assert_equal(week_ago, weekly_result) | ||
|
||
monthly_result = Logger::Period.previous_period_end(time, 'monthly') | ||
month_ago = Time.parse("2019-06-30 23:59:59") | ||
assert_equal(month_ago, monthly_result) | ||
assert_previous_period_end_words(time, "2019-07-17 23:59:59", ["daily", :daily]) | ||
assert_previous_period_end_words(time, "2019-07-13 23:59:59", ["weekly", :weekly]) | ||
assert_previous_period_end_words(time, "2019-06-30 23:59:59", ["monthly", :monthly]) | ||
|
||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, 'invalid') } | ||
assert_raise(ArgumentError) { Logger::Period.previous_period_end(time, "invalid") } | ||
end | ||
|
||
def test_previous_period_end_extreme_cases | ||
# First day of Month and Saturday | ||
time = Time.parse("2018-07-01 00:00:00") | ||
previous_date = "2018-06-30 23:59:59" | ||
|
||
daily_result = Logger::Period.previous_period_end(time, 'daily') | ||
day_ago = Time.parse("2018-06-30 23:59:59") | ||
assert_equal(day_ago, daily_result) | ||
assert_previous_period_end_words(time, previous_date, ["daily", :daily]) | ||
assert_previous_period_end_words(time, previous_date, ["weekly", :weekly]) | ||
assert_previous_period_end_words(time, previous_date, ["monthly", :monthly]) | ||
|
||
weekly_result = Logger::Period.previous_period_end(time, 'weekly') | ||
week_ago = Time.parse("2018-06-30 23:59:59") | ||
assert_equal(week_ago, weekly_result) | ||
assert_raise(ArgumentError) { Logger::Period.previous_period_end(time, "invalid") } | ||
end | ||
|
||
private | ||
|
||
monthly_result = Logger::Period.previous_period_end(time, 'monthly') | ||
month_ago = Time.parse("2018-06-30 23:59:59") | ||
assert_equal(month_ago, monthly_result) | ||
def assert_next_rotate_time_words(time, next_date, words) | ||
assert_time_words(:next_rotate_time, time, next_date, words) | ||
end | ||
|
||
def assert_previous_period_end_words(time, previous_date, words) | ||
assert_time_words(:previous_period_end, time, previous_date, words) | ||
end | ||
|
||
assert_raise(ArgumentError) { Logger::Period.next_rotate_time(time, 'invalid') } | ||
def assert_time_words(method, time, date, words) | ||
words.each do |word| | ||
daily_result = Logger::Period.public_send(method, time, word) | ||
expected_result = Time.parse(date) | ||
assert_equal(expected_result, daily_result) | ||
end | ||
end | ||
end |