mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 17:41:50 +01:00
603 lines
15 KiB
PHP
603 lines
15 KiB
PHP
<?php
|
|
|
|
/**
|
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Meritoo\Common\Test\Utilities;
|
|
|
|
use Generator;
|
|
use Meritoo\Common\Test\Base\BaseTestCase;
|
|
use Meritoo\Common\Test\Utilities\Repository\Sortable;
|
|
use Meritoo\Common\Utilities\Repository;
|
|
use stdClass;
|
|
|
|
/**
|
|
* Test case of the useful methods for repository
|
|
*
|
|
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
|
|
* @copyright Meritoo.pl
|
|
*/
|
|
class RepositoryTest extends BaseTestCase
|
|
{
|
|
public function testConstructor()
|
|
{
|
|
static::assertHasNoConstructor(Repository::class);
|
|
}
|
|
|
|
public function testReplenishPositionsWithoutItems()
|
|
{
|
|
$items = [];
|
|
Repository::replenishPositions($items);
|
|
|
|
static::assertEquals([], $items);
|
|
}
|
|
|
|
public function testReplenishPositionsUsingNotSortableObjects()
|
|
{
|
|
$before = [
|
|
new stdClass(),
|
|
new stdClass(),
|
|
new stdClass(),
|
|
];
|
|
|
|
$after = [
|
|
new stdClass(),
|
|
new stdClass(),
|
|
new stdClass(),
|
|
];
|
|
|
|
/*
|
|
* Using defaults
|
|
*/
|
|
Repository::replenishPositions($before);
|
|
static::assertEquals($before, $after);
|
|
|
|
/*
|
|
* Place items at the top
|
|
*/
|
|
Repository::replenishPositions($before, false);
|
|
static::assertEquals($before, $after);
|
|
|
|
/*
|
|
* Set positions even there is no extreme position (at the end)
|
|
*/
|
|
Repository::replenishPositions($before, true, true);
|
|
static::assertEquals($before, $after);
|
|
|
|
/*
|
|
* Set positions even there is no extreme position (at the top)
|
|
*/
|
|
Repository::replenishPositions($before, false, true);
|
|
static::assertEquals($before, $after);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @dataProvider provideArraysWithoutExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingArraysWithoutExtremePosition(array $items)
|
|
{
|
|
Repository::replenishPositions($items);
|
|
static::assertEquals($items, $items);
|
|
|
|
Repository::replenishPositions($items, false);
|
|
static::assertEquals($items, $items);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @param bool $asLast If is set to true, items are placed at the end (default behaviour). Otherwise - at top.
|
|
* @param array $expected Items with replenished positions
|
|
*
|
|
* @dataProvider provideArraysWithoutExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingArraysWithoutExtremePositionForce(array $items, $asLast, array $expected)
|
|
{
|
|
Repository::replenishPositions($items, $asLast, true);
|
|
static::assertEquals($expected, $items);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @param bool $asLast If is set to true, items are placed at the end (default behaviour). Otherwise - at top.
|
|
* @param array $expected Items with replenished positions
|
|
*
|
|
* @dataProvider provideArraysWithExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingArraysWithExtremePositionForce(array $items, $asLast, array $expected)
|
|
{
|
|
Repository::replenishPositions($items, $asLast, true);
|
|
static::assertEquals($expected, $items);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @dataProvider provideObjectsWithoutExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingObjectsWithoutExtremePosition(array $items)
|
|
{
|
|
Repository::replenishPositions($items);
|
|
static::assertEquals($items, $items);
|
|
|
|
Repository::replenishPositions($items, false);
|
|
static::assertEquals($items, $items);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @param bool $asLast If is set to true, items are placed at the end (default behaviour). Otherwise - at top.
|
|
* @param array $expected Items with replenished positions
|
|
*
|
|
* @dataProvider provideObjectsWithoutExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingObjectsWithoutExtremePositionForce(array $items, $asLast, array $expected)
|
|
{
|
|
Repository::replenishPositions($items, $asLast, true);
|
|
static::assertEquals($expected, $items);
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @param bool $asLast If is set to true, items are placed at the end (default behaviour). Otherwise - at top.
|
|
* @param array $expected Items with replenished positions
|
|
*
|
|
* @dataProvider provideObjectsWithExtremePosition
|
|
*/
|
|
public function testReplenishPositionsUsingObjectsWithExtremePositionForce(array $items, $asLast, array $expected)
|
|
{
|
|
Repository::replenishPositions($items, $asLast, true);
|
|
static::assertEquals($expected, $items);
|
|
}
|
|
|
|
public function testGetExtremePositionWithoutItems()
|
|
{
|
|
static::assertNull(Repository::getExtremePosition([]));
|
|
static::assertNull(Repository::getExtremePosition([], false));
|
|
}
|
|
|
|
/**
|
|
* @param array $items Objects who have "getPosition()" and "setPosition()" methods or arrays
|
|
* @param bool $max (optional) If is set to true, maximum value is returned. Otherwise - minimum.
|
|
* @param int $expected Extreme position (max or min) of given items
|
|
*
|
|
* @dataProvider provideArraysWithoutExtremePositionToGetExtremePosition
|
|
*/
|
|
public function testGetExtremePositionUsingArraysWithoutExtremePosition(array $items, $max, $expected)
|
|
{
|
|
static::assertEquals($expected, Repository::getExtremePosition($items, $max));
|
|
}
|
|
|
|
public function testGetExtremePositionUsingObjects()
|
|
{
|
|
}
|
|
|
|
public function testGetEntityOrderedQueryBuilder()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Provides arrays without extreme position used to replenish positions of them
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideArraysWithoutExtremePosition()
|
|
{
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
],
|
|
true,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
],
|
|
false,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => -1,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => -2,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
],
|
|
],
|
|
true,
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
],
|
|
],
|
|
false,
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
Repository::POSITION_KEY => -1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
Repository::POSITION_KEY => -2,
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Provides arrays with extreme position used to replenish positions of them
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideArraysWithExtremePosition()
|
|
{
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[],
|
|
],
|
|
true,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 3,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
true,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 3,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[],
|
|
],
|
|
false,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 0,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => -1,
|
|
],
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
false,
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 0,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => -1,
|
|
],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Provides objects without extreme position used to replenish positions of them
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideObjectsWithoutExtremePosition()
|
|
{
|
|
yield[
|
|
[
|
|
new Sortable(),
|
|
new Sortable(),
|
|
new Sortable(),
|
|
],
|
|
true,
|
|
[
|
|
new Sortable(1),
|
|
new Sortable(2),
|
|
new Sortable(3),
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
new Sortable(),
|
|
new Sortable(),
|
|
new Sortable(),
|
|
],
|
|
false,
|
|
[
|
|
new Sortable(-1),
|
|
new Sortable(-2),
|
|
new Sortable(-3),
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Provides objects with extreme position used to replenish positions of them
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideObjectsWithExtremePosition()
|
|
{
|
|
yield[
|
|
[
|
|
new Sortable(1),
|
|
new Sortable(),
|
|
new Sortable(),
|
|
],
|
|
true,
|
|
[
|
|
new Sortable(1),
|
|
new Sortable(2),
|
|
new Sortable(3),
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
new Sortable(),
|
|
new Sortable(1),
|
|
new Sortable(),
|
|
],
|
|
true,
|
|
[
|
|
new Sortable(2),
|
|
new Sortable(1),
|
|
new Sortable(3),
|
|
],
|
|
];
|
|
|
|
yield[
|
|
[
|
|
new Sortable(1),
|
|
new Sortable(),
|
|
new Sortable(),
|
|
],
|
|
false,
|
|
[
|
|
new Sortable(1),
|
|
new Sortable(0),
|
|
new Sortable(-1),
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Provides arrays without extreme position used to get extreme position
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideArraysWithoutExtremePositionToGetExtremePosition()
|
|
{
|
|
yield[
|
|
[],
|
|
false,
|
|
null,
|
|
];
|
|
|
|
yield[
|
|
[],
|
|
true,
|
|
null,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
],
|
|
],
|
|
true,
|
|
null,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
'lorem' => 'ipsum',
|
|
'dolor',
|
|
'sit' => 1,
|
|
],
|
|
[
|
|
'abc' => 'def',
|
|
'ghi' => null,
|
|
'jkl' => 10,
|
|
],
|
|
],
|
|
false,
|
|
null,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Provides arrays with extreme position used to get extreme position
|
|
*
|
|
* @return Generator
|
|
*/
|
|
public function provideArraysWithExtremePositionToGetExtremePosition()
|
|
{
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[],
|
|
],
|
|
true,
|
|
1,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[],
|
|
],
|
|
false,
|
|
1,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
true,
|
|
1,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
],
|
|
false,
|
|
1,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
[],
|
|
],
|
|
true,
|
|
1,
|
|
];
|
|
|
|
yield[
|
|
[
|
|
[
|
|
Repository::POSITION_KEY => 1,
|
|
],
|
|
[],
|
|
[
|
|
Repository::POSITION_KEY => 2,
|
|
],
|
|
[],
|
|
],
|
|
false,
|
|
2,
|
|
];
|
|
}
|
|
}
|