debian-mirror-gitlab/spec/features/project_variables_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.4 KiB
Ruby
Raw Normal View History

2019-09-04 21:01:54 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2023-06-20 00:43:36 +05:30
RSpec.describe 'Project variables', :js, feature_category: :secrets_management do
2018-03-17 18:26:18 +05:30
let(:user) { create(:user) }
let(:project) { create(:project) }
2019-07-07 11:18:12 +05:30
let(:variable) { create(:ci_variable, key: 'test_key', value: 'test_value', masked: true) }
2018-03-17 18:26:18 +05:30
let(:page_path) { project_settings_ci_cd_path(project) }
before do
sign_in(user)
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
project.variables << variable
2023-01-13 00:05:48 +05:30
visit page_path
wait_for_requests
2018-03-17 18:26:18 +05:30
end
2023-05-27 22:25:52 +05:30
context 'when ci_variables_pages FF is enabled' do
it_behaves_like 'variable list'
it_behaves_like 'variable list pagination', :ci_variable
end
context 'when ci_variables_pages FF is disabled' do
before do
stub_feature_flags(ci_variables_pages: false)
end
it_behaves_like 'variable list'
end
2019-10-12 21:52:04 +05:30
2023-01-13 00:05:48 +05:30
it 'adds a new variable with an environment scope' do
click_button('Add variable')
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
page.within('#add-ci-variable') do
fill_in 'Key', with: 'akey'
find('#ci-variable-value').set('akey_value')
2023-03-17 16:20:25 +05:30
click_button('All (default)')
fill_in 'Search', with: 'review/*'
2023-01-13 00:05:48 +05:30
find('[data-testid="create-wildcard-button"]').click
2022-10-11 01:57:18 +05:30
click_button('Add variable')
2023-01-13 00:05:48 +05:30
end
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
wait_for_requests
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
page.within('[data-testid="ci-variable-table"]') do
expect(find('.js-ci-variable-row:first-child [data-label="Environments"]').text).to eq('review/*')
2022-10-11 01:57:18 +05:30
end
end
2018-03-17 18:26:18 +05:30
end