From 282210962cebc9833030879c81ad26e0e22913aa Mon Sep 17 00:00:00 2001 From: alban <> Date: Tue, 31 Jan 2006 10:01:33 +0000 Subject: TAPCCache unit test. --- tests/UnitTests/framework/Data/utAPCCache.php | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 tests/UnitTests/framework/Data/utAPCCache.php (limited to 'tests') diff --git a/tests/UnitTests/framework/Data/utAPCCache.php b/tests/UnitTests/framework/Data/utAPCCache.php new file mode 100644 index 00000000..b9e0f3e8 --- /dev/null +++ b/tests/UnitTests/framework/Data/utAPCCache.php @@ -0,0 +1,45 @@ +fail('TAPCCache is not tested. PHP extension "apc" is required by TAPCCache.'); + return; + } + //compatibility test as this time of writing 01/02/2006 (dd//mm//yyyy) + $apc_default_ini = $apc_default=ini_get('apc.cache_by_default'); + if ($apc_default=='Off' || $apc_default='off') + $apc_default=0; + elseif($apc_default=='On' || $apc_default='on') + $apc_default=1; + $apc_default=(boolean)$apc_default; + if($apc_default) { + $this->fail('You have to disable apc.cache_by_default in your php.ini : you have apc.cache_by_default='.$apc_default_ini.' but currently prado won\'t execute without errors with APC caching all prado php files.'); + return; + } + } + + public function testBasicOperations() + { + if(!extension_loaded('apc')) + { + $this->fail('TAPCCache is not tested. PHP extension "apc" is required by TAPCCache.'); + return; + } + $cache=new TAPCCache; + $cache->init(null); + $this->setCache($cache); + $this->basicOperations(); + $this->setCache(null); + } +} + +?> \ No newline at end of file -- cgit v1.2.3