2019-11-15 13:06:24 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Gitlab::Sourcegraph do
|
2019-11-15 13:06:24 -05:00
|
|
|
let_it_be(:user) { create(:user) }
|
2021-04-02 20:09:02 -04:00
|
|
|
|
2019-11-15 13:06:24 -05:00
|
|
|
let(:feature_scope) { true }
|
|
|
|
|
|
|
|
before do
|
2020-05-29 14:08:26 -04:00
|
|
|
stub_feature_flags(sourcegraph: feature_scope)
|
2019-11-15 13:06:24 -05:00
|
|
|
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
|
2022-01-18 13:11:20 -05:00
|
|
|
|
|
|
|
context 'when feature is disabled' do
|
|
|
|
let(:feature_scope) { false }
|
|
|
|
|
|
|
|
it { is_expected.to be_falsey }
|
|
|
|
end
|
2019-11-15 13:06:24 -05:00
|
|
|
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
|