wiki.techinc.nl/tests/phpunit/unit/includes/libs/ArrayUtilsTest.php
Reedy c14dd609a7 tests: Move Wikimedia tests into Wikimedia\Tests
Change-Id: I9c64a631b0b4e8e4fef8a72ee0f749d35f918052
2024-02-17 02:09:08 +00:00

474 lines
7.3 KiB
PHP

<?php
namespace Wikimedia\Tests;
use ArrayUtils;
use MediaWikiCoversValidator;
use PHPUnit\Framework\TestCase;
/**
* @covers \ArrayUtils
*/
class ArrayUtilsTest extends TestCase {
use MediaWikiCoversValidator;
/**
* @dataProvider provideFindLowerBound
*/
public function testFindLowerBound(
$valueCallback, $valueCount, $comparisonCallback, $target, $expected
) {
$this->assertSame(
$expected,
ArrayUtils::findLowerBound(
$valueCallback, $valueCount, $comparisonCallback, $target
)
);
}
public function provideFindLowerBound() {
$indexValueCallback = function ( $size ) {
return function ( $val ) use ( $size ) {
$this->assertTrue( $val >= 0 );
$this->assertTrue( $val < $size );
return $val;
};
};
$comparisonCallback = static function ( $a, $b ) {
return $a - $b;
};
return [
[
$indexValueCallback( 0 ),
0,
$comparisonCallback,
1,
false,
],
[
$indexValueCallback( 1 ),
1,
$comparisonCallback,
-1,
false,
],
[
$indexValueCallback( 1 ),
1,
$comparisonCallback,
0,
0,
],
[
$indexValueCallback( 1 ),
1,
$comparisonCallback,
1,
0,
],
[
$indexValueCallback( 2 ),
2,
$comparisonCallback,
-1,
false,
],
[
$indexValueCallback( 2 ),
2,
$comparisonCallback,
0,
0,
],
[
$indexValueCallback( 2 ),
2,
$comparisonCallback,
0.5,
0,
],
[
$indexValueCallback( 2 ),
2,
$comparisonCallback,
1,
1,
],
[
$indexValueCallback( 2 ),
2,
$comparisonCallback,
1.5,
1,
],
[
$indexValueCallback( 3 ),
3,
$comparisonCallback,
1,
1,
],
[
$indexValueCallback( 3 ),
3,
$comparisonCallback,
1.5,
1,
],
[
$indexValueCallback( 3 ),
3,
$comparisonCallback,
2,
2,
],
[
$indexValueCallback( 3 ),
3,
$comparisonCallback,
3,
2,
],
];
}
/**
* @dataProvider provideArrayDiffAssocRecursive
*/
public function testArrayDiffAssocRecursive( $expected, ...$args ) {
$this->assertEquals( $expected, ArrayUtils::arrayDiffAssocRecursive( ...$args ) );
}
public static function provideArrayDiffAssocRecursive() {
return [
[
[],
[],
[],
],
[
[],
[],
[],
[],
],
[
[ 1 ],
[ 1 ],
[],
],
[
[ 1 ],
[ 1 ],
[],
[],
],
[
[],
[],
[ 1 ],
],
[
[],
[],
[ 1 ],
[ 2 ],
],
[
[ '' => 1 ],
[ '' => 1 ],
[],
],
[
[],
[],
[ '' => 1 ],
],
[
[ 1 ],
[ 1 ],
[ 2 ],
],
[
[],
[ 1 ],
[ 2 ],
[ 1 ],
],
[
[],
[ 1 ],
[ 1, 2 ],
],
[
[ 1 => 1 ],
[ 1 => 1 ],
[ 1 ],
],
[
[],
[ 1 => 1 ],
[ 1 ],
[ 1 => 1 ],
],
[
[],
[ 1 => 1 ],
[ 1, 1, 1 ],
],
[
[],
[ [] ],
[],
],
[
[],
[ [ [] ] ],
[],
],
[
[ 1, [ 1 ] ],
[ 1, [ 1 ] ],
[],
],
[
[ 1 ],
[ 1, [ 1 ] ],
[ 2, [ 1 ] ],
],
[
[],
[ 1, [ 1 ] ],
[ 2, [ 1 ] ],
[ 1, [ 2 ] ],
],
[
[ 1 ],
[ 1, [] ],
[ 2 ],
],
[
[],
[ 1, [] ],
[ 2 ],
[ 1 ],
],
[
[ 1, [ 1 => 2 ] ],
[ 1, [ 1, 2 ] ],
[ 2, [ 1 ] ],
],
[
[ 1 ],
[ 1, [ 1, 2 ] ],
[ 2, [ 1 ] ],
[ 2, [ 1 => 2 ] ],
],
[
[ 1 => [ 1, 2 ] ],
[ 1, [ 1, 2 ] ],
[ 1, [ 2 ] ],
],
[
[ 1 => [ [ 2, 3 ], 2 ] ],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1, [ 2 ] ],
],
[
[ 1 => [ [ 2 ], 2 ] ],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1, [ [ 1 => 3 ] ] ],
],
[
[ 1 => [ 1 => 2 ] ],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1, [ [ 1 => 3, 0 => 2 ] ] ],
],
[
[ 1 => [ 1 => 2 ] ],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1, [ [ 1 => 3 ] ] ],
[ 1 => [ [ 2 ] ] ],
],
[
[],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1 => [ 1 => 2, 0 => [ 1 => 3, 0 => 2 ] ], 0 => 1 ],
],
[
[],
[ 1, [ [ 2, 3 ], 2 ] ],
[ 1 => [ 1 => 2 ] ],
[ 1 => [ [ 1 => 3 ] ] ],
[ 1 => [ [ 2 ] ] ],
[ 1 ],
],
];
}
/**
* @dataProvider provideCartesianProduct
*/
public function testCartesianProduct( $inputs, $expected ) {
$result = ArrayUtils::cartesianProduct( ...$inputs );
$this->assertSame( $expected, $result );
}
public static function provideCartesianProduct() {
$ab = [ 'a', 'b' ];
$cd = [ 'c', 'd' ];
$ac = [ 'a', 'c' ];
$ad = [ 'a', 'd' ];
$bc = [ 'b', 'c' ];
$bd = [ 'b', 'd' ];
return [
'no inputs' => [
[],
[]
],
'one empty input' => [
[ [] ],
[]
],
'one non-empty input' => [
[ $ab ],
[ [ 'a' ], [ 'b' ] ]
],
'non-empty times empty' => [
[ $ab, [] ],
[]
],
'empty times non-empty' => [
[ [], $ab ],
[]
],
'ab x cd' => [
[ $ab, $cd ],
[ $ac, $ad, $bc, $bd ]
],
'keys are ignored' => [
[
[ 99 => 'a', 98 => 'b' ],
[ 97 => 'c', 96 => 'd' ],
],
[ $ac, $ad, $bc, $bd ]
],
];
}
public static function provideConsistentSort() {
yield 'initial' => [
[
'tag1',
'tag2',
'tag3',
],
'foobar',
[ 'tag2', 'tag3', 'tag1' ],
[ 1 => 'tag2', 2 => 'tag3', 0 => 'tag1' ],
];
yield 'adding preserves order' => [
[
'tag1',
'tag2',
'tag3',
'tag4',
],
'foobar',
[ 'tag2', 'tag4', 'tag3', 'tag1' ],
[ 1 => 'tag2', 3 => 'tag4', 2 => 'tag3', 0 => 'tag1' ],
];
yield 'depool preserves order' => [
[
'tag1',
'tag3',
],
'foobar',
[ 'tag3', 'tag1' ],
[ 1 => 'tag3', 0 => 'tag1' ],
];
yield 'input order is not significant' => [
[
// Backwards
'tag3',
'tag2',
'tag1',
],
'foobar',
[ 'tag2', 'tag3', 'tag1' ],
[ 1 => 'tag2', 0 => 'tag3', 2 => 'tag1' ],
];
yield 'input keys are not significant' => [
[
'z' => 'tag2',
'y' => 'tag3',
'x' => 'tag1',
],
'foobar',
[ 'tag2', 'tag3', 'tag1' ],
[ 'z' => 'tag2', 'y' => 'tag3', 'x' => 'tag1' ],
];
}
/**
* @dataProvider provideConsistentSort
*/
public function testConsistentSort( $array, string $key, array $expectList, array $expect ) {
$actual = $array;
ArrayUtils::consistentHashSort( $actual, $key );
$this->assertSame( $expect, $actual );
$this->assertSame( $expectList, array_values( $actual ) );
}
public static function provideConsistentSortStability() {
yield 'initial' => [
[ 'tag1', 'tag2', 'tag3', 'tag4' ],
[
'foo' => 'tag3',
'bar' => 'tag2',
'qux' => 'tag4',
'quux' => 'tag1',
'garply' => 'tag3',
],
];
yield 'depool tag2' => [
[ 'tag1', 'tag3', 'tag4' ],
[
'foo' => 'tag3',
'bar' => 'tag1', # changed from tag2
'qux' => 'tag4',
'quux' => 'tag1',
'garply' => 'tag3',
],
];
yield 'add tag5' => [
[ 'tag1', 'tag3', 'tag4', 'tag5' ],
[
'foo' => 'tag3',
'bar' => 'tag1',
'qux' => 'tag4',
'quux' => 'tag5', # changed from tag1
'garply' => 'tag3',
],
];
}
/**
* @dataProvider provideConsistentSortStability
*/
public function testConsistentSortStability( $serverTags, $expected ) {
$actual = [];
foreach ( $expected as $key => $_ ) {
$sortedTags = $serverTags;
ArrayUtils::consistentHashSort( $sortedTags, $key );
$dest = $serverTags[array_key_first( $sortedTags )];
$actual[$key] = $dest;
}
$this->assertSame( $expected, $actual );
}
}