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

index.html.haml_spec.rb « identities « admin « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4f6579f5ef1d018ef521bc82631a6bf35738d58 (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
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'admin/identities/index.html.haml', :aggregate_failures do
  include Admin::IdentitiesHelper

  let_it_be(:ldap_user) { create(:omniauth_user, provider: 'ldapmain', extern_uid: 'ldap-uid') }

  before do
    assign(:user, ldap_user)
    view.lookup_context.prefixes = ['admin/identities']
  end

  context 'without identities' do
    before do
      assign(:identities, [])
    end

    it 'shows table headers' do
      render

      expect(rendered).to include('<th class="gl-border-t-0!">').exactly(6)
      expect(rendered).to include(_('Provider'))
      expect(rendered).to include(s_('Identity|Provider ID'))
      expect(rendered).to include(_('Group'))
      expect(rendered).to include(_('Identifier'))
      expect(rendered).to include(_('Active'))
      expect(rendered).to include(_('Actions'))
    end

    it 'shows information text' do
      render

      expect(rendered).to include('<td colspan="6">').exactly(1)
      expect(rendered).to include(_('This user has no identities'))
    end
  end

  context 'with LDAP identities' do
    before do
      assign(:identities, ldap_user.identities)
    end

    it 'shows exactly 6 columns' do
      render

      expect(rendered).to include('</td>').exactly(6)
    end

    it 'shows identity without provider ID or group' do
      render

      # Provider
      expect(rendered).to include('ldap (ldapmain)')
      # Provider ID
      expect(rendered).to include('data-testid="provider_id_blank"')
      # Group
      expect(rendered).to include('data-testid="saml_group_blank"')
      # Identifier
      expect(rendered).to include('ldap-uid')
    end

    it 'shows edit and delete identity buttons' do
      render

      expect(rendered).to include("aria-label=\"#{_('Edit')}\"")
      expect(rendered).to include("aria-label=\"#{_('Delete identity')}\"")
    end
  end
end