summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/mattermost_slash_command_spec.rb
blob: f474e7e891bd949c60f5bd8a2bedbbf73c6d2b4d (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
41
42
43
44
45
46
47
48
require 'spec_helper'

feature 'Setup Mattermost slash commands', feature: true do
  include WaitForAjax

  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:service) { project.create_mattermost_slash_commands_service }

  before do
    project.team << [user, :master]
    login_as(user)
  end

  describe 'user visites the mattermost slash command config page', js: true do
    it 'shows a help message' do
      visit edit_namespace_project_service_path(project.namespace, project, service)

      wait_for_ajax

      expect(page).to have_content("This service allows GitLab users to perform common")
    end
  end

  describe 'saving a token' do
    let(:token) { ('a'..'z').to_a.join }

    it 'shows the token after saving' do
      visit edit_namespace_project_service_path(project.namespace, project, service)

      fill_in 'service_token', with: token
      click_on 'Save'

      value = find_field('service_token').value

      expect(value).to eq(token)
    end
  end

  describe 'the trigger url' do
    it 'shows the correct url' do
      visit edit_namespace_project_service_path(project.namespace, project, service)

      value = find_field('request_url').value
      expect(value).to match("api/v3/projects/#{project.id}/services/mattermost_slash_commands/trigger")
    end
  end
end