![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Indexer/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Indexer\Test\Unit; use Magento\Framework\Indexer\SaveHandler\Batch; use PHPUnit\Framework\TestCase; class BatchTest extends TestCase { /** * @var Batch */ private $object; protected function setUp(): void { $this->object = new Batch(); } /** * @param array $itemsData * @param int $size * @param array $expected * * @dataProvider getItemsDataProvider */ public function testGetItems(array $itemsData, $size, array $expected) { $items = new \ArrayObject($itemsData); $data = $this->object->getItems($items, $size); $this->assertSame($expected, iterator_to_array($data)); } /** * @return array */ public function getItemsDataProvider() { return [ 'empty' => [ [], 2, [], ], 'even, numeric keys' => [ [1, 2, 3, 4], 2, [ [0 => 1, 1 => 2], [2 => 3, 3 => 4], ], ], 'odd, numeric keys' => [ [1, 2, 3, 4, 5], 2, [ [0 => 1, 1 => 2], [2 => 3, 3 => 4], [4 => 5], ], ], 'even, string keys' => [ ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4], 2, [ ['a' => 1, 'b' => 2], ['c' => 3, 'd' => 4], ], ], 'odd, string keys' => [ ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5], 2, [ ['a' => 1, 'b' => 2], ['c' => 3, 'd' => 4], ['e' => 5], ], ], ]; } }