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
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe 'Profile > Chat' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:service) { create(:service) }
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
{ team_id: 'T00', team_domain: 'my_chat_team', user_id: 'U01', user_name: 'my_chat_user' }
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
let!(:authorize_url) { ChatNames::AuthorizeUserService.new(service, params).execute }
|
|
|
|
let(:authorize_path) { URI.parse(authorize_url).request_uri }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
visit authorize_path
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page.current_path).to eq(profile_chat_names_path)
|
|
|
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page.current_path).to eq(profile_chat_names_path)
|
|
|
|
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
|
2018-11-08 19:23:39 +05:30
|
|
|
let!(:chat_name) { create(:chat_name, user: user, service: service) }
|
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
|