2015-08-25 21:42:46 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2016-04-27 07:17:17 -04:00
|
|
|
describe 'Project variables', js: true do
|
|
|
|
let(:user) { create(:user) }
|
2017-03-28 17:13:16 -04:00
|
|
|
let(:project) { create(:empty_project) }
|
2016-08-25 17:56:32 -04:00
|
|
|
let(:variable) { create(:ci_variable, key: 'test_key', value: 'test value') }
|
2016-04-27 07:17:17 -04:00
|
|
|
|
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2016-04-27 07:17:17 -04:00
|
|
|
project.team << [user, :master]
|
|
|
|
project.variables << variable
|
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_settings_ci_cd_path(project)
|
2016-04-27 07:17:17 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'shows list of variables' do
|
2016-04-27 07:17:17 -04:00
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content(variable.key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-25 07:31:21 -04:00
|
|
|
it 'adds new secret variable' do
|
2017-02-21 12:48:22 -05:00
|
|
|
fill_in('variable_key', with: 'key')
|
|
|
|
fill_in('variable_value', with: 'key value')
|
2016-04-27 07:17:17 -04:00
|
|
|
click_button('Add new variable')
|
|
|
|
|
2017-07-06 08:40:27 -04:00
|
|
|
expect(page).to have_content('Variable was successfully created.')
|
2016-04-27 07:17:17 -04:00
|
|
|
page.within('.variables-table') do
|
2017-02-21 12:48:22 -05:00
|
|
|
expect(page).to have_content('key')
|
2017-05-25 07:31:21 -04:00
|
|
|
expect(page).to have_content('No')
|
2016-08-25 17:56:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds empty variable' do
|
|
|
|
fill_in('variable_key', with: 'new_key')
|
|
|
|
fill_in('variable_value', with: '')
|
|
|
|
click_button('Add new variable')
|
|
|
|
|
2017-07-06 08:40:27 -04:00
|
|
|
expect(page).to have_content('Variable was successfully created.')
|
2016-08-25 17:56:32 -04:00
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content('new_key')
|
2016-04-27 07:17:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-25 07:31:21 -04:00
|
|
|
it 'adds new protected variable' do
|
|
|
|
fill_in('variable_key', with: 'key')
|
|
|
|
fill_in('variable_value', with: 'value')
|
|
|
|
check('Protected')
|
|
|
|
click_button('Add new variable')
|
|
|
|
|
2017-07-06 08:40:27 -04:00
|
|
|
expect(page).to have_content('Variable was successfully created.')
|
2017-05-25 07:31:21 -04:00
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content('key')
|
|
|
|
expect(page).to have_content('Yes')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-24 05:24:52 -05:00
|
|
|
it 'reveals and hides new variable' do
|
|
|
|
fill_in('variable_key', with: 'key')
|
|
|
|
fill_in('variable_value', with: 'key value')
|
|
|
|
click_button('Add new variable')
|
|
|
|
|
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content('key')
|
|
|
|
expect(page).to have_content('******')
|
|
|
|
end
|
|
|
|
|
|
|
|
click_button('Reveal Values')
|
|
|
|
|
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content('key')
|
|
|
|
expect(page).to have_content('key value')
|
|
|
|
end
|
|
|
|
|
|
|
|
click_button('Hide Values')
|
|
|
|
|
|
|
|
page.within('.variables-table') do
|
|
|
|
expect(page).to have_content('key')
|
|
|
|
expect(page).to have_content('******')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'deletes variable' do
|
2016-04-27 07:17:17 -04:00
|
|
|
page.within('.variables-table') do
|
2017-05-03 14:51:55 -04:00
|
|
|
click_on 'Remove'
|
2016-04-27 07:17:17 -04:00
|
|
|
end
|
|
|
|
|
2016-05-23 19:37:59 -04:00
|
|
|
expect(page).not_to have_selector('variables-table')
|
2016-04-27 07:17:17 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'edits variable' do
|
2016-04-27 07:17:17 -04:00
|
|
|
page.within('.variables-table') do
|
2017-05-03 14:51:55 -04:00
|
|
|
click_on 'Update'
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 12:48:32 -04:00
|
|
|
expect(page).to have_content('Update variable')
|
2017-02-21 12:48:22 -05:00
|
|
|
fill_in('variable_key', with: 'key')
|
|
|
|
fill_in('variable_value', with: 'key value')
|
2016-04-27 07:17:17 -04:00
|
|
|
click_button('Save variable')
|
2015-09-28 11:19:20 -04:00
|
|
|
|
2017-02-21 12:48:22 -05:00
|
|
|
expect(page).to have_content('Variable was successfully updated.')
|
2017-05-31 12:37:44 -04:00
|
|
|
expect(project.variables(true).first.value).to eq('key value')
|
2016-08-25 17:56:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'edits variable with empty value' do
|
|
|
|
page.within('.variables-table') do
|
2017-05-03 14:51:55 -04:00
|
|
|
click_on 'Update'
|
2016-08-25 17:56:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Update variable')
|
|
|
|
fill_in('variable_value', with: '')
|
|
|
|
click_button('Save variable')
|
|
|
|
|
2017-02-21 12:48:22 -05:00
|
|
|
expect(page).to have_content('Variable was successfully updated.')
|
2017-05-31 12:37:44 -04:00
|
|
|
expect(project.variables(true).first.value).to eq('')
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
2017-05-25 07:31:21 -04:00
|
|
|
|
|
|
|
it 'edits variable to be protected' do
|
|
|
|
page.within('.variables-table') do
|
2017-05-03 14:51:55 -04:00
|
|
|
click_on 'Update'
|
2017-05-25 07:31:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Update variable')
|
|
|
|
check('Protected')
|
|
|
|
click_button('Save variable')
|
|
|
|
|
|
|
|
expect(page).to have_content('Variable was successfully updated.')
|
2017-05-31 12:37:44 -04:00
|
|
|
expect(project.variables(true).first).to be_protected
|
2017-05-25 07:31:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'edits variable to be unprotected' do
|
|
|
|
project.variables.first.update(protected: true)
|
|
|
|
|
|
|
|
page.within('.variables-table') do
|
2017-05-03 14:51:55 -04:00
|
|
|
click_on 'Update'
|
2017-05-25 07:31:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Update variable')
|
2017-05-25 08:53:03 -04:00
|
|
|
uncheck('Protected')
|
2017-05-25 07:31:21 -04:00
|
|
|
click_button('Save variable')
|
|
|
|
|
|
|
|
expect(page).to have_content('Variable was successfully updated.')
|
2017-05-31 12:37:44 -04:00
|
|
|
expect(project.variables(true).first).not_to be_protected
|
2017-05-25 07:31:21 -04:00
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|