123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Indexer\Test\Unit\Model\ResourceModel;
- class AbstractResourceTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Indexer\Test\Unit\Model\ResourceModel\AbstractResourceStub
- */
- protected $model;
- /**
- * @var \Magento\Framework\App\ResourceConnection|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_resourceMock;
- /**
- * @var \Magento\Framework\Indexer\Table\StrategyInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_tableStrategyInterface;
- protected function setUp()
- {
- $this->_resourceMock = $this->getMockBuilder(
- \Magento\Framework\App\ResourceConnection::class
- )->disableOriginalConstructor()
- ->getMock();
- $this->_tableStrategyInterface = $this->createMock(\Magento\Framework\Indexer\Table\StrategyInterface::class);
- $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $arguments = $objectManager->getConstructArguments(
- \Magento\Indexer\Test\Unit\Model\ResourceModel\AbstractResourceStub::class,
- [
- 'resource' => $this->_resourceMock,
- 'tableStrategy' => $this->_tableStrategyInterface
- ]
- );
- $this->model = $objectManager->getObject(
- \Magento\Indexer\Test\Unit\Model\ResourceModel\AbstractResourceStub::class,
- $arguments
- );
- }
- public function testReindexAll()
- {
- $this->_tableStrategyInterface->expects($this->once())
- ->method('setUseIdxTable')
- ->with(true);
- $this->_tableStrategyInterface->expects($this->once())
- ->method('prepareTableName')
- ->with('test')
- ->will($this->returnValue('test_idx'));
- $this->model->reindexAll();
- $this->assertEquals('test_idx', $this->model->getIdxTable('test'));
- }
- public function testClearTemporaryIndexTable()
- {
- $connectionMock = $this->createMock(\Magento\Framework\DB\Adapter\AdapterInterface::class);
- $this->_resourceMock->expects($this->any())->method('getConnection')->will($this->returnValue($connectionMock));
- $connectionMock->expects($this->once())->method('delete')->will($this->returnSelf());
- $this->model->clearTemporaryIndexTable();
- }
- public function testSyncData()
- {
- $resultTable = 'catalog_category_flat';
- $resultColumns = [0 => 'column'];
- $describeTable = ['column' => 'column'];
- $selectMock = $this->createMock(\Magento\Framework\DB\Select::class);
- $connectionMock = $this->createMock(\Magento\Framework\DB\Adapter\AdapterInterface::class);
- $connectionMock->expects($this->any())->method('describeTable')->will($this->returnValue($describeTable));
- $connectionMock->expects($this->any())->method('select')->will($this->returnValue($selectMock));
- $selectMock->expects($this->any())->method('from')->will($this->returnSelf());
- $selectMock->expects($this->once())->method('insertFromSelect')->with(
- $resultTable,
- $resultColumns
- )->will($this->returnSelf());
- $this->_resourceMock->expects($this->any())->method('getConnection')->will($this->returnValue($connectionMock));
- $this->_resourceMock->expects($this->any())->method('getTableName')->will($this->returnArgument(0));
- $this->assertInstanceOf(
- \Magento\Indexer\Test\Unit\Model\ResourceModel\AbstractResourceStub::class,
- $this->model->syncData()
- );
- }
- /**
- * @expectedException \Exception
- */
- public function testSyncDataException()
- {
- $describeTable = ['column' => 'column'];
- $connectionMock = $this->createMock(\Magento\Framework\DB\Adapter\AdapterInterface::class);
- $connectionMock->expects($this->any())->method('describeTable')->will($this->returnValue($describeTable));
- $connectionMock->expects($this->any())->method('select')->will($this->throwException(new \Exception()));
- $this->_resourceMock->expects($this->any())->method('getConnection')->will($this->returnValue($connectionMock));
- $this->_resourceMock->expects($this->any())->method('getTableName')->will($this->returnArgument(0));
- $connectionMock->expects($this->once())->method('rollback');
- $this->model->syncData();
- }
- /**
- * @param bool $readToIndex
- * @dataProvider insertFromTableData
- */
- public function testInsertFromTable($readToIndex)
- {
- $sourceTable = 'catalog_category_flat';
- $destTable = 'catalog_category_flat';
- $resultColumns = [0 => 'column'];
- $tableColumns = ['column' => 'column'];
- $selectMock = $this->createMock(\Magento\Framework\DB\Select::class);
- $connectionMock = $this->getMockBuilder(\Magento\Framework\DB\Adapter\AdapterInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $connectionMock->expects($this->any())->method('describeTable')->will($this->returnValue($tableColumns));
- $connectionMock->expects($this->any())->method('select')->will($this->returnValue($selectMock));
- $selectMock->expects($this->any())->method('from')->will($this->returnSelf());
- if ($readToIndex) {
- $connectionCustomMock = $this->getMockBuilder(\Magento\Framework\DB\Adapter\AdapterInterface::class)
- ->setMethods(['describeTable', 'query', 'select', 'insertArray'])
- ->getMockForAbstractClass();
- $pdoMock = $this->createMock(\Zend_Db_Statement_Pdo::class);
- $connectionCustomMock->expects($this->any())->method('query')->will($this->returnValue($selectMock));
- $connectionCustomMock->expects($this->any())->method('select')->will($this->returnValue($selectMock));
- $connectionCustomMock->expects($this->any())->method('describeTable')->will(
- $this->returnValue($tableColumns)
- );
- $connectionCustomMock->expects($this->any())->method('insertArray')->with(
- $destTable,
- $resultColumns
- )->will($this->returnValue(1));
- $connectionMock->expects($this->any())->method('query')->will($this->returnValue($pdoMock));
- $pdoMock->expects($this->any())->method('fetch')->will($this->returnValue([$tableColumns]));
- $this->model->newIndexAdapter();
- $this->_resourceMock->expects($this->any())->method('getConnection')->will(
- $this->returnValue($connectionMock)
- );
- } else {
- $selectMock->expects($this->once())->method('insertFromSelect')->with(
- $destTable,
- $resultColumns
- )->will($this->returnSelf());
- $this->_resourceMock->expects($this->any())->method('getTableName')->will($this->returnArgument(0));
- $this->_resourceMock->expects($this->any())->method('getConnection')->will(
- $this->returnValue($connectionMock)
- );
- }
- $this->assertInstanceOf(
- \Magento\Indexer\Test\Unit\Model\ResourceModel\AbstractResourceStub::class,
- $this->model->insertFromTable($sourceTable, $destTable, $readToIndex)
- );
- }
- /**
- * @return array
- */
- public function insertFromTableData()
- {
- return [[false], [true]];
- }
- }
|