File: chat_names_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (114 lines) | stat: -rw-r--r-- 3,263 bytes parent folder | download
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Profile > Chat', feature_category: :integrations do
  let_it_be(:user) { create(:user) }

  before do
    sign_in(user)
  end

  describe 'uses authorization link' do
    let(:params) do
      {
        team_id: 'f1924a8db44ff3bb41c96424cdc20676',
        team_domain: 'my_chat_team',
        user_id: 'ay5sq51sebfh58ktrce5ijtcwy',
        user_name: 'my_chat_user'
      }
    end

    let!(:authorize_url) { ChatNames::AuthorizeUserService.new(params).execute }
    let(:authorize_path) { URI.parse(authorize_url).request_uri }

    before do
      visit authorize_path
    end

    it 'names the Mattermost integration correctly' do
      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

    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

    context 'clicks authorize' do
      before do
        click_button 'Authorize'
      end

      it 'goes to list of chat names and see chat account' do
        expect(page).to have_current_path(profile_chat_names_path, ignore_query: true)
        expect(page).to have_content('my_chat_team')
        expect(page).to have_content('my_chat_user')
      end

      it 'second use of link is denied' do
        visit authorize_path

        expect(page).to have_gitlab_http_status(:not_found)
      end
    end

    context 'clicks deny' do
      before do
        click_button 'Deny'
      end

      it 'goes to list of chat names and do not see chat account' do
        expect(page).to have_current_path(profile_chat_names_path, ignore_query: true)
        expect(page).not_to have_content('my_chat_team')
        expect(page).not_to have_content('my_chat_user')
      end

      it 'second use of link is denied' do
        visit authorize_path

        expect(page).to have_gitlab_http_status(:not_found)
      end
    end
  end

  describe 'visits chat accounts' do
    let_it_be(:chat_name) { create(:chat_name, user: user) }

    before do
      visit profile_chat_names_path
    end

    it 'sees chat user' do
      expect(page).to have_content(chat_name.team_domain)
      expect(page).to have_content(chat_name.chat_name)
    end

    it 'removes chat account' do
      click_link 'Remove'

      expect(page).to have_content("You don't have any active chat names.")
    end
  end
end