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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb')
-rw-r--r--spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb b/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
index 300d7bb14b6..b396e5d22c3 100644
--- a/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
+++ b/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
@@ -152,6 +152,43 @@ describe Gitlab::Git::RuggedImpl::UseRugged, :seed_helper do
end
end
+ describe '#rugged_enabled_through_feature_flag?' do
+ subject { wrapper.send(:rugged_enabled_through_feature_flag?) }
+
+ before do
+ allow(Feature).to receive(:enabled?).with(:feature_key_1).and_return(true)
+ allow(Feature).to receive(:enabled?).with(:feature_key_2).and_return(true)
+ allow(Feature).to receive(:enabled?).with(:feature_key_3).and_return(false)
+ allow(Feature).to receive(:enabled?).with(:feature_key_4).and_return(false)
+
+ stub_const('Gitlab::Git::RuggedImpl::Repository::FEATURE_FLAGS', feature_keys)
+ end
+
+ context 'no feature keys given' do
+ let(:feature_keys) { [] }
+
+ it { is_expected.to be_falsey }
+ end
+
+ context 'all features are enabled' do
+ let(:feature_keys) { [:feature_key_1, :feature_key_2] }
+
+ it { is_expected.to be_truthy}
+ end
+
+ context 'all features are not enabled' do
+ let(:feature_keys) { [:feature_key_3, :feature_key_4] }
+
+ it { is_expected.to be_falsey }
+ end
+
+ context 'some feature is enabled' do
+ let(:feature_keys) { [:feature_key_4, :feature_key_2] }
+
+ it { is_expected.to be_truthy }
+ end
+ end
+
def create_temporary_gitaly_metadata_file
tmp = Tempfile.new('.gitaly-metadata')
gitaly_metadata = {