Commit e69d67f1 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

testERP5WebWithDms: revert the change in Caching Policy Manager not to affect following tests.

parent d899b7b5
...@@ -656,31 +656,34 @@ class TestERP5WebWithDms(ERP5TypeTestCase, ZopeTestCase.Functional): ...@@ -656,31 +656,34 @@ class TestERP5WebWithDms(ERP5TypeTestCase, ZopeTestCase.Functional):
# Those images can be accessible through extensible content # Those images can be accessible through extensible content
# url : path-of-document + '/' + 'img' + page-index + '.png' # url : path-of-document + '/' + 'img' + page-index + '.png'
# Update policy to have stale values # Update policy to have stale values
self.portal.caching_policy_manager._updatePolicy( policy_orig = self.portal.caching_policy_manager._policies['unauthenticated no language']
"unauthenticated no language", "python: member is None", try:
"python: getattr(object, 'getModificationDate', object.modified)()", self.portal.caching_policy_manager._updatePolicy(
1200, 30, 600, 0, 0, 0, "Accept-Language, Cookie", "", None, "unauthenticated no language", "python: member is None",
0, 1, 0, 0, 1, 1, None, None) "python: getattr(object, 'getModificationDate', object.modified)()",
self.tic() 1200, 30, 600, 0, 0, 0, "Accept-Language, Cookie", "", None,
policy_list = self.portal.caching_policy_manager.listPolicies() 0, 1, 0, 0, 1, 1, None, None)
policy = [policy[1] for policy in policy_list\ self.tic()
if policy[0] == 'unauthenticated no language'][0] policy_list = self.portal.caching_policy_manager.listPolicies()
# Check policy has been updated policy = [policy[1] for policy in policy_list\
self.assertEquals(policy.getMaxAgeSecs(), 1200) if policy[0] == 'unauthenticated no language'][0]
self.assertEquals(policy.getStaleWhileRevalidateSecs(), 30) # Check policy has been updated
self.assertEquals(policy.getStaleIfErrorSecs(), 600) self.assertEquals(policy.getMaxAgeSecs(), 1200)
for i in xrange(3): self.assertEquals(policy.getStaleWhileRevalidateSecs(), 30)
path = '/'.join((website_url, self.assertEquals(policy.getStaleIfErrorSecs(), 600)
reference, for i in xrange(3):
'img%s.png' % i)) path = '/'.join((website_url,
response = self.publish(path) reference,
self.assertEquals(response.getHeader('Content-Type'), 'image/png') 'img%s.png' % i))
self.assertEquals(response.getHeader('Cache-Control'), response = self.publish(path)
'max-age=%d, stale-while-revalidate=%d, stale-if-error=%d, public' % \ self.assertEquals(response.getHeader('Content-Type'), 'image/png')
(policy.getMaxAgeSecs(), self.assertEquals(response.getHeader('Cache-Control'),
policy.getStaleWhileRevalidateSecs(), 'max-age=%d, stale-while-revalidate=%d, stale-if-error=%d, public' % \
policy.getStaleIfErrorSecs())) (policy.getMaxAgeSecs(),
policy.getStaleWhileRevalidateSecs(),
policy.getStaleIfErrorSecs()))
finally:
self.portal.caching_policy_manager._policies['unauthenticated no language'] = policy_orig
def test_PreviewOOoDocumentWithEmbeddedImage(self): def test_PreviewOOoDocumentWithEmbeddedImage(self):
"""Tests html preview of an OOo document with images as extensible content. """Tests html preview of an OOo document with images as extensible content.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment