summaryrefslogtreecommitdiff
path: root/spec/views/profiles/show.html.haml_spec.rb
blob: e1c21f87780844ba5431cf71a148a74867dbab82 (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
# frozen_string_literal: true

require 'spec_helper'

describe 'profiles/show' do
  let(:user) { create(:user) }

  before do
    assign(:user, user)
    allow(controller).to receive(:current_user).and_return(user)
    allow(view).to receive(:experiment_enabled?)
  end

  context 'when the profile page is opened' do
    it 'displays the correct elements' do
      render

      expect(rendered).to have_field('user_name', with: user.name)
      expect(rendered).to have_field('user_id', with: user.id)
    end
  end

  context 'gitlab.com organization field' do
    before do
      allow(Gitlab).to receive(:com?).and_return(true)
    end

    context 'when `:gitlab_employee_badge` feature flag is enabled' do
      context 'and when user has an `@gitlab.com` email address' do
        let(:user) { create(:user, email: 'test@gitlab.com') }

        it 'displays the organization field as `readonly` with a `value` of `GitLab`' do
          render

          expect(rendered).to have_selector('#user_organization[readonly][value="GitLab"]')
        end
      end

      context 'and when a user does not have an `@gitlab.com` email' do
        let(:user) { create(:user, email: 'test@example.com') }

        it 'displays an editable organization field' do
          render

          expect(rendered).to have_selector('#user_organization:not([readonly]):not([value="GitLab"])')
        end
      end
    end

    context 'when `:gitlab_employee_badge` feature flag is disabled' do
      before do
        stub_feature_flags(gitlab_employee_badge: false)
      end

      context 'and when a user has an `@gitlab.com` email' do
        let(:user) { create(:user, email: 'test@gitlab.com') }

        it 'displays an editable organization field' do
          render

          expect(rendered).to have_selector('#user_organization:not([readonly]):not([value="GitLab"])')
        end
      end
    end
  end
end