1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Indexer\Test\Unit;
- use \Magento\Framework\DB\Adapter\AdapterInterface;
- use \Magento\Framework\DB\Select;
- use \Magento\Framework\Indexer\BatchProvider;
- class BatchProviderTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var BatchProvider
- */
- private $model;
- protected function setUp()
- {
- $this->model = new BatchProvider();
- }
- /**
- * @param int $batchSize preferable batch size
- * @param int $maxLinkFieldValue maximum value of the entity identifier in the table
- * @param int $expectedResult list of expected consecutive entity ID ranges (batches)
- *
- * @dataProvider getBatchesDataProvider
- */
- public function testGetBatches($batchSize, $maxLinkFieldValue, $expectedResult)
- {
- $tableName = 'test_table';
- $linkField = 'id';
- $selectMock = $this->createMock(Select::class);
- $adapterMock = $this->createMock(AdapterInterface::class);
- $selectMock->expects($this->once())->method('from')->willReturnSelf();
- $adapterMock->expects($this->once())->method('select')->willReturn($selectMock);
- $adapterMock->expects($this->once())->method('fetchOne')->with($selectMock, [])->willReturn($maxLinkFieldValue);
- $batches = $this->model->getBatches($adapterMock, $tableName, $linkField, $batchSize);
- foreach ($batches as $index => $batch) {
- $this->assertEquals($expectedResult[$index], $batch);
- }
- }
- /**
- * @return array
- */
- public function getBatchesDataProvider()
- {
- return [
- [200, 600, [['from' => 1, 'to' => 200], ['from' => 201, 'to' => 400], ['from' => 401, 'to' => 600]]],
- [200, 555, [['from' => 1, 'to' => 200], ['from' => 201, 'to' => 400], ['from' => 401, 'to' => 555]]],
- [200, 10, [['from' => 1, 'to' => 10]]],
- [200, 0, []],
- ];
- }
- public function testGetBatchIds()
- {
- $selectMock = $this->createMock(Select::class);
- $adapterMock = $this->createMock(AdapterInterface::class);
- $selectMock->expects($this->once())->method('where')->with('(entity_id BETWEEN 10 AND 100)')->willReturnSelf();
- $adapterMock->expects($this->atLeastOnce())->method('quote')->willReturnArgument(0);
- $adapterMock->expects($this->once())->method('fetchCol')->with($selectMock, [])->willReturn([1, 2, 3]);
- $this->assertEquals(
- [1, 2, 3],
- $this->model->getBatchIds($adapterMock, $selectMock, ['from' => 10, 'to' => 100])
- );
- }
- }
|