Adding tests to disprove #6236. Closes #6236.

Removing return from testWriteEmptyValues method to enable the test.
Updating CacheTest to revert settings changed in the tests.



git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8131 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
davidpersson 2009-03-26 20:40:45 +00:00
parent 9f0cbb00ce
commit 5d23f46118

View file

@ -41,20 +41,24 @@ class CacheTest extends CakeTestCase {
* @return void * @return void
*/ */
function setUp() { function setUp() {
if (!isset($this->config)) { $this->_cacheDisable = Configure::read('Cache.disable');
$this->config = Cache::config('default'); Configure::write('Cache.disable', false);
}
Cache::config('default', array('engine'=> 'File', 'path' => CACHE)); $this->_defaultCacheConfig = Cache::config('default');
Cache::config('default', array('engine' => 'File', 'path' => TMP . 'tests'));
Cache::engine('File', array('path' => TMP . 'tests'));
} }
/** /**
* end method * tearDown method
* *
* @access public * @access public
* @return void * @return void
*/ */
function end() { function tearDown() {
Cache::config('default', $this->config['settings']); Configure::write('Cache.disable', $this->_cacheDisable);
Cache::config('default', $this->_defaultCacheConfig['settings']);
Cache::engine('File');
} }
/** /**
* testConfig method * testConfig method
@ -74,11 +78,17 @@ class CacheTest extends CakeTestCase {
* @return void * @return void
*/ */
function testConfigChange() { function testConfigChange() {
$_cacheConfigSessions = Cache::config('sessions');
$_cacheConfigTests = Cache::config('tests');
$result = Cache::config('sessions', array('engine'=> 'File', 'path' => TMP . 'sessions')); $result = Cache::config('sessions', array('engine'=> 'File', 'path' => TMP . 'sessions'));
$this->assertEqual($result['settings'], Cache::settings('File')); $this->assertEqual($result['settings'], Cache::settings('File'));
$result = Cache::config('tests', array('engine'=> 'File', 'path' => TMP . 'tests')); $result = Cache::config('tests', array('engine'=> 'File', 'path' => TMP . 'tests'));
$this->assertEqual($result['settings'], Cache::settings('File')); $this->assertEqual($result['settings'], Cache::settings('File'));
Cache::config('sessions', $_cacheConfigSessions['settings']);
Cache::config('tests', $_cacheConfigTests['settings']);
} }
/** /**
* testWritingWithConfig method * testWritingWithConfig method
@ -87,7 +97,8 @@ class CacheTest extends CakeTestCase {
* @return void * @return void
*/ */
function testWritingWithConfig() { function testWritingWithConfig() {
Cache::config('sessions'); $_cacheConfigSessions = Cache::config('sessions');
Cache::write('test_somthing', 'this is the test data', 'tests'); Cache::write('test_somthing', 'this is the test data', 'tests');
$expected = array( $expected = array(
@ -101,6 +112,8 @@ class CacheTest extends CakeTestCase {
'isWindows' => DIRECTORY_SEPARATOR == '\\' 'isWindows' => DIRECTORY_SEPARATOR == '\\'
); );
$this->assertEqual($expected, Cache::settings('File')); $this->assertEqual($expected, Cache::settings('File'));
Cache::config('sessions', $_cacheConfigSessions['settings']);
} }
/** /**
* testInitSettings method * testInitSettings method
@ -110,6 +123,7 @@ class CacheTest extends CakeTestCase {
*/ */
function testInitSettings() { function testInitSettings() {
Cache::engine('File', array('path' => TMP . 'tests')); Cache::engine('File', array('path' => TMP . 'tests'));
$settings = Cache::settings(); $settings = Cache::settings();
$expecting = array( $expecting = array(
'engine' => 'File', 'engine' => 'File',
@ -122,6 +136,8 @@ class CacheTest extends CakeTestCase {
'isWindows' => DIRECTORY_SEPARATOR == '\\' 'isWindows' => DIRECTORY_SEPARATOR == '\\'
); );
$this->assertEqual($settings, $expecting); $this->assertEqual($settings, $expecting);
Cache::engine('File');
} }
/** /**
* testWriteEmptyValues method * testWriteEmptyValues method
@ -130,8 +146,6 @@ class CacheTest extends CakeTestCase {
* @return void * @return void
*/ */
function testWriteEmptyValues() { function testWriteEmptyValues() {
return;
Cache::engine('File', array('path' => TMP . 'tests'));
Cache::write('App.falseTest', false); Cache::write('App.falseTest', false);
$this->assertIdentical(Cache::read('App.falseTest'), false); $this->assertIdentical(Cache::read('App.falseTest'), false);
@ -147,6 +161,49 @@ class CacheTest extends CakeTestCase {
Cache::write('App.zeroTest2', '0'); Cache::write('App.zeroTest2', '0');
$this->assertIdentical(Cache::read('App.zeroTest2'), '0'); $this->assertIdentical(Cache::read('App.zeroTest2'), '0');
} }
/**
* 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'));
$this->assertTrue(Cache::write('key_1', 'hello'));
$this->assertIdentical(Cache::read('key_1'), 'hello');
Configure::write('Cache.disable', true);
$this->assertFalse(Cache::write('key_2', 'hello'));
$this->assertFalse(Cache::read('key_2'));
Configure::write('Cache.disable', false);
$this->assertTrue(Cache::write('key_3', 'hello'));
$this->assertIdentical(Cache::read('key_3'), 'hello');
Configure::write('Cache.disable', true);
Cache::config('test_cache_disable_2', array('engine'=> 'File', 'path' => TMP . 'tests'));
$this->assertFalse(Cache::write('key_4', 'hello'));
$this->assertFalse(Cache::read('key_4'));
Configure::write('Cache.disable', false);
$this->assertTrue(Cache::write('key_5', 'hello'));
$this->assertIdentical(Cache::read('key_5'), 'hello');
Configure::write('Cache.disable', true);
$this->assertFalse(Cache::write('key_6', 'hello'));
$this->assertFalse(Cache::read('key_6'));
}
/** /**
* testSet method * testSet method
* *
@ -154,7 +211,7 @@ class CacheTest extends CakeTestCase {
* @return void * @return void
*/ */
function testSet() { function testSet() {
$write = false; $_cacheSet = Cache::set();
Cache::set(array('duration' => '+1 year')); Cache::set(array('duration' => '+1 year'));
$data = Cache::read('test_cache'); $data = Cache::read('test_cache');
@ -162,17 +219,17 @@ class CacheTest extends CakeTestCase {
$data = 'this is just a simple test of the cache system'; $data = 'this is just a simple test of the cache system';
$write = Cache::write('test_cache', $data); $write = Cache::write('test_cache', $data);
$this->assertTrue($write); $this->assertTrue($write);
Cache::set(array('duration' => '+1 year')); Cache::set(array('duration' => '+1 year'));
$data = Cache::read('test_cache'); $data = Cache::read('test_cache');
$this->assertEqual($data, 'this is just a simple test of the cache system'); $this->assertEqual($data, 'this is just a simple test of the cache system');
Cache::delete('test_cache'); Cache::delete('test_cache');
$global = Cache::settings(); $global = Cache::settings();
Cache::set($_cacheSet);
} }
} }
?> ?>