1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
<?php
namespace Illuminate\Tests\Cache;
use Illuminate\Cache\ArrayStore;
use Illuminate\Cache\CacheManager;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class CacheManagerTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testCustomDriverClosureBoundObjectIsCacheManager()
{
$cacheManager = new CacheManager([
'config' => [
'cache.stores.'.__CLASS__ => [
'driver' => __CLASS__,
],
],
]);
$driver = function () {
return $this;
};
$cacheManager->extend(__CLASS__, $driver);
$this->assertEquals($cacheManager, $cacheManager->store(__CLASS__));
}
public function testForgetDriver()
{
$cacheManager = m::mock(CacheManager::class)
->shouldAllowMockingProtectedMethods()
->makePartial();
$cacheManager->shouldReceive('resolve')
->withArgs(['array'])
->times(4)
->andReturn(new ArrayStore());
$cacheManager->shouldReceive('getDefaultDriver')
->once()
->andReturn('array');
foreach (['array', ['array'], null] as $option) {
$cacheManager->store('array');
$cacheManager->store('array');
$cacheManager->forgetDriver($option);
$cacheManager->store('array');
$cacheManager->store('array');
}
}
public function testForgetDriverForgets()
{
$cacheManager = new CacheManager([
'config' => [
'cache.stores.forget' => [
'driver' => 'forget',
],
],
]);
$cacheManager->extend('forget', function () {
return new ArrayStore();
});
$cacheManager->store('forget')->forever('foo', 'bar');
$this->assertSame('bar', $cacheManager->store('forget')->get('foo'));
$cacheManager->forgetDriver('forget');
$this->assertNull($cacheManager->store('forget')->get('foo'));
}
}
|