2019-12-24 01:52:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Psl\Tests\Str;
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
2019-12-26 23:10:57 +01:00
|
|
|
use Psl\Str;
|
2019-12-24 01:52:07 +01:00
|
|
|
|
2020-10-15 10:18:03 +02:00
|
|
|
final class SpliceTest extends TestCase
|
2019-12-24 01:52:07 +01:00
|
|
|
{
|
2019-12-26 23:10:57 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
2020-09-05 17:23:37 +02:00
|
|
|
public function testSplice(
|
|
|
|
string $expected,
|
|
|
|
string $string,
|
|
|
|
string $replacement,
|
|
|
|
int $offset,
|
|
|
|
?int $length = null
|
|
|
|
): void {
|
2020-10-15 10:18:03 +02:00
|
|
|
static::assertSame($expected, Str\splice($string, $replacement, $offset, $length));
|
2019-12-26 23:10:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function provideData(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
['', '', '', 0, null, ],
|
|
|
|
['héllö darkness', 'héllö wôrld', 'darkness', 6, null, ],
|
|
|
|
['héllö crüel wôrld', 'héllö wôrld', ' crüel ', 5, 1],
|
|
|
|
['héllö crüel wôrld', 'héllö wôrld', ' crüel ', -6, 1, ],
|
|
|
|
['héllö crüel wôrld', 'héllö wôrld', ' crüel', 5, 0, ],
|
|
|
|
['héllö darkness', 'héllö ', 'darkness', 6, null, ],
|
|
|
|
['héllö darkness', 'héllö wôrld', 'darkness', 6, 100, ],
|
|
|
|
['héllö darkness', 'héllö wôrld', 'darkness', 6, 11, ],
|
2020-09-05 17:23:37 +02:00
|
|
|
[
|
|
|
|
'Peôple linkéd by déstiny wȋll ȃlways find each öther.',
|
|
|
|
'Peôple linkéd by déstiny wȋll find each öther.',
|
|
|
|
' ȃlways ',
|
|
|
|
29,
|
|
|
|
1
|
|
|
|
],
|
2019-12-26 23:10:57 +01:00
|
|
|
];
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
}
|