mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Dict;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Dict;
|
|
use Psl\Vec;
|
|
|
|
final class IntersectByKeyTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testIntersectByKey(array $expected, iterable $first, iterable $second, iterable ...$rest): void
|
|
{
|
|
static::assertSame($expected, Dict\intersect_by_key($first, $second, ...$rest));
|
|
}
|
|
|
|
public function provideData(): iterable
|
|
{
|
|
yield [[], [], [], []];
|
|
yield [[], [], [1, 2, 3]];
|
|
yield [[], [], [1, 2, 3], []];
|
|
yield [[], [], [1, 2, 3], [], [4, 5]];
|
|
|
|
yield [[], [1, 2], [], []];
|
|
yield [[], [1, 2], ['foo' => 2], []];
|
|
yield [[], [1, 2], [], ['baz' => 1]];
|
|
yield [[], [1, 2], ['foo' => 2], ['baz' => 1]];
|
|
yield [[], [1, 2], ['foo' => 2], ['baz' => 1]];
|
|
yield [[], [1, 2], ['foo' => 2, 'baz' => 1]];
|
|
yield [[1, 2, 3, 4, 5, 6], Vec\range(1, 8), Vec\range(1, 6)];
|
|
yield [[], Vec\range(1, 8), Vec\range(1, 6), []];
|
|
yield [[5 => 6], Vec\range(1, 8), Vec\range(1, 6), [5 => 6, 6 => 7]];
|
|
}
|
|
}
|