debian-mirror-gitlab/spec/helpers/container_expiration_policies_helper_spec.rb

73 lines
2.4 KiB
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ContainerExpirationPoliciesHelper do
2021-01-03 14:25:43 +05:30
using RSpec::Parameterized::TableSyntax
2020-01-01 13:55:28 +05:30
describe '#keep_n_options' do
it 'returns keep_n options formatted for dropdown usage' do
expected_result = [
{ key: 1, label: '1 tag per image name' },
{ key: 5, label: '5 tags per image name' },
2020-03-13 15:44:24 +05:30
{ key: 10, label: '10 tags per image name', default: true },
2020-01-01 13:55:28 +05:30
{ key: 25, label: '25 tags per image name' },
{ key: 50, label: '50 tags per image name' },
{ key: 100, label: '100 tags per image name' }
]
expect(helper.keep_n_options).to eq(expected_result)
end
end
describe '#cadence_options' do
it 'returns cadence options formatted for dropdown usage' do
expected_result = [
2020-03-13 15:44:24 +05:30
{ key: '1d', label: 'Every day', default: true },
2020-01-01 13:55:28 +05:30
{ key: '7d', label: 'Every week' },
{ key: '14d', label: 'Every two weeks' },
{ key: '1month', label: 'Every month' },
{ key: '3month', label: 'Every three months' }
]
expect(helper.cadence_options).to eq(expected_result)
end
end
describe '#older_than_options' do
it 'returns older_than options formatted for dropdown usage' do
expected_result = [
{ key: '7d', label: '7 days until tags are automatically removed' },
{ key: '14d', label: '14 days until tags are automatically removed' },
2020-04-22 19:07:51 +05:30
{ key: '30d', label: '30 days until tags are automatically removed' },
{ key: '90d', label: '90 days until tags are automatically removed', default: true }
2020-01-01 13:55:28 +05:30
]
expect(helper.older_than_options).to eq(expected_result)
end
end
2021-01-03 14:25:43 +05:30
describe '#container_expiration_policies_historic_entry_enabled?' do
let_it_be(:project) { build_stubbed(:project) }
subject { helper.container_expiration_policies_historic_entry_enabled?(project) }
where(:application_setting, :feature_flag, :expected_result) do
true | true | true
true | false | true
false | true | true
false | false | false
end
with_them do
before do
stub_feature_flags(container_expiration_policies_historic_entry: false)
stub_application_setting(container_expiration_policies_enable_historic_entries: application_setting)
stub_feature_flags(container_expiration_policies_historic_entry: project) if feature_flag
end
it { is_expected.to eq(expected_result) }
end
end
2020-01-01 13:55:28 +05:30
end