mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[3.2.x] Fixed #32665 -- Fixed caches system check crash when STATICFILES_DIRS is a list of 2-tuples.
Thanks Jared Lockhart for the report. Regression inc36075ac1d. Backport of34d1905712from main
This commit is contained in:
		| @@ -91,6 +91,35 @@ class CheckCacheLocationTest(SimpleTestCase): | ||||
|             with self.subTest(setting=setting), self.settings(**settings): | ||||
|                 self.assertEqual(check_cache_location_not_exposed(None), []) | ||||
|  | ||||
|     def test_staticfiles_dirs_prefix(self): | ||||
|         root = pathlib.Path.cwd() | ||||
|         tests = [ | ||||
|             (root, root, 'matches'), | ||||
|             (root / 'cache', root, 'is inside'), | ||||
|             (root, root / 'other', 'contains'), | ||||
|         ] | ||||
|         for cache_path, setting_path, msg in tests: | ||||
|             settings = self.get_settings( | ||||
|                 'STATICFILES_DIRS', | ||||
|                 cache_path, | ||||
|                 ('prefix', setting_path), | ||||
|             ) | ||||
|             with self.subTest(path=setting_path), self.settings(**settings): | ||||
|                 msg = self.warning_message % (msg, 'STATICFILES_DIRS') | ||||
|                 self.assertEqual(check_cache_location_not_exposed(None), [ | ||||
|                     Warning(msg, id='caches.W002'), | ||||
|                 ]) | ||||
|  | ||||
|     def test_staticfiles_dirs_prefix_not_conflict(self): | ||||
|         root = pathlib.Path.cwd() | ||||
|         settings = self.get_settings( | ||||
|             'STATICFILES_DIRS', | ||||
|             root / 'cache', | ||||
|             ('prefix', root / 'other'), | ||||
|         ) | ||||
|         with self.settings(**settings): | ||||
|             self.assertEqual(check_cache_location_not_exposed(None), []) | ||||
|  | ||||
|  | ||||
| class CheckCacheAbsolutePath(SimpleTestCase): | ||||
|     def test_absolute_path(self): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user