summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/user_activates_hipchat_spec.rb
blob: a9bf16642c79f5a69939b730864b5bff90780025 (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
require 'spec_helper'

describe 'User activates HipChat' do
  let(:project) { create(:project) }
  let(:user) { create(:user) }

  before do
    project.add_master(user)
    sign_in(user)

    visit(project_settings_integrations_path(project))

    click_link('HipChat')
  end

  context 'with standart settings' do
    it 'activates service' do
      check('Active')
      fill_in('Room', with: 'gitlab')
      fill_in('Token', with: 'verySecret')
      click_button('Save')

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

  context 'with custom settings' do
    it 'activates service' do
      check('Active')
      fill_in('Room', with: 'gitlab_custom')
      fill_in('Token', with: 'secretCustom')
      fill_in('Server', with: 'https://chat.example.com')
      click_button('Save')

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