2017-04-04 05:49:52 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Ci::CronParser do
|
|
|
|
shared_examples_for "returns time in the future" do
|
|
|
|
it { is_expected.to be > Time.now }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#next_time_from' do
|
2017-04-04 12:54:45 -04:00
|
|
|
subject { described_class.new(cron, cron_timezone).next_time_from(Time.now) }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
2017-04-04 12:54:45 -04:00
|
|
|
context 'when cron and cron_timezone are valid' do
|
2017-04-04 05:49:52 -04:00
|
|
|
context 'when specific time' do
|
|
|
|
let(:cron) { '3 4 5 6 *' }
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'UTC' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
|
|
|
it 'returns exact time' do
|
|
|
|
expect(subject.min).to eq(3)
|
|
|
|
expect(subject.hour).to eq(4)
|
|
|
|
expect(subject.day).to eq(5)
|
|
|
|
expect(subject.month).to eq(6)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when specific day of week' do
|
|
|
|
let(:cron) { '* * * * 0' }
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'UTC' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
|
|
|
it 'returns exact day of week' do
|
|
|
|
expect(subject.wday).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when slash used' do
|
|
|
|
let(:cron) { '*/10 */6 */10 */10 *' }
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'UTC' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
|
|
|
it 'returns specific time' do
|
|
|
|
expect(subject.min).to be_in([0, 10, 20, 30, 40, 50])
|
|
|
|
expect(subject.hour).to be_in([0, 6, 12, 18])
|
|
|
|
expect(subject.day).to be_in([1, 11, 21, 31])
|
|
|
|
expect(subject.month).to be_in([1, 11])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when range used' do
|
|
|
|
let(:cron) { '0,20,40 * 1-5 * *' }
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'UTC' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
|
|
|
it 'returns specific time' do
|
|
|
|
expect(subject.min).to be_in([0, 20, 40])
|
|
|
|
expect(subject.day).to be_in((1..5).to_a)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-03 11:23:20 -04:00
|
|
|
context 'when cron_timezone is TZInfo format' do
|
|
|
|
before do
|
|
|
|
allow(Time).to receive(:zone)
|
|
|
|
.and_return(ActiveSupport::TimeZone['UTC'])
|
|
|
|
end
|
2017-04-04 05:49:52 -04:00
|
|
|
|
2017-05-03 11:23:20 -04:00
|
|
|
let(:hour_in_utc) do
|
|
|
|
ActiveSupport::TimeZone[cron_timezone]
|
|
|
|
.now.change(hour: 0).in_time_zone('UTC').hour
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron_timezone is US/Pacific' do
|
|
|
|
let(:cron) { '* 0 * * *' }
|
|
|
|
let(:cron_timezone) { 'US/Pacific' }
|
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
2017-11-05 09:08:39 -05:00
|
|
|
context 'when PST (Pacific Standard Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 1, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when PDT (Pacific Daylight Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 6, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
2017-05-03 11:23:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron_timezone is ActiveSupport::TimeZone format' do
|
|
|
|
before do
|
|
|
|
allow(Time).to receive(:zone)
|
|
|
|
.and_return(ActiveSupport::TimeZone['UTC'])
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:hour_in_utc) do
|
|
|
|
ActiveSupport::TimeZone[cron_timezone]
|
|
|
|
.now.change(hour: 0).in_time_zone('UTC').hour
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron_timezone is Berlin' do
|
|
|
|
let(:cron) { '* 0 * * *' }
|
|
|
|
let(:cron_timezone) { 'Berlin' }
|
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
2017-11-05 09:08:39 -05:00
|
|
|
context 'when CET (Central European Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 1, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when CEST (Central European Summer Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 6, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
2017-05-03 11:23:20 -04:00
|
|
|
end
|
|
|
|
end
|
2017-04-04 05:49:52 -04:00
|
|
|
|
2017-05-03 11:23:20 -04:00
|
|
|
context 'when cron_timezone is Eastern Time (US & Canada)' do
|
|
|
|
let(:cron) { '* 0 * * *' }
|
|
|
|
let(:cron_timezone) { 'Eastern Time (US & Canada)' }
|
|
|
|
|
|
|
|
it_behaves_like "returns time in the future"
|
|
|
|
|
2017-11-05 09:08:39 -05:00
|
|
|
context 'when EST (Eastern Standard Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 1, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when EDT (Eastern Daylight Time)' do
|
|
|
|
it 'converts time in server time zone' do
|
|
|
|
Timecop.freeze(Time.utc(2017, 6, 1)) do
|
|
|
|
expect(subject.hour).to eq(hour_in_utc)
|
|
|
|
end
|
|
|
|
end
|
2017-05-03 11:23:20 -04:00
|
|
|
end
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-04 12:54:45 -04:00
|
|
|
context 'when cron and cron_timezone are invalid' do
|
2017-04-04 05:49:52 -04:00
|
|
|
let(:cron) { 'invalid_cron' }
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'invalid_cron_timezone' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
2017-05-03 11:23:20 -04:00
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron syntax is quoted' do
|
|
|
|
let(:cron) { "'0 * * * *'" }
|
|
|
|
let(:cron_timezone) { 'UTC' }
|
|
|
|
|
|
|
|
it { expect(subject).to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron syntax is rufus-scheduler syntax' do
|
|
|
|
let(:cron) { 'every 3h' }
|
|
|
|
let(:cron_timezone) { 'UTC' }
|
|
|
|
|
|
|
|
it { expect(subject).to be_nil }
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-04 06:14:49 -04:00
|
|
|
describe '#cron_valid?' do
|
|
|
|
subject { described_class.new(cron, Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE).cron_valid? }
|
|
|
|
|
|
|
|
context 'when cron is valid' do
|
|
|
|
let(:cron) { '* * * * *' }
|
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
|
|
|
|
2017-04-04 06:14:49 -04:00
|
|
|
context 'when cron is invalid' do
|
|
|
|
let(:cron) { '*********' }
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
2017-05-03 11:23:20 -04:00
|
|
|
|
|
|
|
context 'when cron syntax is quoted' do
|
|
|
|
let(:cron) { "'0 * * * *'" }
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
2017-04-04 06:14:49 -04:00
|
|
|
end
|
|
|
|
|
2017-04-04 12:54:45 -04:00
|
|
|
describe '#cron_timezone_valid?' do
|
|
|
|
subject { described_class.new(Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_CRON, cron_timezone).cron_timezone_valid? }
|
2017-04-04 06:14:49 -04:00
|
|
|
|
|
|
|
context 'when cron is valid' do
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'Europe/Istanbul' }
|
2017-04-04 06:14:49 -04:00
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when cron is invalid' do
|
2017-04-04 12:54:45 -04:00
|
|
|
let(:cron_timezone) { 'Invalid-zone' }
|
2017-04-04 05:49:52 -04:00
|
|
|
|
2017-04-04 06:14:49 -04:00
|
|
|
it { is_expected.to eq(false) }
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
2017-05-03 11:23:20 -04:00
|
|
|
|
|
|
|
context 'when cron_timezone is ActiveSupport::TimeZone format' do
|
|
|
|
let(:cron_timezone) { 'Eastern Time (US & Canada)' }
|
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
2017-04-04 05:49:52 -04:00
|
|
|
end
|
|
|
|
end
|