46 lines
1.1 KiB
Ruby
46 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Feature::Gitaly do
|
|
let(:feature_flag) { "mep_mep" }
|
|
|
|
describe ".enabled?" do
|
|
context 'when the gate is closed' do
|
|
before do
|
|
stub_feature_flags(gitaly_mep_mep: false)
|
|
end
|
|
|
|
it 'returns false' do
|
|
expect(described_class.enabled?(feature_flag)).to be(false)
|
|
end
|
|
end
|
|
|
|
context 'when the flag defaults to on' do
|
|
it 'returns true' do
|
|
expect(described_class.enabled?(feature_flag)).to be(true)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe ".server_feature_flags" do
|
|
before do
|
|
allow(Feature).to receive(:persisted_names).and_return(%w[gitaly_mep_mep foo])
|
|
end
|
|
|
|
subject { described_class.server_feature_flags }
|
|
|
|
it { is_expected.to be_a(Hash) }
|
|
it { is_expected.to eq("gitaly-feature-mep-mep" => "true") }
|
|
|
|
context 'when table does not exist' do
|
|
before do
|
|
allow(::Gitlab::Database).to receive(:cached_table_exists?).and_return(false)
|
|
end
|
|
|
|
it 'returns an empty Hash' do
|
|
expect(subject).to eq({})
|
|
end
|
|
end
|
|
end
|
|
end
|