2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Operations::FeatureFlagsClient do
|
2022-08-13 15:12:31 +05:30
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
|
|
|
|
let!(:client) { create(:operations_feature_flags_client, project: project) }
|
|
|
|
|
|
|
|
subject { client }
|
|
|
|
|
|
|
|
before do
|
|
|
|
client.unleash_app_name = 'production'
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#token' do
|
|
|
|
it "ensures that token is always set" do
|
|
|
|
expect(subject.token).not_to be_empty
|
|
|
|
end
|
|
|
|
end
|
2022-08-13 15:12:31 +05:30
|
|
|
|
|
|
|
describe '.update_last_feature_flag_updated_at!' do
|
|
|
|
subject { described_class.update_last_feature_flag_updated_at!(project) }
|
|
|
|
|
|
|
|
it 'updates the last_feature_flag_updated_at of the project client' do
|
|
|
|
freeze_time do
|
|
|
|
expect { subject }.to change { client.reload.last_feature_flag_updated_at }.from(nil).to(Time.current)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#unleash_api_version' do
|
|
|
|
subject { client.unleash_api_version }
|
|
|
|
|
|
|
|
it { is_expected.to eq(described_class::DEFAULT_UNLEASH_API_VERSION) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#unleash_api_features' do
|
|
|
|
subject { client.unleash_api_features }
|
|
|
|
|
|
|
|
it 'fetches' do
|
|
|
|
expect(Operations::FeatureFlag).to receive(:for_unleash_client).with(project, 'production').once
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unleash app name is not set' do
|
|
|
|
before do
|
|
|
|
client.unleash_app_name = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not fetch' do
|
|
|
|
expect(Operations::FeatureFlag).not_to receive(:for_unleash_client)
|
|
|
|
|
|
|
|
subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#unleash_api_cache_key' do
|
|
|
|
subject { client.unleash_api_cache_key }
|
|
|
|
|
|
|
|
it 'constructs the cache key' do
|
|
|
|
is_expected.to eq("api_version:#{client.unleash_api_version}"\
|
|
|
|
":app_name:#{client.unleash_app_name}"\
|
|
|
|
":updated_at:#{client.last_feature_flag_updated_at.to_i}")
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unleash app name is not set' do
|
|
|
|
before do
|
|
|
|
client.unleash_app_name = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'constructs the cache key without unleash app name' do
|
|
|
|
is_expected.to eq("api_version:#{client.unleash_api_version}"\
|
|
|
|
":app_name:"\
|
|
|
|
":updated_at:#{client.last_feature_flag_updated_at.to_i}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|