| Current Path : /home/rtorresani/www/vendor/magento/module-indexer/Test/Unit/Model/Config/ |
| Current File : //home/rtorresani/www/vendor/magento/module-indexer/Test/Unit/Model/Config/DataTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Indexer\Test\Unit\Model\Config;
use Magento\Framework\Config\CacheInterface;
use Magento\Framework\Indexer\Config\Reader;
use Magento\Framework\Serialize\SerializerInterface;
use Magento\Indexer\Model\Config\Data;
use Magento\Indexer\Model\Indexer\State;
use Magento\Indexer\Model\ResourceModel\Indexer\State\Collection;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DataTest extends TestCase
{
/**
* @var Data
*/
protected $model;
/**
* @var Reader|MockObject
*/
protected $reader;
/**
* @var CacheInterface|MockObject
*/
protected $cache;
/**
* @var Collection|MockObject
*/
protected $stateCollection;
/**
* @var string
*/
protected $cacheId = 'indexer_config';
/**
* @var string
*/
protected $indexers = ['indexer1' => [], 'indexer3' => []];
/**
* @var SerializerInterface|MockObject
*/
private $serializerMock;
protected function setUp(): void
{
$this->reader = $this->createPartialMock(Reader::class, ['read']);
$this->cache = $this->getMockForAbstractClass(
CacheInterface::class,
[],
'',
false,
false,
true,
['test', 'load', 'save']
);
$this->stateCollection = $this->createPartialMock(
Collection::class,
['getItems']
);
$this->serializerMock = $this->getMockForAbstractClass(SerializerInterface::class);
}
public function testConstructorWithCache()
{
$serializedData = 'serialized data';
$this->cache->expects($this->once())->method('test')->with($this->cacheId)->willReturn(true);
$this->cache->expects($this->once())
->method('load')
->with($this->cacheId)
->willReturn($serializedData);
$this->serializerMock->expects($this->once())
->method('unserialize')
->with($serializedData)
->willReturn($this->indexers);
$this->stateCollection->expects($this->never())->method('getItems');
$this->model = new Data(
$this->reader,
$this->cache,
$this->stateCollection,
$this->cacheId,
$this->serializerMock
);
}
public function testConstructorWithoutCache()
{
$this->cache->expects($this->once())->method('test')->with($this->cacheId)->willReturn(false);
$this->cache->expects($this->once())->method('load')->with($this->cacheId)->willReturn(false);
$this->reader->expects($this->once())->method('read')->willReturn($this->indexers);
$stateExistent = $this->createPartialMock(
State::class,
['getIndexerId', '__wakeup', 'delete']
);
$stateExistent->expects($this->once())->method('getIndexerId')->willReturn('indexer1');
$stateExistent->expects($this->never())->method('delete');
$stateNonexistent = $this->createPartialMock(
State::class,
['getIndexerId', '__wakeup', 'delete']
);
$stateNonexistent->expects($this->once())->method('getIndexerId')->willReturn('indexer2');
$stateNonexistent->expects($this->once())->method('delete');
$states = [$stateExistent, $stateNonexistent];
$this->stateCollection->expects($this->once())->method('getItems')->willReturn($states);
$this->model = new Data(
$this->reader,
$this->cache,
$this->stateCollection,
$this->cacheId,
$this->serializerMock
);
}
}