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
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 16:31:21 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html 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
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
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
|
|
|
|
2016-05-07 18:26:09 +00:00
|
|
|
/**
|
|
|
|
* APC extension to be used
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $_apcExtension = 'apc';
|
|
|
|
|
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() {
|
2012-04-16 02:20:34 +00:00
|
|
|
parent::setUp();
|
2016-05-07 06:42:37 +00:00
|
|
|
$hasApc = extension_loaded('apc') || extension_loaded('apcu');
|
|
|
|
$this->skipIf(!$hasApc, 'Apc is not installed or configured properly.');
|
2011-05-31 00:49:46 +00:00
|
|
|
|
2015-07-26 13:35:03 +00:00
|
|
|
if (PHP_SAPI === 'cli') {
|
2013-07-19 14:50:46 +00:00
|
|
|
$this->skipIf(!ini_get('apc.enable_cli'), 'APC is not enabled for the CLI.');
|
|
|
|
}
|
|
|
|
|
2016-05-07 18:26:09 +00:00
|
|
|
if (extension_loaded('apcu')) {
|
|
|
|
$this->_apcExtension = 'apcu';
|
|
|
|
}
|
|
|
|
|
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() {
|
2012-04-16 02:20:34 +00:00
|
|
|
parent::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');
|
2012-03-25 23:47:08 +00:00
|
|
|
Cache::drop('apc_groups');
|
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() {
|
2016-05-07 06:42:37 +00:00
|
|
|
$hasSupport = function_exists('apc_dec') || function_exists('apcu_dec');
|
|
|
|
$this->skipIf(!$hasSupport, 'No apc_dec()/apcu_dec() function, cannot test decrement().');
|
2011-05-31 00:49:46 +00:00
|
|
|
|
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() {
|
2016-05-07 06:42:37 +00:00
|
|
|
$hasSupport = function_exists('apc_inc') || function_exists('apcu_inc');
|
|
|
|
$this->skipIf(!function_exists('apc_inc'), 'No apc_inc()/apcu_inc() function, cannot test increment().');
|
2011-05-31 00:49:46 +00:00
|
|
|
|
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() {
|
2016-05-07 18:26:09 +00:00
|
|
|
$storeFunc = $this->_apcExtension . '_store';
|
|
|
|
$fetchFunc = $this->_apcExtension . '_fetch';
|
|
|
|
$deleteFunc = $this->_apcExtension . '_delete';
|
|
|
|
|
|
|
|
$storeFunc('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'));
|
2016-05-07 18:26:09 +00:00
|
|
|
$this->assertEquals('survive', $fetchFunc('not_cake'));
|
|
|
|
$deleteFunc('not_cake');
|
2010-09-18 16:52:08 +00:00
|
|
|
}
|
2012-03-25 23:47:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests that configuring groups for stored keys return the correct values when read/written
|
|
|
|
* Shows that altering the group value is equivalent to deleting all keys under the same
|
|
|
|
* group
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testGroupsReadWrite() {
|
2016-05-07 18:26:09 +00:00
|
|
|
$incFunc = $this->_apcExtension . '_inc';
|
2012-03-27 03:32:26 +00:00
|
|
|
Cache::config('apc_groups', array(
|
|
|
|
'engine' => 'Apc',
|
|
|
|
'duration' => 0,
|
|
|
|
'groups' => array('group_a', 'group_b'),
|
|
|
|
'prefix' => 'test_'
|
|
|
|
));
|
2012-03-25 23:47:08 +00:00
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value', 'apc_groups'));
|
|
|
|
$this->assertEquals('value', Cache::read('test_groups', 'apc_groups'));
|
|
|
|
|
2016-05-07 18:26:09 +00:00
|
|
|
$incFunc('test_group_a');
|
2012-03-25 23:47:08 +00:00
|
|
|
$this->assertFalse(Cache::read('test_groups', 'apc_groups'));
|
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value2', 'apc_groups'));
|
|
|
|
$this->assertEquals('value2', Cache::read('test_groups', 'apc_groups'));
|
|
|
|
|
2016-05-07 18:26:09 +00:00
|
|
|
$incFunc('test_group_b');
|
2012-03-25 23:47:08 +00:00
|
|
|
$this->assertFalse(Cache::read('test_groups', 'apc_groups'));
|
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value3', 'apc_groups'));
|
|
|
|
$this->assertEquals('value3', Cache::read('test_groups', 'apc_groups'));
|
|
|
|
}
|
2012-03-25 23:52:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests that deleteing from a groups-enabled config is possible
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testGroupDelete() {
|
2012-03-27 03:32:26 +00:00
|
|
|
Cache::config('apc_groups', array(
|
|
|
|
'engine' => 'Apc',
|
|
|
|
'duration' => 0,
|
|
|
|
'groups' => array('group_a', 'group_b'),
|
|
|
|
'prefix' => 'test_'
|
|
|
|
));
|
2012-03-25 23:52:32 +00:00
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value', 'apc_groups'));
|
|
|
|
$this->assertEquals('value', Cache::read('test_groups', 'apc_groups'));
|
|
|
|
$this->assertTrue(Cache::delete('test_groups', 'apc_groups'));
|
|
|
|
|
|
|
|
$this->assertFalse(Cache::read('test_groups', 'apc_groups'));
|
|
|
|
}
|
2012-03-26 00:15:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test clearing a cache group
|
|
|
|
*
|
|
|
|
* @return void
|
2013-01-11 14:06:54 +00:00
|
|
|
*/
|
2012-03-26 00:15:32 +00:00
|
|
|
public function testGroupClear() {
|
2012-03-27 03:32:26 +00:00
|
|
|
Cache::config('apc_groups', array(
|
|
|
|
'engine' => 'Apc',
|
|
|
|
'duration' => 0,
|
|
|
|
'groups' => array('group_a', 'group_b'),
|
|
|
|
'prefix' => 'test_'
|
|
|
|
));
|
2012-03-26 00:15:32 +00:00
|
|
|
|
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value', 'apc_groups'));
|
|
|
|
$this->assertTrue(Cache::clearGroup('group_a', 'apc_groups'));
|
|
|
|
$this->assertFalse(Cache::read('test_groups', 'apc_groups'));
|
|
|
|
|
|
|
|
$this->assertTrue(Cache::write('test_groups', 'value2', 'apc_groups'));
|
|
|
|
$this->assertTrue(Cache::clearGroup('group_b', 'apc_groups'));
|
|
|
|
$this->assertFalse(Cache::read('test_groups', 'apc_groups'));
|
|
|
|
}
|
2015-07-27 21:42:00 +00:00
|
|
|
|
|
|
|
/**
|
2015-08-10 10:06:19 +00:00
|
|
|
* Test add method.
|
2015-07-27 21:42:00 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAdd() {
|
|
|
|
Cache::delete('test_add_key', 'apc');
|
|
|
|
|
|
|
|
$result = Cache::add('test_add_key', 'test data', 'apc');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$expected = 'test data';
|
|
|
|
$result = Cache::read('test_add_key', 'apc');
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
|
|
|
|
$result = Cache::add('test_add_key', 'test data 2', 'apc');
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|