123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Mview\Test\Unit\Config;
- class DataTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\Mview\Config\Data
- */
- private $config;
- /**
- * @var \Magento\Framework\Mview\Config\Reader|\PHPUnit_Framework_MockObject_MockObject
- */
- private $reader;
- /**
- * @var \Magento\Framework\Config\CacheInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $cache;
- /**
- * @var \Magento\Framework\Mview\View\State\CollectionInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $stateCollection;
- /**
- * @var string
- */
- private $cacheId = 'mview_config';
- /**
- * @var string
- */
- private $views = ['view1' => [], 'view3' => []];
- /**
- * @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $serializerMock;
- protected function setUp()
- {
- $this->reader = $this->createPartialMock(\Magento\Framework\Mview\Config\Reader::class, ['read']);
- $this->cache = $this->getMockForAbstractClass(
- \Magento\Framework\Config\CacheInterface::class,
- [],
- '',
- false,
- false,
- true,
- ['test', 'load', 'save']
- );
- $this->stateCollection = $this->getMockForAbstractClass(
- \Magento\Framework\Mview\View\State\CollectionInterface::class,
- [],
- '',
- false,
- false,
- true,
- ['getItems']
- );
- $this->serializerMock = $this->createMock(\Magento\Framework\Serialize\SerializerInterface::class);
- }
- public function testConstructorWithCache()
- {
- $this->cache->expects($this->once())->method('test')->with($this->cacheId)->will($this->returnValue(true));
- $this->cache->expects($this->once())
- ->method('load')
- ->with($this->cacheId);
- $this->stateCollection->expects($this->never())->method('getItems');
- $this->serializerMock->expects($this->once())
- ->method('unserialize')
- ->willReturn($this->views);
- $this->config = new \Magento\Framework\Mview\Config\Data(
- $this->reader,
- $this->cache,
- $this->stateCollection,
- $this->cacheId,
- $this->serializerMock
- );
- }
- public function testConstructorWithoutCache()
- {
- $this->cache->expects($this->once())->method('test')->with($this->cacheId)->will($this->returnValue(false));
- $this->cache->expects($this->once())->method('load')->with($this->cacheId)->will($this->returnValue(false));
- $this->reader->expects($this->once())->method('read')->will($this->returnValue($this->views));
- $stateExistent = $this->getMockBuilder(\Magento\Framework\Mview\View\StateInterface::class)
- ->setMethods(['getViewId', '__wakeup', 'delete'])
- ->getMockForAbstractClass();
- $stateExistent->expects($this->once())->method('getViewId')->will($this->returnValue('view1'));
- $stateExistent->expects($this->never())->method('delete');
- $stateNonexistent = $this->getMockBuilder(\Magento\Framework\Mview\View\StateInterface::class)
- ->setMethods(['getViewId', '__wakeup', 'delete'])
- ->getMockForAbstractClass();
- $stateNonexistent->expects($this->once())->method('getViewId')->will($this->returnValue('view2'));
- $stateNonexistent->expects($this->once())->method('delete');
- $states = [$stateExistent, $stateNonexistent];
- $this->stateCollection->expects($this->once())->method('getItems')->will($this->returnValue($states));
- $this->config = new \Magento\Framework\Mview\Config\Data(
- $this->reader,
- $this->cache,
- $this->stateCollection,
- $this->cacheId,
- $this->serializerMock
- );
- }
- }
|