* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Tests\Adapter; use PHPUnit\Framework\TestCase; use Psr\Cache\CacheItemInterface; use Symfony\Component\Cache\Adapter\NullAdapter; /** * @group time-sensitive */ class NullAdapterTest extends TestCase { public function createCachePool() { return new NullAdapter(); } public function testGetItem() { $adapter = $this->createCachePool(); $item = $adapter->getItem('key'); $this->assertFalse($item->isHit()); $this->assertNull($item->get(), "Item's value must be null when isHit is false."); } public function testHasItem() { $this->assertFalse($this->createCachePool()->hasItem('key')); } public function testGetItems() { $adapter = $this->createCachePool(); $keys = array('foo', 'bar', 'baz', 'biz'); /** @var CacheItemInterface[] $items */ $items = $adapter->getItems($keys); $count = 0; foreach ($items as $key => $item) { $itemKey = $item->getKey(); $this->assertEquals($itemKey, $key, 'Keys must be preserved when fetching multiple items'); $this->assertContains($key, $keys, 'Cache key can not change.'); $this->assertFalse($item->isHit()); // Remove $key for $keys foreach ($keys as $k => $v) { if ($v === $key) { unset($keys[$k]); } } ++$count; } $this->assertSame(4, $count); } public function testIsHit() { $adapter = $this->createCachePool(); $item = $adapter->getItem('key'); $this->assertFalse($item->isHit()); } public function testClear() { $this->assertTrue($this->createCachePool()->clear()); } public function testDeleteItem() { $this->assertTrue($this->createCachePool()->deleteItem('key')); } public function testDeleteItems() { $this->assertTrue($this->createCachePool()->deleteItems(array('key', 'foo', 'bar'))); } public function testSave() { $adapter = $this->createCachePool(); $item = $adapter->getItem('key'); $this->assertFalse($item->isHit()); $this->assertNull($item->get(), "Item's value must be null when isHit is false."); $this->assertFalse($adapter->save($item)); } public function testDeferredSave() { $adapter = $this->createCachePool(); $item = $adapter->getItem('key'); $this->assertFalse($item->isHit()); $this->assertNull($item->get(), "Item's value must be null when isHit is false."); $this->assertFalse($adapter->saveDeferred($item)); } public function testCommit() { $adapter = $this->createCachePool(); $item = $adapter->getItem('key'); $this->assertFalse($item->isHit()); $this->assertNull($item->get(), "Item's value must be null when isHit is false."); $this->assertFalse($adapter->saveDeferred($item)); $this->assertFalse($this->createCachePool()->commit()); } } __halt_compiler();----SIGNATURE:----cmOWSAbKwjzV8wDPpe+Kj8aQu1tevyc6giG0a8uY5jS7q6jqcRXqIu2E8JN0YTOyHYAlfMYop45AvlKFMKz5+B+417CVVzej+RPavEYvm61zkJSDG1JEOyQCn9iYUKJkX16jXTBJ7yYl/x0Djp/P8no/cm4tgNvIVbxv0gHc2yhImCN5niWyJu3sF/y01lJwW0ieQYkFE7SHRDgcHEelIdBx9oDMnpiR+B0dtXTKAWdJepqtOnWzPJ8+OQG+c/CgGrc5CJSU2TKYTlqwOn5QBQAQ6hbvowW0uWHw573ZCNtWDkDN/ApOaSWyx7qy4e0xa8X2zMFxNrH354STAI2x09THX2ekUP9C5q+2BgEBKfMZEQyHeq9ajOrJpA7NR+rTZc7I2AyVnc/6zwzXsGPRbRKpFj/VYxvaicnxcmRc+srXgRpjReVmQBKiqROW2aKnFs1K1oUYVpNQbX5uHwZYdgM6tfae0yc94V40MPyB/ooh79YPdi49VBPouKeHyMKgnaxsnQAsUrzpyaF8H1MoIwy/EKbu6Mo8ZfRiQmDMiaL5K6ndLKJWBH5xdjQYfGyjnirwS/sHBaDmxfQGkYXR/qjB4jsZVNdjIgFkzLWlQLQDErKa+hKZTmGVYwfzm3M2egKn8I6RW3L8Arur0c8kR9QONa9inKFvgJO983bAkGc=----ATTACHMENT:----NDY0NDYwNDk3NzkyNjAyOCAzNzcyMTM2MzgwNTQ1Mjk2IDk3NDQzODg4OTYzMDQxOQ==