2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2008-10-30 17:30:26 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.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.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-10-30 17:30:26 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.cache
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5434
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @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';
|
|
|
|
}/**
|
2008-05-30 11:40:08 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.cache
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* MemcacheEngineTest class
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs.cache
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2008-11-19 21:19:23 +00:00
|
|
|
class MemcacheEngineTest extends CakeTestCase {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* skip method
|
2008-07-26 20:00:20 +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;
|
2008-11-19 21:19:23 +00:00
|
|
|
if (Cache::engine('Memcache')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$skip = false;
|
|
|
|
}
|
2008-11-19 21:19:23 +00:00
|
|
|
$this->skipIf($skip, 'Memcache is not installed or configured properly');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* setUp method
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function setUp() {
|
2008-06-02 17:35:56 +00:00
|
|
|
Cache::config('memcache', array('engine'=>'Memcache', 'prefix' => 'cake_'));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-11-19 21:19:23 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function tearDown() {
|
|
|
|
Cache::config('default');
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testSettings method
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testSettings() {
|
|
|
|
$settings = Cache::settings();
|
|
|
|
$expecting = array('prefix' => 'cake_',
|
|
|
|
'duration'=> 3600,
|
|
|
|
'probability' => 100,
|
|
|
|
'servers' => array('127.0.0.1'),
|
|
|
|
'compress' => false,
|
|
|
|
'engine' => 'Memcache'
|
|
|
|
);
|
|
|
|
$this->assertEqual($settings, $expecting);
|
|
|
|
}
|
2008-11-19 21:19:23 +00:00
|
|
|
/**
|
|
|
|
* testSettings method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testMultipleServers() {
|
|
|
|
$servers = array('127.0.0.1:11211', '127.0.0.1:11222');
|
|
|
|
|
|
|
|
$Cache =& Cache::getInstance();
|
|
|
|
$MemCache =& $Cache->_Engine['Memcache'];
|
|
|
|
|
|
|
|
$available = true;
|
|
|
|
foreach($servers as $server) {
|
|
|
|
list($host, $port) = explode(':', $server);
|
|
|
|
if (!@$MemCache->__Memcache->connect($host, $port)) {
|
|
|
|
$available = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->skipIf(!$available, 'Need memcache servers at ' . implode(', ', $servers) . ' to run this test')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($MemCache->__Memcache);
|
|
|
|
$MemCache->init(array('engine' => 'Memcache', 'servers' => $servers));
|
|
|
|
|
|
|
|
$servers = array_keys($MemCache->__Memcache->getExtendedStats());
|
|
|
|
$settings = Cache::settings();
|
|
|
|
$this->assertEqual($servers, $settings['servers']);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testConnect method
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testConnect() {
|
|
|
|
$Cache =& Cache::getInstance();
|
|
|
|
$result = $Cache->_Engine['Memcache']->connect('127.0.0.1');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testReadAndWriteCache method
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testReadAndWriteCache() {
|
2009-02-06 22:56:06 +00:00
|
|
|
Cache::set(array('duration' => 1));
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = Cache::read('test');
|
|
|
|
$expecting = '';
|
|
|
|
$this->assertEqual($result, $expecting);
|
|
|
|
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2009-02-06 22:56:06 +00:00
|
|
|
$result = Cache::write('test', $data);
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = Cache::read('test');
|
|
|
|
$expecting = $data;
|
|
|
|
$this->assertEqual($result, $expecting);
|
2009-02-06 22:56:06 +00:00
|
|
|
|
|
|
|
Cache::delete('test');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testExpiry method
|
2008-07-26 20:00:20 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testExpiry() {
|
2009-02-06 22:56:06 +00:00
|
|
|
Cache::set(array('duration' => 1));
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = Cache::read('test');
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
2009-02-06 22:56:06 +00:00
|
|
|
$result = Cache::write('other_test', $data);
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
sleep(2);
|
|
|
|
$result = Cache::read('other_test');
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
2009-02-06 22:56:06 +00:00
|
|
|
Cache::set(array('duration' => "+1 second"));
|
2008-07-26 20:00:20 +00:00
|
|
|
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
|
|
|
$result = Cache::write('other_test', $data);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2009-02-06 22:56:06 +00:00
|
|
|
sleep(2);
|
2008-07-26 20:00:20 +00:00
|
|
|
$result = Cache::read('other_test');
|
2009-02-06 22:56:06 +00:00
|
|
|
$this->assertFalse($result);
|
2008-07-26 20:00:20 +00:00
|
|
|
|
|
|
|
Cache::engine('Memcache', array('duration' => '+1 second'));
|
|
|
|
sleep(2);
|
|
|
|
|
|
|
|
$result = Cache::read('other_test');
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
2009-02-11 23:00:19 +00:00
|
|
|
Cache::engine('Memcache', array('duration' => '+31 day'));
|
|
|
|
$data = 'this is a test of the emergency broadcasting system';
|
|
|
|
$result = Cache::write('long_expiry_test', $data);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
sleep(2);
|
|
|
|
$result = Cache::read('long_expiry_test');
|
|
|
|
$expecting = $data;
|
|
|
|
$this->assertEqual($result, $expecting);
|
|
|
|
|
|
|
|
$result = Cache::read('long_expiry_test');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2008-07-26 20:00:20 +00:00
|
|
|
Cache::engine('Memcache', array('duration' => 3600));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testDeleteCache method
|
2008-07-26 20:00:20 +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';
|
|
|
|
$result = Cache::write('delete_test', $data);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = Cache::delete('delete_test');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
}
|
2009-02-06 22:56:06 +00:00
|
|
|
?>
|