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

security_compliance_menu_spec.rb « menus « projects « sidebars « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e84beeb274c2ebb90fc386ed6ef34501ca89041 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Sidebars::Projects::Menus::SecurityComplianceMenu do
  let_it_be(:project) { create(:project) }

  let(:user) { project.owner }
  let(:show_promotions) { true }
  let(:show_discover_project_security) { true }
  let(:context) { Sidebars::Projects::Context.new(current_user: user, container: project, show_promotions: show_promotions, show_discover_project_security: show_discover_project_security) }

  describe 'render?' do
    subject { described_class.new(context).render? }

    context 'when user is not authenticated' do
      let(:user) { nil }

      it { is_expected.to be_falsey }
    end

    context 'when user is authenticated' do
      context 'when the Security & Compliance is disabled' do
        before do
          allow(Ability).to receive(:allowed?).with(user, :access_security_and_compliance, project).and_return(false)
        end

        it { is_expected.to be_falsey }
      end

      context 'when the Security & Compliance is not disabled' do
        it { is_expected.to be_truthy }
      end
    end
  end
end