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/support/caching.rb')
-rw-r--r--spec/support/caching.rb17
1 files changed, 14 insertions, 3 deletions
diff --git a/spec/support/caching.rb b/spec/support/caching.rb
index b18223523db..46b6c7afa90 100644
--- a/spec/support/caching.rb
+++ b/spec/support/caching.rb
@@ -23,9 +23,7 @@ RSpec.configure do |config|
config.around(:each, :use_clean_rails_redis_caching) do |example|
original_null_store = Rails.cache
- caching_config_hash = Gitlab::Redis::Cache.params
- caching_config_hash[:namespace] = Gitlab::Redis::Cache::CACHE_NAMESPACE
- Rails.cache = ActiveSupport::Cache::RedisCacheStore.new(**caching_config_hash)
+ Rails.cache = ActiveSupport::Cache::RedisCacheStore.new(**Gitlab::Redis::Cache.active_support_config)
redis_cache_cleanup!
@@ -36,6 +34,19 @@ RSpec.configure do |config|
Rails.cache = original_null_store
end
+ config.around(:each, :use_clean_rails_repository_cache_store_caching) do |example|
+ original_null_store = Rails.cache
+ Rails.cache = Gitlab::Redis::RepositoryCache.cache_store
+
+ redis_repository_cache_cleanup!
+
+ example.run
+
+ redis_repository_cache_cleanup!
+
+ Rails.cache = original_null_store
+ end
+
config.around(:each, :use_sql_query_cache) do |example|
base_models = Gitlab::Database.database_base_models_with_gitlab_shared.values
inner_proc = proc { example.run }