gitlab-org--gitlab-foss/spec/features/projects/services/user_activates_slack_slash_...

44 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Slack slash commands', :js do
include_context 'project service activation'
2018-07-05 06:32:05 +00:00
before do
visit_project_integration('Slack slash commands')
end
it 'shows a token placeholder' do
token_placeholder = find_field('Token')['placeholder']
expect(token_placeholder).to eq('XXxxXXxxXXxxXXxxXXxxXXxx')
end
it 'shows a help message' do
expect(page).to have_content('This service allows users to perform common')
end
it 'redirects to the integrations page after saving but not activating' do
fill_in 'Token', with: 'token'
click_active_checkbox
2016-12-19 21:12:30 +00:00
click_on 'Save'
expect(current_path).to eq(edit_project_service_path(project, :slack_slash_commands))
expect(page).to have_content('Slack slash commands settings saved, but not activated.')
end
it 'redirects to the integrations page after activating' do
fill_in 'Token', with: 'token'
click_on 'Save'
expect(current_path).to eq(edit_project_service_path(project, :slack_slash_commands))
expect(page).to have_content('Slack slash commands activated.')
end
it 'shows the correct trigger url' do
2016-12-19 21:12:30 +00:00
value = find_field('url').value
expect(value).to match("api/v4/projects/#{project.id}/services/slack_slash_commands/trigger")
end
end