debian-mirror-gitlab/spec/lib/feature/gitaly_spec.rb

92 lines
2.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2019-09-04 21:01:54 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Feature::Gitaly do
2021-03-11 19:13:27 +05:30
let_it_be(:project) { create(:project) }
let_it_be(:project_2) { create(:project) }
before do
skip_feature_flags_yaml_validation
end
2019-09-04 21:01:54 +05:30
describe ".enabled?" do
2021-03-11 19:13:27 +05:30
context 'when the flag is set globally' do
let(:feature_flag) { 'global_flag' }
context 'when the gate is closed' do
before do
stub_feature_flags(gitaly_global_flag: false)
end
it 'returns false' do
expect(described_class.enabled?(feature_flag)).to be(false)
end
2019-09-04 21:01:54 +05:30
end
2021-03-11 19:13:27 +05:30
context 'when the flag defaults to on' do
it 'returns true' do
expect(described_class.enabled?(feature_flag)).to be(true)
end
2019-09-04 21:01:54 +05:30
end
end
2021-03-11 19:13:27 +05:30
context 'when the flag is enabled for a particular project' do
let(:feature_flag) { 'project_flag' }
before do
stub_feature_flags(gitaly_project_flag: project)
end
it 'returns true for that project' do
expect(described_class.enabled?(feature_flag, project)).to be(true)
end
it 'returns false for any other project' do
expect(described_class.enabled?(feature_flag, project_2)).to be(false)
end
it 'returns false when no project is passed' do
expect(described_class.enabled?(feature_flag)).to be(false)
2019-09-04 21:01:54 +05:30
end
end
end
describe ".server_feature_flags" do
2020-03-13 15:44:24 +05:30
before do
2021-03-11 19:13:27 +05:30
stub_feature_flags(gitaly_global_flag: true, gitaly_project_flag: project, non_gitaly_flag: false)
2020-03-13 15:44:24 +05:30
end
2019-09-04 21:01:54 +05:30
2020-03-13 15:44:24 +05:30
subject { described_class.server_feature_flags }
2019-09-04 21:01:54 +05:30
2021-03-11 19:13:27 +05:30
it 'returns a hash of flags starting with the prefix, with dashes instead of underscores' do
expect(subject).to eq('gitaly-feature-global-flag' => 'true',
'gitaly-feature-project-flag' => 'false')
end
context 'when a project is passed' do
it 'returns the value for the flag on the given project' do
expect(described_class.server_feature_flags(project))
.to eq('gitaly-feature-global-flag' => 'true',
'gitaly-feature-project-flag' => 'true')
expect(described_class.server_feature_flags(project_2))
.to eq('gitaly-feature-global-flag' => 'true',
'gitaly-feature-project-flag' => 'false')
end
end
2020-04-08 14:13:33 +05:30
context 'when table does not exist' do
before do
2021-12-11 22:18:48 +05:30
allow(Feature::FlipperFeature.database)
.to receive(:cached_table_exists?)
.and_return(false)
2020-04-08 14:13:33 +05:30
end
it 'returns an empty Hash' do
expect(subject).to eq({})
end
end
2019-09-04 21:01:54 +05:30
end
end