2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* CacheTest 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-18 17:55:58 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5432
|
|
|
|
* @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-11-17 05:05:14 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* CacheTest class
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-06-02 17:35:56 +00:00
|
|
|
class CacheTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2008-10-15 00:55:20 +00:00
|
|
|
* setUp method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-10-15 00:55:20 +00:00
|
|
|
function setUp() {
|
2009-03-26 20:40:45 +00:00
|
|
|
$this->_cacheDisable = Configure::read('Cache.disable');
|
|
|
|
Configure::write('Cache.disable', false);
|
2008-10-15 00:55:20 +00:00
|
|
|
|
2009-03-26 20:40:45 +00:00
|
|
|
$this->_defaultCacheConfig = Cache::config('default');
|
|
|
|
Cache::config('default', array('engine' => 'File', 'path' => TMP . 'tests'));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2009-03-26 20:40:45 +00:00
|
|
|
* tearDown method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-03-26 20:40:45 +00:00
|
|
|
function tearDown() {
|
|
|
|
Configure::write('Cache.disable', $this->_cacheDisable);
|
|
|
|
Cache::config('default', $this->_defaultCacheConfig['settings']);
|
2008-06-02 17:35:56 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testConfig method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testConfig() {
|
|
|
|
$settings = array('engine' => 'File', 'path' => TMP . 'tests', 'prefix' => 'cake_test_');
|
|
|
|
$results = Cache::config('new', $settings);
|
|
|
|
$this->assertEqual($results, Cache::config('new'));
|
2009-12-28 18:52:50 +00:00
|
|
|
$this->assertTrue(isset($results['engine']));
|
|
|
|
$this->assertTrue(isset($results['settings']));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-02-13 23:51:39 +00:00
|
|
|
/**
|
|
|
|
* Check that no fatal errors are issued doing normal things when Cache.disable is true.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testNonFatalErrorsWithCachedisable() {
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
Cache::config('test', array('engine' => 'File', 'path' => TMP, 'prefix' => 'error_test_'));
|
|
|
|
|
|
|
|
Cache::write('no_save', 'Noooo!', 'test');
|
|
|
|
Cache::read('no_save', 'test');
|
|
|
|
Cache::delete('no_save', 'test');
|
|
|
|
Cache::set('duration', '+10 minutes');
|
|
|
|
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
}
|
|
|
|
|
2009-11-14 07:19:11 +00:00
|
|
|
/**
|
|
|
|
* test configuring CacheEngines in App/libs
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-15 01:24:18 +00:00
|
|
|
*/
|
2010-01-21 18:24:22 +00:00
|
|
|
function testConfigWithLibAndPluginEngines() {
|
2009-11-14 07:19:11 +00:00
|
|
|
App::build(array(
|
|
|
|
'libs' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'libs' . DS),
|
|
|
|
'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS)
|
|
|
|
), true);
|
|
|
|
|
|
|
|
$settings = array('engine' => 'TestAppCache', 'path' => TMP, 'prefix' => 'cake_test_');
|
|
|
|
$result = Cache::config('libEngine', $settings);
|
|
|
|
$this->assertEqual($result, Cache::config('libEngine'));
|
|
|
|
|
|
|
|
$settings = array('engine' => 'TestPlugin.TestPluginCache', 'path' => TMP, 'prefix' => 'cake_test_');
|
|
|
|
$result = Cache::config('pluginLibEngine', $settings);
|
|
|
|
$this->assertEqual($result, Cache::config('pluginLibEngine'));
|
2009-11-14 18:09:43 +00:00
|
|
|
|
2009-11-15 01:18:58 +00:00
|
|
|
Cache::drop('libEngine');
|
|
|
|
Cache::drop('pluginLibEngine');
|
2009-11-14 18:09:43 +00:00
|
|
|
|
|
|
|
App::build();
|
2009-11-14 07:19:11 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 16:17:20 +00:00
|
|
|
/**
|
|
|
|
* testInvalidConfig method
|
|
|
|
*
|
|
|
|
* Test that the cache class doesn't cause fatal errors with a partial path
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testInvaidConfig() {
|
2010-02-28 17:15:25 +00:00
|
|
|
$this->expectError();
|
2009-08-03 16:17:20 +00:00
|
|
|
Cache::config('Invalid', array(
|
|
|
|
'engine' => 'File',
|
|
|
|
'duration' => '+1 year',
|
|
|
|
'prefix' => 'testing_invalid_',
|
|
|
|
'path' => 'data/',
|
|
|
|
'serialize' => true
|
|
|
|
));
|
|
|
|
$read = Cache::read('Test', 'Invalid');
|
|
|
|
$this->assertEqual($read, null);
|
|
|
|
}
|
|
|
|
|
2010-04-24 00:41:29 +00:00
|
|
|
/**
|
|
|
|
* test that trying to configure classes that don't extend CacheEngine fail.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAttemptingToConfigureANonCacheEngineClass() {
|
2010-05-13 04:43:40 +00:00
|
|
|
$this->getMock('StdClass', array(), array(), 'RubbishEngine');
|
2010-04-24 00:41:29 +00:00
|
|
|
$this->expectException();
|
|
|
|
Cache::config('Garbage', array(
|
|
|
|
'engine' => 'Rubbish'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testConfigChange method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testConfigChange() {
|
2009-03-26 20:40:45 +00:00
|
|
|
$_cacheConfigSessions = Cache::config('sessions');
|
|
|
|
$_cacheConfigTests = Cache::config('tests');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = Cache::config('sessions', array('engine'=> 'File', 'path' => TMP . 'sessions'));
|
2009-11-17 05:05:14 +00:00
|
|
|
$this->assertEqual($result['settings'], Cache::settings('sessions'));
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = Cache::config('tests', array('engine'=> 'File', 'path' => TMP . 'tests'));
|
2009-11-17 05:05:14 +00:00
|
|
|
$this->assertEqual($result['settings'], Cache::settings('tests'));
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Cache::config('sessions', $_cacheConfigSessions['settings']);
|
|
|
|
Cache::config('tests', $_cacheConfigTests['settings']);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-11-17 02:58:27 +00:00
|
|
|
/**
|
|
|
|
* test that calling config() sets the 'default' configuration up.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testConfigSettingDefaultConfigKey() {
|
|
|
|
Cache::config('test_name', array('engine' => 'File', 'prefix' => 'test_name_'));
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
Cache::write('value_one', 'I am cached', 'test_name');
|
|
|
|
$result = Cache::read('value_one', 'test_name');
|
2009-11-17 02:58:27 +00:00
|
|
|
$this->assertEqual($result, 'I am cached');
|
|
|
|
|
|
|
|
$result = Cache::read('value_one');
|
|
|
|
$this->assertEqual($result, null);
|
|
|
|
|
2009-12-28 18:52:50 +00:00
|
|
|
Cache::write('value_one', 'I am in default config!');
|
2009-11-17 02:58:27 +00:00
|
|
|
$result = Cache::read('value_one');
|
2009-12-28 18:52:50 +00:00
|
|
|
$this->assertEqual($result, 'I am in default config!');
|
2009-11-17 02:58:27 +00:00
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$result = Cache::read('value_one', 'test_name');
|
2009-11-17 02:58:27 +00:00
|
|
|
$this->assertEqual($result, 'I am cached');
|
2010-02-13 23:51:39 +00:00
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
Cache::delete('value_one', 'test_name');
|
|
|
|
Cache::delete('value_one', 'default');
|
2009-11-17 02:58:27 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testWritingWithConfig method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testWritingWithConfig() {
|
2009-03-26 20:40:45 +00:00
|
|
|
$_cacheConfigSessions = Cache::config('sessions');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Cache::write('test_somthing', 'this is the test data', 'tests');
|
|
|
|
|
|
|
|
$expected = array(
|
2010-07-12 03:16:56 +00:00
|
|
|
'path' => TMP . 'sessions' . DS,
|
2008-05-30 11:40:08 +00:00
|
|
|
'prefix' => 'cake_',
|
|
|
|
'lock' => false,
|
|
|
|
'serialize' => true,
|
|
|
|
'duration' => 3600,
|
|
|
|
'probability' => 100,
|
|
|
|
'engine' => 'File',
|
2008-09-12 05:11:34 +00:00
|
|
|
'isWindows' => DIRECTORY_SEPARATOR == '\\'
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
2009-11-17 05:05:14 +00:00
|
|
|
$this->assertEqual($expected, Cache::settings('sessions'));
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Cache::config('sessions', $_cacheConfigSessions['settings']);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-11-14 18:09:43 +00:00
|
|
|
/**
|
2010-02-13 23:51:39 +00:00
|
|
|
* test that configured returns an array of the currently configured cache
|
2009-11-14 18:09:43 +00:00
|
|
|
* settings
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-15 01:24:18 +00:00
|
|
|
*/
|
2009-11-14 18:09:43 +00:00
|
|
|
function testConfigured() {
|
|
|
|
$result = Cache::configured();
|
|
|
|
$this->assertTrue(in_array('_cake_core_', $result));
|
|
|
|
$this->assertTrue(in_array('default', $result));
|
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testInitSettings method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testInitSettings() {
|
2009-11-17 05:09:22 +00:00
|
|
|
Cache::config('default', array('engine' => 'File', 'path' => TMP . 'tests'));
|
2009-03-26 20:40:45 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$settings = Cache::settings();
|
|
|
|
$expecting = array(
|
|
|
|
'engine' => 'File',
|
|
|
|
'duration'=> 3600,
|
|
|
|
'probability' => 100,
|
|
|
|
'path'=> TMP . 'tests',
|
|
|
|
'prefix'=> 'cake_',
|
|
|
|
'lock' => false,
|
2008-07-26 20:00:20 +00:00
|
|
|
'serialize'=> true,
|
2008-09-12 05:11:34 +00:00
|
|
|
'isWindows' => DIRECTORY_SEPARATOR == '\\'
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$this->assertEqual($settings, $expecting);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-11-14 18:09:43 +00:00
|
|
|
/**
|
2010-02-13 23:51:39 +00:00
|
|
|
* test that drop removes cache configs, and that further attempts to use that config
|
2009-11-14 18:09:43 +00:00
|
|
|
* do not work.
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-15 01:24:18 +00:00
|
|
|
*/
|
2009-11-17 02:58:27 +00:00
|
|
|
function testDrop() {
|
2009-11-14 18:09:43 +00:00
|
|
|
App::build(array(
|
|
|
|
'libs' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'libs' . DS),
|
|
|
|
'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS)
|
|
|
|
), true);
|
|
|
|
|
2009-11-15 01:18:58 +00:00
|
|
|
$result = Cache::drop('some_config_that_does_not_exist');
|
2009-11-14 18:09:43 +00:00
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
$_testsConfig = Cache::config('tests');
|
2009-11-15 01:18:58 +00:00
|
|
|
$result = Cache::drop('tests');
|
2009-11-14 18:09:43 +00:00
|
|
|
$this->assertTrue($result);
|
2010-02-13 23:51:39 +00:00
|
|
|
|
2009-11-14 18:09:43 +00:00
|
|
|
Cache::config('unconfigTest', array(
|
|
|
|
'engine' => 'TestAppCache'
|
|
|
|
));
|
2009-11-17 05:05:14 +00:00
|
|
|
$this->assertTrue(Cache::isInitialized('unconfigTest'));
|
2009-11-14 18:09:43 +00:00
|
|
|
|
2009-11-15 01:18:58 +00:00
|
|
|
$this->assertTrue(Cache::drop('unconfigTest'));
|
2009-11-14 18:09:43 +00:00
|
|
|
$this->assertFalse(Cache::isInitialized('TestAppCache'));
|
|
|
|
|
|
|
|
Cache::config('tests', $_testsConfig);
|
|
|
|
App::build();
|
|
|
|
}
|
|
|
|
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testWriteEmptyValues 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 testWriteEmptyValues() {
|
|
|
|
Cache::write('App.falseTest', false);
|
|
|
|
$this->assertIdentical(Cache::read('App.falseTest'), false);
|
|
|
|
|
|
|
|
Cache::write('App.trueTest', true);
|
|
|
|
$this->assertIdentical(Cache::read('App.trueTest'), true);
|
|
|
|
|
|
|
|
Cache::write('App.nullTest', null);
|
|
|
|
$this->assertIdentical(Cache::read('App.nullTest'), null);
|
|
|
|
|
|
|
|
Cache::write('App.zeroTest', 0);
|
|
|
|
$this->assertIdentical(Cache::read('App.zeroTest'), 0);
|
|
|
|
|
|
|
|
Cache::write('App.zeroTest2', '0');
|
|
|
|
$this->assertIdentical(Cache::read('App.zeroTest2'), '0');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-07-24 01:40:57 +00:00
|
|
|
/**
|
|
|
|
* Test that failed writes cause errors to be triggered.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testWriteTriggerError() {
|
|
|
|
App::build(array(
|
|
|
|
'libs' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'libs' . DS),
|
|
|
|
'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS)
|
|
|
|
), true);
|
|
|
|
|
|
|
|
Cache::config('test_trigger', array('engine' => 'TestAppCache'));
|
|
|
|
try {
|
|
|
|
Cache::write('fail', 'value', 'test_trigger');
|
|
|
|
$this->fail('No exception thrown');
|
|
|
|
} catch (PHPUnit_Framework_Error $e) {
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
Cache::drop('test_trigger');
|
|
|
|
App::build();
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:40:45 +00:00
|
|
|
/**
|
|
|
|
* testCacheDisable method
|
|
|
|
*
|
|
|
|
* Check that the "Cache.disable" configuration and a change to it
|
|
|
|
* (even after a cache config has been setup) is taken into account.
|
|
|
|
*
|
|
|
|
* @link https://trac.cakephp.org/ticket/6236
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testCacheDisable() {
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
Cache::config('test_cache_disable_1', array('engine'=> 'File', 'path' => TMP . 'tests'));
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertTrue(Cache::write('key_1', 'hello', 'test_cache_disable_1'));
|
|
|
|
$this->assertIdentical(Cache::read('key_1', 'test_cache_disable_1'), 'hello');
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertFalse(Cache::write('key_2', 'hello', 'test_cache_disable_1'));
|
|
|
|
$this->assertFalse(Cache::read('key_2', 'test_cache_disable_1'));
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertTrue(Cache::write('key_3', 'hello', 'test_cache_disable_1'));
|
|
|
|
$this->assertIdentical(Cache::read('key_3', 'test_cache_disable_1'), 'hello');
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
Cache::config('test_cache_disable_2', array('engine'=> 'File', 'path' => TMP . 'tests'));
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertFalse(Cache::write('key_4', 'hello', 'test_cache_disable_2'));
|
|
|
|
$this->assertFalse(Cache::read('key_4', 'test_cache_disable_2'));
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertTrue(Cache::write('key_5', 'hello', 'test_cache_disable_2'));
|
|
|
|
$this->assertIdentical(Cache::read('key_5', 'test_cache_disable_2'), 'hello');
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
|
2010-09-18 04:45:29 +00:00
|
|
|
$this->assertFalse(Cache::write('key_6', 'hello', 'test_cache_disable_2'));
|
|
|
|
$this->assertFalse(Cache::read('key_6', 'test_cache_disable_2'));
|
2009-03-26 20:40:45 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-28 02:29:58 +00:00
|
|
|
/**
|
|
|
|
* testSet method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testSet() {
|
2009-03-26 20:40:45 +00:00
|
|
|
$_cacheSet = Cache::set();
|
2008-07-28 02:29:58 +00:00
|
|
|
|
|
|
|
Cache::set(array('duration' => '+1 year'));
|
|
|
|
$data = Cache::read('test_cache');
|
2008-09-11 13:35:11 +00:00
|
|
|
$this->assertFalse($data);
|
2008-07-28 02:29:58 +00:00
|
|
|
|
2008-09-11 13:35:11 +00:00
|
|
|
$data = 'this is just a simple test of the cache system';
|
|
|
|
$write = Cache::write('test_cache', $data);
|
|
|
|
$this->assertTrue($write);
|
2008-07-28 02:29:58 +00:00
|
|
|
|
|
|
|
Cache::set(array('duration' => '+1 year'));
|
|
|
|
$data = Cache::read('test_cache');
|
2008-09-11 13:35:11 +00:00
|
|
|
$this->assertEqual($data, 'this is just a simple test of the cache system');
|
2008-07-28 02:29:58 +00:00
|
|
|
|
|
|
|
Cache::delete('test_cache');
|
|
|
|
|
|
|
|
$global = Cache::settings();
|
2009-03-26 20:40:45 +00:00
|
|
|
|
|
|
|
Cache::set($_cacheSet);
|
2008-07-28 02:29:58 +00:00
|
|
|
}
|
2009-11-17 02:58:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|