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); /** * This file is part of CodeIgniter 4 framework. * ..
Decoded Output download
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Cache;
use CodeIgniter\Cache\Handlers\BaseHandler;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockCache;
use PHPUnit\Framework\Attributes\Group;
/**
* @internal
*/
#[Group('Others')]
final class CacheMockTest extends CIUnitTestCase
{
public function testMockReturnsMockCacheClass(): void
{
$this->assertInstanceOf(BaseHandler::class, service('cache'));
$mock = mock(CacheFactory::class);
$this->assertInstanceOf(MockCache::class, $mock);
$this->assertInstanceOf(MockCache::class, service('cache'));
}
public function testMockCaching(): void
{
$mock = mock(CacheFactory::class);
// Ensure it stores the value normally
$mock->save('foo', 'bar');
$mock->assertHas('foo');
$mock->assertHasValue('foo', 'bar');
// Try it again with bypass on
$mock->bypass();
$mock->save('foo', 'bar');
$mock->assertMissing('foo');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Cache;
use CodeIgniter\Cache\Handlers\BaseHandler;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockCache;
use PHPUnit\Framework\Attributes\Group;
/**
* @internal
*/
#[Group('Others')]
final class CacheMockTest extends CIUnitTestCase
{
public function testMockReturnsMockCacheClass(): void
{
$this->assertInstanceOf(BaseHandler::class, service('cache'));
$mock = mock(CacheFactory::class);
$this->assertInstanceOf(MockCache::class, $mock);
$this->assertInstanceOf(MockCache::class, service('cache'));
}
public function testMockCaching(): void
{
$mock = mock(CacheFactory::class);
// Ensure it stores the value normally
$mock->save('foo', 'bar');
$mock->assertHas('foo');
$mock->assertHasValue('foo', 'bar');
// Try it again with bypass on
$mock->bypass();
$mock->save('foo', 'bar');
$mock->assertMissing('foo');
}
}
Function Calls
None |
Stats
MD5 | 804a8a52e983fe2ae119c0e70cc4c52c |
Eval Count | 0 |
Decode Time | 92 ms |