1
0
mirror of https://github.com/django/django.git synced 2025-03-29 02:30:48 +00:00

Made BaseCacheTests skip culling tests if culling is not supported.

This commit is contained in:
Jon Dufresne 2019-12-14 09:03:24 -08:00 committed by Carlton Gibson
parent 013147fae2
commit c1c361677d

22
tests/cache/tests.py vendored
View File

@ -18,6 +18,7 @@ from django.core import management, signals
from django.core.cache import ( from django.core.cache import (
DEFAULT_CACHE_ALIAS, CacheKeyWarning, cache, caches, DEFAULT_CACHE_ALIAS, CacheKeyWarning, cache, caches,
) )
from django.core.cache.backends.base import InvalidCacheBackendError
from django.core.cache.utils import make_template_fragment_key from django.core.cache.utils import make_template_fragment_key
from django.db import close_old_connections, connection, connections from django.db import close_old_connections, connection, connections
from django.http import ( from django.http import (
@ -597,7 +598,12 @@ class BaseCacheTests:
cache.set("key1", "spam", 100.2) cache.set("key1", "spam", 100.2)
self.assertEqual(cache.get("key1"), "spam") self.assertEqual(cache.get("key1"), "spam")
def _perform_cull_test(self, cull_cache, initial_count, final_count): def _perform_cull_test(self, cull_cache_name, initial_count, final_count):
try:
cull_cache = caches[cull_cache_name]
except InvalidCacheBackendError:
self.skipTest("Culling isn't implemented.")
# Create initial cache key entries. This will overflow the cache, # Create initial cache key entries. This will overflow the cache,
# causing a cull. # causing a cull.
for i in range(1, initial_count): for i in range(1, initial_count):
@ -610,10 +616,10 @@ class BaseCacheTests:
self.assertEqual(count, final_count) self.assertEqual(count, final_count)
def test_cull(self): def test_cull(self):
self._perform_cull_test(caches['cull'], 50, 29) self._perform_cull_test('cull', 50, 29)
def test_zero_cull(self): def test_zero_cull(self):
self._perform_cull_test(caches['zero_cull'], 50, 19) self._perform_cull_test('zero_cull', 50, 19)
def _perform_invalid_key_test(self, key, expected_warning): def _perform_invalid_key_test(self, key, expected_warning):
""" """
@ -1031,7 +1037,7 @@ class DBCacheTests(BaseCacheTests, TransactionTestCase):
cache.delete_many(['a', 'b', 'c']) cache.delete_many(['a', 'b', 'c'])
def test_zero_cull(self): def test_zero_cull(self):
self._perform_cull_test(caches['zero_cull'], 50, 18) self._perform_cull_test('zero_cull', 50, 18)
def test_second_call_doesnt_crash(self): def test_second_call_doesnt_crash(self):
out = io.StringIO() out = io.StringIO()
@ -1302,14 +1308,6 @@ class BaseMemcachedTests(BaseCacheTests):
cache.set('future_foo', 'bar') cache.set('future_foo', 'bar')
self.assertEqual(cache.get('future_foo'), 'bar') self.assertEqual(cache.get('future_foo'), 'bar')
def test_cull(self):
# culling isn't implemented, memcached deals with it.
pass
def test_zero_cull(self):
# culling isn't implemented, memcached deals with it.
pass
def test_memcached_deletes_key_on_failed_set(self): def test_memcached_deletes_key_on_failed_set(self):
# By default memcached allows objects up to 1MB. For the cache_db session # By default memcached allows objects up to 1MB. For the cache_db session
# backend to always use the current session, memcached needs to delete # backend to always use the current session, memcached needs to delete