summaryrefslogtreecommitdiff
path: root/spec/features/projects/settings/registry_settings_spec.rb
blob: 8e2f97fd6a0ecf9f3474ad7ce99470f6323be4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Project > Settings > CI/CD > Container registry tag expiration policy', :js do
  let(:user) { create(:user) }
  let(:project) { create(:project, namespace: user.namespace, container_registry_enabled: container_registry_enabled) }
  let(:container_registry_enabled) { true }

  before do
    sign_in(user)
    stub_container_registry_config(enabled: true)
    stub_feature_flags(new_variables_ui: false)
  end

  context 'as owner' do
    before do
      visit project_settings_ci_cd_path(project)
    end

    it 'shows available section' do
      settings_block = find('#js-registry-policies')
      expect(settings_block).to have_text 'Cleanup policy for tags'
    end

    it 'saves cleanup policy submit the form' do
      within '#js-registry-policies' do
        within '.card-body' do
          select('7 days until tags are automatically removed', from: 'Expiration interval:')
          select('Every day', from: 'Expiration schedule:')
          select('50 tags per image name', from: 'Number of tags to retain:')
          fill_in('Tags with names matching this regex pattern will expire:', with: '.*-production')
        end
        submit_button = find('.card-footer .btn.btn-success')
        expect(submit_button).not_to be_disabled
        submit_button.click
      end
      toast = find('.gl-toast')
      expect(toast).to have_content('Cleanup policy successfully saved.')
    end

    it 'does not save cleanup policy submit form with invalid regex' do
      within '#js-registry-policies' do
        within '.card-body' do
          fill_in('Tags with names matching this regex pattern will expire:', with: '*-production')
        end
        submit_button = find('.card-footer .btn.btn-success')
        expect(submit_button).not_to be_disabled
        submit_button.click
      end
      toast = find('.gl-toast')
      expect(toast).to have_content('Something went wrong while updating the cleanup policy.')
    end
  end

  context 'when registry is disabled' do
    before do
      stub_container_registry_config(enabled: false)
      visit project_settings_ci_cd_path(project)
    end

    it 'does not exists' do
      expect(page).not_to have_selector('#js-registry-policies')
    end
  end

  context 'when container registry is disabled on project' do
    let(:container_registry_enabled) { false }

    before do
      visit project_settings_ci_cd_path(project)
    end

    it 'does not exists' do
      expect(page).not_to have_selector('#js-registry-policies')
    end
  end
end