Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_activates_hipchat_spec.rb « services « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cffb780e05d80f5cc196d357bc83fcda60f2aac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User activates HipChat', :js do
  include_context 'project service activation'

  context 'with standard settings' do
    before do
      stub_request(:post, /.*api.hipchat.com.*/)
    end

    it 'activates service' do
      visit_project_integration('HipChat')
      fill_in('Room', with: 'gitlab')
      fill_in('Token', with: 'verySecret')

      click_test_then_save_integration(expect_test_to_fail: false)

      expect(page).to have_content('HipChat settings saved and active.')
    end
  end

  context 'with custom settings' do
    before do
      stub_request(:post, /.*chat.example.com.*/)
    end

    it 'activates service' do
      visit_project_integration('HipChat')
      fill_in('Room', with: 'gitlab_custom')
      fill_in('Token', with: 'secretCustom')
      fill_in('Server', with: 'https://chat.example.com')

      click_test_then_save_integration(expect_test_to_fail: false)

      expect(page).to have_content('HipChat settings saved and active.')
    end
  end
end