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.

48 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'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Project variables', :js 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
end
2022-07-23 23:45:48 +05:30
# TODO: Add same tests but with FF enabled context when
# the new graphQL app for variable settings is enabled.
context 'with disabled ff `ci_variable_settings_graphql' do
before do
stub_feature_flags(ci_variable_settings_graphql: false)
visit page_path
end
2019-10-12 21:52:04 +05:30
2022-07-23 23:45:48 +05:30
it_behaves_like 'variable list'
2019-10-12 21:52:04 +05:30
2022-07-23 23:45:48 +05:30
it 'adds a new variable with an environment scope' do
2021-01-29 00:20:46 +05:30
click_button('Add variable')
2019-10-12 21:52:04 +05:30
2022-07-23 23:45:48 +05:30
page.within('#add-ci-variable') do
fill_in 'Key', with: 'akey'
find('#ci-variable-value').set('akey_value')
find('[data-testid="environment-scope"]').click
find('[data-testid="ci-environment-search"]').set('review/*')
find('[data-testid="create-wildcard-button"]').click
click_button('Add variable')
end
wait_for_requests
2019-10-12 21:52:04 +05:30
2022-07-23 23:45: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/*')
end
2019-10-12 21:52:04 +05:30
end
end
2018-03-17 18:26:18 +05:30
end