debian-mirror-gitlab/spec/features/projects/services/user_activates_atlassian_bamboo_ci_spec.rb

29 lines
741 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
describe 'User activates Atlassian Bamboo CI' do
2020-04-22 19:07:51 +05:30
include_context 'project service activation'
2018-03-17 18:26:18 +05:30
before do
2020-04-22 19:07:51 +05:30
stub_request(:get, /.*bamboo.example.com.*/)
2018-03-17 18:26:18 +05:30
end
2020-04-22 19:07:51 +05:30
it 'activates service', :js do
visit_project_integration('Atlassian Bamboo CI')
2018-03-17 18:26:18 +05:30
fill_in('Bamboo url', with: 'http://bamboo.example.com')
fill_in('Build key', with: 'KEY')
fill_in('Username', with: 'user')
fill_in('Password', with: 'verySecret')
2020-04-22 19:07:51 +05:30
click_test_integration
2018-03-17 18:26:18 +05:30
expect(page).to have_content('Atlassian Bamboo CI activated.')
# Password field should not be filled in.
click_link('Atlassian Bamboo CI')
2020-04-22 19:07:51 +05:30
expect(find_field('Enter new password').value).to be_blank
2018-03-17 18:26:18 +05:30
end
end