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

user_activates_mattermost_slash_command_integration_shared_examples.rb « integrations « features « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfa043322db56069299b492f957efa34c77c356e (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
# frozen_string_literal: true

RSpec.shared_examples 'user activates the Mattermost Slash Command integration' do
  it 'shows a help message' do
    expect(page).to have_content('Use this service to perform common')
  end

  it 'shows a token placeholder' do
    token_placeholder = find_field('service_token')['placeholder']

    expect(token_placeholder).to eq('XXxxXXxxXXxxXXxxXXxxXXxx')
  end

  it 'redirects to the integrations page after saving but not activating' do
    token = ('a'..'z').to_a.join

    fill_in 'service_token', with: token
    click_active_checkbox
    click_save_integration

    expect(current_path).to eq(edit_path)
    expect(page).to have_content('Mattermost slash commands settings saved, but not active.')
  end

  it 'redirects to the integrations page after activating' do
    token = ('a'..'z').to_a.join

    fill_in 'service_token', with: token
    click_save_integration

    expect(current_path).to eq(edit_path)
    expect(page).to have_content('Mattermost slash commands settings saved and active.')
  end
end