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
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2010-05-19 01:15:13 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, 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
|
2009-03-19 21:10:13 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs.cache
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5434
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-06-02 17:35:56 +00:00
|
|
|
if (!class_exists('Cache')) {
|
|
|
|
require LIBS . 'cache.php';
|
|
|
|
}
|
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
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs.cache
|
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
|
|
|
/**
|
|
|
|
* skip method
|
2008-07-28 02:29:58 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function skip() {
|
|
|
|
$skip = true;
|
2009-11-19 03:32:24 +00:00
|
|
|
if (function_exists('apc_store')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$skip = false;
|
|
|
|
}
|
2009-03-21 23:55:39 +00:00
|
|
|
$this->skipIf($skip, '%s Apc is not installed or configured properly');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
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
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function setUp() {
|
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
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
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
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
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 = '';
|
|
|
|
$this->assertEqual($result, $expecting);
|
|
|
|
|
|
|
|
$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;
|
|
|
|
$this->assertEqual($result, $expecting);
|
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
|
|
|
|
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
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
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);
|
|
|
|
|
2010-09-18 16:32:43 +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
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testDeleteCache() {
|
|
|
|
$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
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-01-21 19:14:26 +00:00
|
|
|
function testDecrement() {
|
|
|
|
if ($this->skipIf(!function_exists('apc_dec'), 'No apc_dec() function, cannot test decrement() %s')) {
|
|
|
|
return;
|
|
|
|
}
|
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');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertEqual(4, $result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_decrement', 'apc');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertEqual(4, $result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::decrement('test_decrement', 2, 'apc');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertEqual(2, $result);
|
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_decrement', 'apc');
|
2010-01-21 16:41:44 +00:00
|
|
|
$this->assertEqual(2, $result);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testIncrement method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-01-21 19:14:26 +00:00
|
|
|
function testIncrement() {
|
|
|
|
if ($this->skipIf(!function_exists('apc_inc'), 'No apc_inc() function, cannot test increment() %s')) {
|
|
|
|
return;
|
|
|
|
}
|
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');
|
2010-02-28 17:15:25 +00:00
|
|
|
$this->assertEqual(6, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_increment', 'apc');
|
2010-02-28 17:15:25 +00:00
|
|
|
$this->assertEqual(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');
|
2010-02-28 17:15:25 +00:00
|
|
|
$this->assertEqual(8, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
|
2010-09-18 16:32:43 +00:00
|
|
|
$result = Cache::read('test_increment', 'apc');
|
2010-02-28 17:15:25 +00:00
|
|
|
$this->assertEqual(8, $result);
|
2010-01-21 16:41:44 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|