debian-mirror-gitlab/spec/tasks/cache/clear/redis_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.4 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require 'rake_helper'
2021-09-04 01:27:46 +05:30
RSpec.describe 'clearing redis cache', :clean_gitlab_redis_cache, :silence_stdout do
2018-10-15 14:42:47 +05:30
before do
Rake.application.rake_require 'tasks/cache'
end
2021-09-04 01:27:46 +05:30
shared_examples 'clears the cache' do
it { expect { run_rake_task('cache:clear:redis') }.to change { redis_keys.size }.by(-1) }
end
2018-10-15 14:42:47 +05:30
describe 'clearing pipeline status cache' do
2019-02-15 15:39:39 +05:30
let(:pipeline_status) do
project = create(:project, :repository)
create(:ci_pipeline, project: project).project.pipeline_status
end
2018-10-15 14:42:47 +05:30
before do
allow(pipeline_status).to receive(:loaded).and_return(nil)
end
it 'clears pipeline status cache' do
expect { run_rake_task('cache:clear:redis') }.to change { pipeline_status.has_cache? }
end
2021-09-04 01:27:46 +05:30
it_behaves_like 'clears the cache'
end
describe 'clearing set caches' do
context 'repository set' do
let(:project) { create(:project) }
let(:repository) { project.repository }
let(:cache) { Gitlab::RepositorySetCache.new(repository) }
before do
cache.write(:foo, [:bar])
end
it_behaves_like 'clears the cache'
end
context 'reactive cache set' do
let(:cache) { Gitlab::ReactiveCacheSetCache.new }
before do
cache.write(:foo, :bar)
end
it_behaves_like 'clears the cache'
end
end
def redis_keys
Gitlab::Redis::Cache.with { |redis| redis.scan(0, match: "*") }.last
2018-10-15 14:42:47 +05:30
end
end