Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://..
Decoded Output download
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.7.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Cache\Engine;
use ArrayObject;
use Cake\Cache\Cache;
use Cake\TestSuite\TestCase;
/**
* ArrayEngineTest class
*/
class ArrayEngineTest extends TestCase
{
/**
* setUp method
*/
public function setUp(): void
{
parent::setUp();
Cache::enable();
$this->_configCache();
Cache::clearAll();
}
/**
* tearDown method
*/
public function tearDown(): void
{
parent::tearDown();
Cache::drop('array');
Cache::drop('array_groups');
}
/**
* Helper method for testing.
*
* @param array $config
*/
protected function _configCache($config = []): void
{
$defaults = [
'className' => 'Array',
'prefix' => 'cake_',
'warnOnWriteFailures' => true,
];
Cache::drop('array');
Cache::setConfig('array', array_merge($defaults, $config));
}
/**
* testReadAndWriteCache method
*/
public function testReadAndWriteCache(): void
{
$this->_configCache(['duration' => 1]);
$result = Cache::read('test', 'array');
$this->assertNull($result);
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('test', $data, 'array');
$this->assertTrue($result);
$result = Cache::read('test', 'array');
$expecting = $data;
$this->assertSame($expecting, $result);
Cache::delete('test', 'array');
}
/**
* testExpiry method
*/
public function testExpiry(): void
{
$this->_configCache(['duration' => 1]);
$result = Cache::read('test', 'array');
$this->assertNull($result);
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('other_test', $data, 'array');
$this->assertTrue($result);
sleep(2);
$result = Cache::read('other_test', 'array');
$this->assertNull($result);
}
/**
* testDeleteCache method
*/
public function testDeleteCache(): void
{
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('delete_test', $data, 'array');
$this->assertTrue($result);
$result = Cache::delete('delete_test', 'array');
$this->assertTrue($result);
}
/**
* testDecrement method
*/
public function testDecrement(): void
{
$result = Cache::write('test_decrement', 5, 'array');
$this->assertTrue($result);
$result = Cache::decrement('test_decrement', 1, 'array');
$this->assertSame(4, $result);
$result = Cache::read('test_decrement', 'array');
$this->assertSame(4, $result);
$result = Cache::decrement('test_decrement', 2, 'array');
$this->assertSame(2, $result);
$result = Cache::read('test_decrement', 'array');
$this->assertSame(2, $result);
}
/**
* testIncrement method
*/
public function testIncrement(): void
{
$result = Cache::write('test_increment', 5, 'array');
$this->assertTrue($result);
$result = Cache::increment('test_increment', 1, 'array');
$this->assertSame(6, $result);
$result = Cache::read('test_increment', 'array');
$this->assertSame(6, $result);
$result = Cache::increment('test_increment', 2, 'array');
$this->assertSame(8, $result);
$result = Cache::read('test_increment', 'array');
$this->assertSame(8, $result);
}
/**
* test the clearing of cache keys
*/
public function testClear(): void
{
Cache::write('some_value', 'value', 'array');
$result = Cache::clear('array');
$this->assertTrue($result);
$this->assertNull(Cache::read('some_value', 'array'));
}
/**
* 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
*/
public function testGroupsReadWrite(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 30,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertSame('value', Cache::read('test_groups', 'array_groups'));
Cache::clearGroup('group_a', 'array_groups');
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value2', 'array_groups'));
$this->assertSame('value2', Cache::read('test_groups', 'array_groups'));
Cache::clearGroup('group_b', 'array_groups');
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value3', 'array_groups'));
$this->assertSame('value3', Cache::read('test_groups', 'array_groups'));
}
/**
* Tests that deleting from a groups-enabled config is possible
*/
public function testGroupDelete(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 10,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertSame('value', Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::delete('test_groups', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
}
/**
* Test clearing a cache group
*/
public function testGroupClear(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 10,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertTrue(Cache::clearGroup('group_a', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value2', 'array_groups'));
$this->assertTrue(Cache::clearGroup('group_b', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
}
/**
* Test add
*/
public function testAdd(): void
{
Cache::delete('test_add_key', 'array');
$result = Cache::add('test_add_key', 'test data', 'array');
$this->assertTrue($result);
$expected = 'test data';
$result = Cache::read('test_add_key', 'array');
$this->assertSame($expected, $result);
$result = Cache::add('test_add_key', 'test data 2', 'array');
$this->assertFalse($result);
}
/**
* Test writeMany() with Traversable
*/
public function testWriteManyTraversable(): void
{
$data = new ArrayObject([
'a' => 1,
'b' => 'foo',
]);
$result = Cache::writeMany($data, 'array');
$this->assertTrue($result);
$this->assertSame(1, Cache::read('a', 'array'));
$this->assertSame('foo', Cache::read('b', 'array'));
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.7.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Cache\Engine;
use ArrayObject;
use Cake\Cache\Cache;
use Cake\TestSuite\TestCase;
/**
* ArrayEngineTest class
*/
class ArrayEngineTest extends TestCase
{
/**
* setUp method
*/
public function setUp(): void
{
parent::setUp();
Cache::enable();
$this->_configCache();
Cache::clearAll();
}
/**
* tearDown method
*/
public function tearDown(): void
{
parent::tearDown();
Cache::drop('array');
Cache::drop('array_groups');
}
/**
* Helper method for testing.
*
* @param array $config
*/
protected function _configCache($config = []): void
{
$defaults = [
'className' => 'Array',
'prefix' => 'cake_',
'warnOnWriteFailures' => true,
];
Cache::drop('array');
Cache::setConfig('array', array_merge($defaults, $config));
}
/**
* testReadAndWriteCache method
*/
public function testReadAndWriteCache(): void
{
$this->_configCache(['duration' => 1]);
$result = Cache::read('test', 'array');
$this->assertNull($result);
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('test', $data, 'array');
$this->assertTrue($result);
$result = Cache::read('test', 'array');
$expecting = $data;
$this->assertSame($expecting, $result);
Cache::delete('test', 'array');
}
/**
* testExpiry method
*/
public function testExpiry(): void
{
$this->_configCache(['duration' => 1]);
$result = Cache::read('test', 'array');
$this->assertNull($result);
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('other_test', $data, 'array');
$this->assertTrue($result);
sleep(2);
$result = Cache::read('other_test', 'array');
$this->assertNull($result);
}
/**
* testDeleteCache method
*/
public function testDeleteCache(): void
{
$data = 'this is a test of the emergency broadcasting system';
$result = Cache::write('delete_test', $data, 'array');
$this->assertTrue($result);
$result = Cache::delete('delete_test', 'array');
$this->assertTrue($result);
}
/**
* testDecrement method
*/
public function testDecrement(): void
{
$result = Cache::write('test_decrement', 5, 'array');
$this->assertTrue($result);
$result = Cache::decrement('test_decrement', 1, 'array');
$this->assertSame(4, $result);
$result = Cache::read('test_decrement', 'array');
$this->assertSame(4, $result);
$result = Cache::decrement('test_decrement', 2, 'array');
$this->assertSame(2, $result);
$result = Cache::read('test_decrement', 'array');
$this->assertSame(2, $result);
}
/**
* testIncrement method
*/
public function testIncrement(): void
{
$result = Cache::write('test_increment', 5, 'array');
$this->assertTrue($result);
$result = Cache::increment('test_increment', 1, 'array');
$this->assertSame(6, $result);
$result = Cache::read('test_increment', 'array');
$this->assertSame(6, $result);
$result = Cache::increment('test_increment', 2, 'array');
$this->assertSame(8, $result);
$result = Cache::read('test_increment', 'array');
$this->assertSame(8, $result);
}
/**
* test the clearing of cache keys
*/
public function testClear(): void
{
Cache::write('some_value', 'value', 'array');
$result = Cache::clear('array');
$this->assertTrue($result);
$this->assertNull(Cache::read('some_value', 'array'));
}
/**
* 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
*/
public function testGroupsReadWrite(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 30,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertSame('value', Cache::read('test_groups', 'array_groups'));
Cache::clearGroup('group_a', 'array_groups');
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value2', 'array_groups'));
$this->assertSame('value2', Cache::read('test_groups', 'array_groups'));
Cache::clearGroup('group_b', 'array_groups');
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value3', 'array_groups'));
$this->assertSame('value3', Cache::read('test_groups', 'array_groups'));
}
/**
* Tests that deleting from a groups-enabled config is possible
*/
public function testGroupDelete(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 10,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertSame('value', Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::delete('test_groups', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
}
/**
* Test clearing a cache group
*/
public function testGroupClear(): void
{
Cache::setConfig('array_groups', [
'engine' => 'array',
'duration' => 10,
'groups' => ['group_a', 'group_b'],
'prefix' => 'test_',
'warnOnWriteFailures' => true,
]);
$this->assertTrue(Cache::write('test_groups', 'value', 'array_groups'));
$this->assertTrue(Cache::clearGroup('group_a', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
$this->assertTrue(Cache::write('test_groups', 'value2', 'array_groups'));
$this->assertTrue(Cache::clearGroup('group_b', 'array_groups'));
$this->assertNull(Cache::read('test_groups', 'array_groups'));
}
/**
* Test add
*/
public function testAdd(): void
{
Cache::delete('test_add_key', 'array');
$result = Cache::add('test_add_key', 'test data', 'array');
$this->assertTrue($result);
$expected = 'test data';
$result = Cache::read('test_add_key', 'array');
$this->assertSame($expected, $result);
$result = Cache::add('test_add_key', 'test data 2', 'array');
$this->assertFalse($result);
}
/**
* Test writeMany() with Traversable
*/
public function testWriteManyTraversable(): void
{
$data = new ArrayObject([
'a' => 1,
'b' => 'foo',
]);
$result = Cache::writeMany($data, 'array');
$this->assertTrue($result);
$this->assertSame(1, Cache::read('a', 'array'));
$this->assertSame('foo', Cache::read('b', 'array'));
}
}
Function Calls
None |
Stats
MD5 | 4994c4479f8958cc7c0d62062ca3f459 |
Eval Count | 0 |
Decode Time | 89 ms |