debian-mirror-gitlab/spec/features/projects/integrations/user_activates_jetbrains_teamcity_ci_spec.rb

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

26 lines
733 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'
2020-06-23 00:09:42 +05:30
RSpec.describe 'User activates JetBrains TeamCity CI' do
2022-04-04 11:22:00 +05:30
include_context 'project integration activation'
2018-03-17 18:26:18 +05:30
before do
2020-04-22 19:07:51 +05:30
stub_request(:post, /.*teamcity.example.com.*/)
2018-03-17 18:26:18 +05:30
end
2022-04-04 11:22:00 +05:30
it 'activates integration', :js do
2021-04-29 21:17:54 +05:30
visit_project_integration('JetBrains TeamCity')
2019-09-30 21:07:59 +05:30
check('Push')
2022-05-07 20:08:51 +05:30
check('Merge request')
2021-04-29 21:17:54 +05:30
fill_in('TeamCity server URL', with: 'http://teamcity.example.com')
2018-03-17 18:26:18 +05:30
fill_in('Build type', with: 'GitlabTest_Build')
fill_in('Username', with: 'user')
fill_in('Password', with: 'verySecret')
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
click_test_then_save_integration(expect_test_to_fail: false)
2018-03-17 18:26:18 +05:30
2021-04-29 21:17:54 +05:30
expect(page).to have_content('JetBrains TeamCity settings saved and active.')
2018-03-17 18:26:18 +05:30
end
end