2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-19 21:10:13 +00:00
|
|
|
* ApcEngineTest file
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-05-19 01:15:13 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-19 01:15:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Cache.Engine
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.5434
|
2010-10-03 16:27:27 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-03-06 04:56:31 +00:00
|
|
|
|
|
|
|
App::uses('Cache', 'Cache');
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-03-19 21:10:13 +00:00
|
|
|
* ApcEngineTest class
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Cache.Engine
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-01-21 19:14:26 +00:00
|
|
|
class ApcEngineTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* setUp method
|
2008-07-28 02:29:58 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function setUp() {
|
2011-05-31 00:49:46 +00:00
|
|
|
$this->skipIf(!function_exists('apc_store'), 'Apc is not installed or configured properly.');
|
|
|
|
|
2009-03-21 23:55:39 +00:00
|
|
|
$this->_cacheDisable = Configure::read('Cache.disable');
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
Cache::config('apc', array('engine' => 'Apc', 'prefix' => 'cake_'));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-18 17:55:58 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function tearDown() {
|
2009-03-21 23:55:39 +00:00
|
|
|
Configure::write('Cache.disable', $this->_cacheDisable);
|
2009-11-19 03:32:24 +00:00
|
|
|
Cache::drop('apc');
|
2009-03-18 17:55:58 +00:00
|
|
|
Cache::config('default');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testReadAndWriteCache method
|
2008-07-28 02:29:58 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testReadAndWriteCache() {
|
2010-09-18 16:32:43 +00:00
|
|
|
Cache::set(array('duration' => 1), 'apc');
|
2009-02-06 22:56:06 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$expecting = '';
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals($expecting, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('test', $data, 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$expecting = $data;
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals($expecting, $result);
|
2009-02-06 22:56:06 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
Cache::delete('test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2011-07-02 00:26:20 +00:00
|
|
|
/**
|
|
|
|
* Writing cache entries with duration = 0 (forever) should work.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-02-17 07:13:12 +00:00
|
|
|
public function testReadWriteDurationZero() {
|
2011-07-02 00:26:20 +00:00
|
|
|
Cache::config('apc', array('engine' => 'Apc', 'duration' => 0, 'prefix' => 'cake_'));
|
|
|
|
Cache::write('zero', 'Should save', 'apc');
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
$result = Cache::read('zero', 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals('Should save', $result);
|
2011-07-02 00:26:20 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testExpiry method
|
2008-07-28 02:29:58 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testExpiry() {
|
2010-09-18 16:32:43 +00:00
|
|
|
Cache::set(array('duration' => 1), 'apc');
|
2009-02-06 22:56:06 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('other_test', $data, 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
sleep(2);
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('other_test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($result);
|
|
|
|
|
2012-03-11 03:29:35 +00:00
|
|
|
Cache::set(array('duration' => 1), 'apc');
|
2009-02-06 22:56:06 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('other_test', $data, 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
sleep(2);
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('other_test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertFalse($result);
|
2009-02-06 22:56:06 +00:00
|
|
|
|
|
|
|
sleep(2);
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('other_test', 'apc');
|
2009-02-06 22:56:06 +00:00
|
|
|
$this->assertFalse($result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testDeleteCache method
|
2008-07-28 02:29:58 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testDeleteCache() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('delete_test', $data, 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::delete('delete_test', 'apc');
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2010-01-21 16:41:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* testDecrement method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testDecrement() {
|
2011-05-31 00:49:46 +00:00
|
|
|
$this->skipIf(!function_exists('apc_dec'), 'No apc_dec() function, cannot test decrement().');
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('test_decrement', 5, 'apc');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::decrement('test_decrement', 1, 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(4, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_decrement', 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(4, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::decrement('test_decrement', 2, 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(2, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_decrement', 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(2, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testIncrement method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testIncrement() {
|
2011-05-31 00:49:46 +00:00
|
|
|
$this->skipIf(!function_exists('apc_inc'), 'No apc_inc() function, cannot test increment().');
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::write('test_increment', 5, 'apc');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::increment('test_increment', 1, 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(6, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_increment', 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(6, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::increment('test_increment', 2, 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(8, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_increment', 'apc');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals(8, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
}
|
2010-09-18 16:52:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* test the clearing of cache keys
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testClear() {
|
2011-08-20 03:13:52 +00:00
|
|
|
apc_store('not_cake', 'survive');
|
2010-09-18 16:52:08 +00:00
|
|
|
Cache::write('some_value', 'value', 'apc');
|
|
|
|
|
|
|
|
$result = Cache::clear(false, 'apc');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
$this->assertFalse(Cache::read('some_value', 'apc'));
|
2011-08-20 03:13:52 +00:00
|
|
|
$this->assertEquals('survive', apc_fetch('not_cake'));
|
|
|
|
apc_delete('not_cake');
|
2010-09-18 16:52:08 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|