72 lines
2.4 KiB
Ruby
72 lines
2.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ContainerExpirationPoliciesHelper do
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
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' },
|
|
{ key: 10, label: '10 tags per image name', default: true },
|
|
{ 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 = [
|
|
{ key: '1d', label: 'Every day', default: true },
|
|
{ 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' },
|
|
{ key: '30d', label: '30 days until tags are automatically removed' },
|
|
{ key: '90d', label: '90 days until tags are automatically removed', default: true }
|
|
]
|
|
|
|
expect(helper.older_than_options).to eq(expected_result)
|
|
end
|
|
end
|
|
|
|
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
|
|
end
|