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

sourcegraph_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad947475f0666546c54f44efaf93b23884fb63ee (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'

RSpec.describe Gitlab::Sourcegraph do
  let_it_be(:user) { create(:user) }
  let(:feature_scope) { true }

  before do
    stub_feature_flags(sourcegraph: feature_scope)
  end

  describe '.feature_conditional?' do
    subject { described_class.feature_conditional? }

    context 'when feature is enabled globally' do
      it { is_expected.to be_falsey }
    end

    context 'when feature is enabled only to a resource' do
      let(:feature_scope) { user }

      it { is_expected.to be_truthy }
    end
  end

  describe '.feature_available?' do
    subject { described_class.feature_available? }

    context 'when feature is enabled globally' do
      it { is_expected.to be_truthy }
    end

    context 'when feature is enabled only to a resource' do
      let(:feature_scope) { user }

      it { is_expected.to be_truthy }
    end
  end

  describe '.feature_enabled?' do
    let(:current_user) { nil }

    subject { described_class.feature_enabled?(current_user) }

    context 'when feature is enabled globally' do
      it { is_expected.to be_truthy }
    end

    context 'when feature is enabled only to a resource' do
      let(:feature_scope) { user }

      context 'for the same resource' do
        let(:current_user) { user }

        it { is_expected.to be_truthy }
      end

      context 'for a different resource' do
        let(:current_user) { create(:user) }

        it { is_expected.to be_falsey }
      end
    end
  end
end