2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Project > Settings > CI/CD > Container registry tag expiration policy', :js do
|
2021-01-03 14:25:43 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project, reload: true) { create(:project, namespace: user.namespace) }
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
let(:container_registry_enabled) { true }
|
2021-10-27 15:23:28 +05:30
|
|
|
let(:container_registry_enabled_on_project) { ProjectFeature::ENABLED }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
subject { visit project_settings_packages_and_registries_path(project) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
before do
|
2021-10-27 15:23:28 +05:30
|
|
|
project.project_feature.update!(container_registry_access_level: container_registry_enabled_on_project)
|
2021-09-30 23:02:18 +05:30
|
|
|
project.container_expiration_policy.update!(enabled: true)
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
sign_in(user)
|
|
|
|
stub_container_registry_config(enabled: container_registry_enabled)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'as owner' do
|
|
|
|
it 'shows available section' do
|
|
|
|
subject
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
settings_block = find('[data-testid="registry-settings-app"]')
|
|
|
|
expect(settings_block).to have_text 'Clean up image tags'
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it 'saves cleanup policy submit the form' do
|
|
|
|
subject
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
within '[data-testid="registry-settings-app"]' do
|
|
|
|
select('Every day', from: 'Run cleanup')
|
|
|
|
select('50 tags per image name', from: 'Keep the most recent:')
|
|
|
|
fill_in('Keep tags matching:', with: 'stable')
|
|
|
|
select('7 days', from: 'Remove tags older than:')
|
|
|
|
fill_in('Remove tags matching:', with: '.*-production')
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
submit_button = find('[data-testid="save-button"')
|
|
|
|
expect(submit_button).not_to be_disabled
|
|
|
|
submit_button.click
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
expect(find('.gl-toast')).to have_content('Cleanup policy successfully saved.')
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it 'does not save cleanup policy submit form with invalid regex' do
|
|
|
|
subject
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
within '[data-testid="registry-settings-app"]' do
|
|
|
|
fill_in('Remove tags matching:', with: '*-production')
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
submit_button = find('[data-testid="save-button"')
|
|
|
|
expect(submit_button).not_to be_disabled
|
|
|
|
submit_button.click
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(find('.gl-toast')).to have_content('Something went wrong while updating the cleanup policy.')
|
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'with a project without expiration policy' do
|
2022-05-07 20:08:51 +05:30
|
|
|
before do
|
|
|
|
project.container_expiration_policy.destroy!
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with container_expiration_policies_enable_historic_entries enabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(container_expiration_policies_enable_historic_entries: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays the related section' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
within '[data-testid="registry-settings-app"]' do
|
|
|
|
expect(find('[data-testid="enable-toggle"]')).to have_content('Disabled - Tags will not be automatically deleted.')
|
|
|
|
end
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
context 'with container_expiration_policies_enable_historic_entries disabled' do
|
2021-09-30 23:02:18 +05:30
|
|
|
before do
|
2022-05-07 20:08:51 +05:30
|
|
|
stub_application_setting(container_expiration_policies_enable_historic_entries: false)
|
2021-09-30 23:02:18 +05:30
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
it 'does not display the related section' do
|
2021-01-03 14:25:43 +05:30
|
|
|
subject
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
within '[data-testid="registry-settings-app"]' do
|
2022-05-07 20:08:51 +05:30
|
|
|
expect(find('.gl-alert-title')).to have_content('Cleanup policy for tags is disabled')
|
2021-09-30 23:02:18 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'when registry is disabled' do
|
|
|
|
let(:container_registry_enabled) { false }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it 'does not exists' do
|
|
|
|
subject
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(page).not_to have_selector('[data-testid="registry-settings-app"]')
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'when container registry is disabled on project' do
|
2021-10-27 15:23:28 +05:30
|
|
|
let(:container_registry_enabled_on_project) { ProjectFeature::DISABLED }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
it 'does not exists' do
|
|
|
|
subject
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(page).not_to have_selector('[data-testid="registry-settings-app"]')
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|