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.

40 lines
1.1 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
visit page_path
end
it_behaves_like 'variable list'
2019-10-12 21:52:04 +05:30
2021-01-29 00:20:46 +05:30
it 'adds a new variable with an environment scope' do
2021-06-08 01:23:25 +05:30
click_button('Add variable')
2019-10-12 21:52:04 +05:30
2021-01-29 00:20:46 +05:30
page.within('#add-ci-variable') do
2021-12-11 22:18:48 +05:30
fill_in 'Key', with: 'akey'
2021-01-29 00:20:46 +05:30
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
2019-10-12 21:52:04 +05:30
2021-01-29 00:20:46 +05:30
click_button('Add variable')
2019-10-12 21:52:04 +05:30
end
wait_for_requests
2021-04-17 20:07:23 +05:30
page.within('[data-testid="ci-variable-table"]') do
2021-01-29 00:20:46 +05:30
expect(find('.js-ci-variable-row:first-child [data-label="Environments"]').text).to eq('review/*')
2019-10-12 21:52:04 +05:30
end
end
2018-03-17 18:26:18 +05:30
end