debian-mirror-gitlab/spec/features/profiles/chat_names_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
3.2 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-12-04 20:38:33 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
2023-06-20 00:43:36 +05:30
RSpec.describe 'Profile > Chat', feature_category: :integrations do
2023-05-27 22:25:52 +05:30
let_it_be(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
2017-08-17 22:00:37 +05:30
end
describe 'uses authorization link' do
2018-11-08 19:23:39 +05:30
let(:params) do
2023-06-20 00:43:36 +05:30
{
team_id: 'f1924a8db44ff3bb41c96424cdc20676',
team_domain: 'my_chat_team',
user_id: 'ay5sq51sebfh58ktrce5ijtcwy',
user_name: 'my_chat_user'
}
2017-08-17 22:00:37 +05:30
end
2020-10-24 23:57:45 +05:30
2023-03-17 16:20:25 +05:30
let!(:authorize_url) { ChatNames::AuthorizeUserService.new(params).execute }
2018-11-08 19:23:39 +05:30
let(:authorize_path) { URI.parse(authorize_url).request_uri }
2017-08-17 22:00:37 +05:30
before do
visit authorize_path
end
2023-07-09 08:55:56 +05:30
it 'names the Mattermost integration correctly' do
2023-06-20 00:43:36 +05:30
expect(page).to have_content(
'An application called Mattermost slash commands is requesting access to your GitLab account'
)
expect(page).to have_content('Authorize Mattermost slash commands')
end
2023-07-09 08:55:56 +05:30
context 'when params are of the GitLab for Slack app' do
let(:params) do
{ team_id: 'T00', team_domain: 'my_chat_team', user_id: 'U01', user_name: 'my_chat_user' }
end
shared_examples 'names the GitLab for Slack app integration correctly' do
specify do
expect(page).to have_content(
'An application called GitLab for Slack app is requesting access to your GitLab account'
)
expect(page).to have_content('Authorize GitLab for Slack app')
end
end
include_examples 'names the GitLab for Slack app integration correctly'
context 'with a Slack enterprise-enabled team' do
let(:params) { super().merge(user_id: 'W01') }
include_examples 'names the GitLab for Slack app integration correctly'
end
end
2017-08-17 22:00:37 +05:30
context 'clicks authorize' do
before do
click_button 'Authorize'
end
2018-11-08 19:23:39 +05:30
it 'goes to list of chat names and see chat account' do
2022-05-07 20:08:51 +05:30
expect(page).to have_current_path(profile_chat_names_path, ignore_query: true)
2017-08-17 22:00:37 +05:30
expect(page).to have_content('my_chat_team')
expect(page).to have_content('my_chat_user')
end
2018-11-08 19:23:39 +05:30
it 'second use of link is denied' do
2017-08-17 22:00:37 +05:30
visit authorize_path
2018-03-17 18:26:18 +05:30
expect(page).to have_gitlab_http_status(:not_found)
2017-08-17 22:00:37 +05:30
end
end
context 'clicks deny' do
before do
click_button 'Deny'
end
2018-11-08 19:23:39 +05:30
it 'goes to list of chat names and do not see chat account' do
2022-05-07 20:08:51 +05:30
expect(page).to have_current_path(profile_chat_names_path, ignore_query: true)
2017-08-17 22:00:37 +05:30
expect(page).not_to have_content('my_chat_team')
expect(page).not_to have_content('my_chat_user')
end
2018-11-08 19:23:39 +05:30
it 'second use of link is denied' do
2017-08-17 22:00:37 +05:30
visit authorize_path
2018-03-17 18:26:18 +05:30
expect(page).to have_gitlab_http_status(:not_found)
2017-08-17 22:00:37 +05:30
end
end
end
describe 'visits chat accounts' do
2023-05-27 22:25:52 +05:30
let_it_be(:chat_name) { create(:chat_name, user: user) }
2017-08-17 22:00:37 +05:30
before do
visit profile_chat_names_path
end
2018-11-08 19:23:39 +05:30
it 'sees chat user' do
2017-08-17 22:00:37 +05:30
expect(page).to have_content(chat_name.team_domain)
expect(page).to have_content(chat_name.chat_name)
end
2018-11-08 19:23:39 +05:30
it 'removes chat account' do
2017-08-17 22:00:37 +05:30
click_link 'Remove'
expect(page).to have_content("You don't have any active chat names.")
end
end
end