From 95b65673b6259be3a02ed6510e7562939d35b6c8 Mon Sep 17 00:00:00 2001 From: Chris Burgess Date: Fri, 10 Aug 2018 23:55:14 +1200 Subject: [PATCH] Issue #316: Update long string cache key test results --- tests/phpunit/CRM/Core/BAO/CacheTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/CRM/Core/BAO/CacheTest.php b/tests/phpunit/CRM/Core/BAO/CacheTest.php index 8987f9e853..ad7653fd56 100644 --- a/tests/phpunit/CRM/Core/BAO/CacheTest.php +++ b/tests/phpunit/CRM/Core/BAO/CacheTest.php @@ -88,9 +88,9 @@ class CRM_Core_BAO_CacheTest extends CiviUnitTestCase { $es[] = ['hello/world+-#@{}', 'hello-2fworld-2b-2d-23-40-7b-7d']; // escaped chars $es[] = ["LF-\nTAB-\tCR-\remojiskull💀", 'LF-2d-aTAB-2d-9CR-2d-demojiskull-f0-9f-92-80']; // short with emoji $es[] = ["LF-\nTAB-\tCR-\remojibomb💣emojiskull💀", '-5d9324e052f6e10240dce5029c5e8525']; // long with emoji - $es[] = ['123456789 123456789 123456789 123456789 123456789 123', '123456789-20123456789-20123456789-20123456789-20123456789-20123']; // spaces are escaped - $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-123', '123456789-123456789-123456789-123456789-123456789-123456789-123']; // long but allowed - $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-1234', '-afe584fe1d38b9a007df7d7ba30558e2']; // too long, md5 fallback + $es[] = ['123456789 123456789 123456789 123456789 123456789 12', '123456789-20123456789-20123456789-20123456789-20123456789-20123']; // spaces are escaped + $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-12', '123456789-123456789-123456789-123456789-123456789-12']; // long but allowed + $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-123', '-8f6cbe1d258d2ec9a0cffd5ff29ba5d0']; // too long, md5 fallback $es[] = ['123456789-/23456789-+23456789--23456789-123456789-123456789', '-afe584fe1d38b9a007df7d7ba30558e2']; // too long, md5 fallback return $es; } -- 2.25.1