Commit 7e0c0c8b authored by Jérome Perrin's avatar Jérome Perrin

remove executable bit and unused imports, fix long lines



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@11482 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6a25ab2f
...@@ -26,10 +26,6 @@ ...@@ -26,10 +26,6 @@
# #
############################################################################## ##############################################################################
from random import randint
from pprint import pprint
import os, sys import os, sys
if __name__ == '__main__': if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py')) execfile(os.path.join(sys.path[0], 'framework.py'))
...@@ -40,13 +36,9 @@ os.environ['EVENT_LOG_SEVERITY'] = '-300' ...@@ -40,13 +36,9 @@ os.environ['EVENT_LOG_SEVERITY'] = '-300'
from Testing import ZopeTestCase from Testing import ZopeTestCase
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.CMFActivity.ActiveObject import INVOKE_ERROR_STATE,\ from Products.ERP5Type.CachePlugins.DummyCache import DummyCache
VALIDATE_ERROR_STATE from Products.ERP5Type.Cache import CachingMethod
from Products.CMFActivity.Activity.Queue import VALIDATION_ERROR_DELAY from AccessControl.SecurityManagement import newSecurityManager
from Products.ERP5Type.Document.Organisation import Organisation
from AccessControl.SecurityManagement import newSecurityManager, noSecurityManager
from DateTime import DateTime
from Acquisition import aq_base, aq_inner
from zLOG import LOG from zLOG import LOG
import time import time
...@@ -55,6 +47,17 @@ try: ...@@ -55,6 +47,17 @@ try:
except ImportError: except ImportError:
pass pass
class TestingCache(DummyCache):
"""A dummy cache that mark cache miss, so that you can later count access
using getCacheMisses() """
def __init__(self, params):
DummyCache.__init__(self, params)
def __call__(self, callable_object, cache_id, scope, cache_duration=None,
*args, **kwd):
self.markCacheMiss(1)
return callable_object(*args, **kwd)
class TestCacheTool(ERP5TypeTestCase): class TestCacheTool(ERP5TypeTestCase):
run_all_test = 1 run_all_test = 1
...@@ -113,13 +116,13 @@ class TestCacheTool(ERP5TypeTestCase): ...@@ -113,13 +116,13 @@ class TestCacheTool(ERP5TypeTestCase):
portal = self.getPortal() portal = self.getPortal()
portal_caches = portal.portal_caches portal_caches = portal.portal_caches
## Cache plugins are organised into 'Cache factories' so we create factories first # Cache plugins are organised into 'Cache factories' so we create
# factories first ram_cache_factory (to test Ram Cache Plugin)
## ram_cache_factory (to test Ram Cache Plugin)
ram_cache_factory = portal_caches.newContent(portal_type="Cache Factory", ram_cache_factory = portal_caches.newContent(portal_type="Cache Factory",
id = 'ram_cache_factory', id = 'ram_cache_factory',
container=portal_caches) container=portal_caches)
ram_cache_plugin = ram_cache_factory.newContent(portal_type="Ram Cache", container=ram_cache_factory) ram_cache_plugin = ram_cache_factory.newContent(portal_type="Ram Cache",
container=ram_cache_factory)
ram_cache_plugin.setIntIndex(0) ram_cache_plugin.setIntIndex(0)
...@@ -127,14 +130,16 @@ class TestCacheTool(ERP5TypeTestCase): ...@@ -127,14 +130,16 @@ class TestCacheTool(ERP5TypeTestCase):
dram_cache_factory = portal_caches.newContent(portal_type="Cache Factory", dram_cache_factory = portal_caches.newContent(portal_type="Cache Factory",
id = 'distributed_ram_cache_factory', id = 'distributed_ram_cache_factory',
container=portal_caches) container=portal_caches)
dram_cache_plugin = dram_cache_factory.newContent(portal_type="Distributed Ram Cache", container=dram_cache_factory) dram_cache_plugin = dram_cache_factory.newContent(
portal_type="Distributed Ram Cache", container=dram_cache_factory)
dram_cache_plugin.setIntIndex(0) dram_cache_plugin.setIntIndex(0)
## sql_cache_factory (to test SQL Cache Plugin) ## sql_cache_factory (to test SQL Cache Plugin)
sql_cache_factory = portal_caches.newContent(portal_type="Cache Factory", sql_cache_factory = portal_caches.newContent(portal_type="Cache Factory",
id = 'sql_cache_factory', id = 'sql_cache_factory',
container=portal_caches) container=portal_caches)
sql_cache_plugin = sql_cache_factory.newContent(portal_type="SQL Cache", container=sql_cache_factory) sql_cache_plugin = sql_cache_factory.newContent(
portal_type="SQL Cache", container=sql_cache_factory)
sql_cache_plugin.setIntIndex(0) sql_cache_plugin.setIntIndex(0)
## erp5_user_factory (to test a combination of all cache plugins) ## erp5_user_factory (to test a combination of all cache plugins)
...@@ -142,11 +147,14 @@ class TestCacheTool(ERP5TypeTestCase): ...@@ -142,11 +147,14 @@ class TestCacheTool(ERP5TypeTestCase):
id = "erp5_user_factory", id = "erp5_user_factory",
container=portal_caches) container=portal_caches)
ram_cache_plugin = erp5_user_factory.newContent(portal_type="Ram Cache", container=erp5_user_factory) ram_cache_plugin = erp5_user_factory.newContent(
portal_type="Ram Cache", container=erp5_user_factory)
ram_cache_plugin.setIntIndex(0) ram_cache_plugin.setIntIndex(0)
dram_cache_plugin = erp5_user_factory.newContent(portal_type="Distributed Ram Cache", container=erp5_user_factory) dram_cache_plugin = erp5_user_factory.newContent(
portal_type="Distributed Ram Cache", container=erp5_user_factory)
dram_cache_plugin.setIntIndex(1) dram_cache_plugin.setIntIndex(1)
sql_cache_plugin = erp5_user_factory.newContent(portal_type="SQL Cache", container=erp5_user_factory) sql_cache_plugin = erp5_user_factory.newContent(
portal_type="SQL Cache", container=erp5_user_factory)
sql_cache_plugin.setIntIndex(2) sql_cache_plugin.setIntIndex(2)
## ##
...@@ -187,7 +195,8 @@ def veryExpensiveMethod(value): ...@@ -187,7 +195,8 @@ def veryExpensiveMethod(value):
result = veryExpensiveMethod(value) result = veryExpensiveMethod(value)
return result return result
""" """
portal.manage_addProduct['PythonScripts'].manage_addPythonScript(id=py_script_id) portal.manage_addProduct['PythonScripts'].manage_addPythonScript(
id=py_script_id)
py_script_obj = getattr(portal, py_script_id) py_script_obj = getattr(portal, py_script_id)
py_script_obj.ZPythonScript_edit(py_script_params, py_script_body) py_script_obj.ZPythonScript_edit(py_script_params, py_script_body)
get_transaction().commit() get_transaction().commit()
...@@ -204,8 +213,12 @@ return result ...@@ -204,8 +213,12 @@ return result
from Products.ERP5Type.Cache import CachingMethod from Products.ERP5Type.Cache import CachingMethod
py_script_id = "testCachedMethod" py_script_id = "testCachedMethod"
py_script_obj = getattr(portal, py_script_id) py_script_obj = getattr(portal, py_script_id)
for cf_name in ('ram_cache_factory', 'distributed_ram_cache_factory', 'sql_cache_factory'): for cf_name in ('ram_cache_factory',
my_cache = CachingMethod(py_script_obj, 'py_script_obj', cache_factory=cf_name) 'distributed_ram_cache_factory',
'sql_cache_factory'):
my_cache = CachingMethod(py_script_obj,
'py_script_obj',
cache_factory=cf_name)
self._cacheFactoryInstanceTest(my_cache, cf_name) self._cacheFactoryInstanceTest(my_cache, cf_name)
def test_06_CacheFactoryMultiPlugins(self, quiet=0, run=run_all_test): def test_06_CacheFactoryMultiPlugins(self, quiet=0, run=run_all_test):
...@@ -213,7 +226,8 @@ return result ...@@ -213,7 +226,8 @@ return result
if not run: if not run:
return return
if not quiet: if not quiet:
message = '\nTest combination of available cache plugins under a cache factory' message = '\nTest combination of available cache plugins under a cache'\
' factory'
ZopeTestCase._print(message) ZopeTestCase._print(message)
LOG('Testing... ',0,message) LOG('Testing... ',0,message)
portal = self.getPortal() portal = self.getPortal()
...@@ -221,7 +235,9 @@ return result ...@@ -221,7 +235,9 @@ return result
py_script_id = "testCachedMethod" py_script_id = "testCachedMethod"
py_script_obj = getattr(portal, py_script_id) py_script_obj = getattr(portal, py_script_id)
cf_name = 'erp5_user_factory' cf_name = 'erp5_user_factory'
my_cache = CachingMethod(py_script_obj, 'py_script_obj', cache_factory=cf_name) my_cache = CachingMethod(py_script_obj,
'py_script_obj',
cache_factory=cf_name)
self._cacheFactoryInstanceTest(my_cache, cf_name) self._cacheFactoryInstanceTest(my_cache, cf_name)
def _cacheFactoryInstanceTest(self, my_cache, cf_name): def _cacheFactoryInstanceTest(self, my_cache, cf_name):
...@@ -244,9 +260,10 @@ return result ...@@ -244,9 +260,10 @@ return result
calculation_time = end-start calculation_time = end-start
print "\n\tCalculation time (2nd call)", calculation_time print "\n\tCalculation time (2nd call)", calculation_time
## check if cache works by getting calculation_time for last cache operation # check if cache works by getting calculation_time for last cache
## even remote cache must have access time less than a second :-) # operation even remote cache must have access time less than a second.
## if it's greater than method wasn't previously cached and was calculated instead # if it's greater than method wasn't previously cached and was calculated
# instead
self.assert_(1.0 > calculation_time) self.assert_(1.0 > calculation_time)
## check if equal. ## check if equal.
......
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