summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/user_activates_hipchat_spec.rb
blob: a2820c4bb0fe9294914f36ce28c2c3419b5c5f9f (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 standart 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_integration

      expect(page).to have_content('HipChat activated.')
    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_integration

      expect(page).to have_content('HipChat activated.')
    end
  end
end