summaryrefslogtreecommitdiff
path: root/spec/views/layouts/nav/sidebar/_profile.html.haml_spec.rb
blob: f5a0a7a935c12d83a1a80b56eeda7361e6ec3085 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'layouts/nav/sidebar/_profile' do
  let(:user) { create(:user) }

  before do
    allow(view).to receive(:current_user).and_return(user)
  end

  it_behaves_like 'has nav sidebar'
  it_behaves_like 'sidebar includes snowplow attributes', 'render', 'user_side_navigation', 'user_side_navigation'

  it 'has a link to access tokens' do
    render

    expect(rendered).to have_link(_('Access Tokens'), href: profile_personal_access_tokens_path)
  end

  context 'when personal access tokens are disabled' do
    it 'does not have a link to access tokens' do
      allow(::Gitlab::CurrentSettings).to receive_messages(personal_access_tokens_disabled?: true)

      render

      expect(rendered).not_to have_link(_('Access Tokens'), href: profile_personal_access_tokens_path)
    end
  end
end