1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
<?php
/*
* This file is part of composer/pcre.
*
* (c) Composer <https://github.com/composer>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Composer\Pcre\PregTests;
use Composer\Pcre\BaseTestCase;
use Composer\Pcre\Preg;
use Composer\Pcre\UnexpectedNullMatchException;
use PHPUnit\Framework\Attributes\Group;
class ReplaceCallbackTest extends BaseTestCase
{
public function setUp(): void
{
$this->pregFunction = 'preg_replace_callback()';
}
public function testSuccess(): void
{
$result = Preg::replaceCallback('{(?P<m>d)}', function ($match) {
return '('.$match[0].')';
}, 'abcd', -1, $count);
self::assertSame(1, $count);
self::assertSame('abc(d)', $result);
}
public function testSuccessWithOffset(): void
{
$result = Preg::replaceCallback('{(?P<m>d)}', function ($match) {
return '('.$match[0][0].')';
}, 'abcd', -1, $count, PREG_OFFSET_CAPTURE);
self::assertSame(1, $count);
self::assertSame('abc(d)', $result);
}
public function testSuccessNoRef(): void
{
$result = Preg::replaceCallback('{(?P<m>d)}', function ($match) {
return '('.$match[0].')';
}, 'abcd');
self::assertSame('abc(d)', $result);
}
public function testFailure(): void
{
$result = Preg::replaceCallback('{abc}', function ($match) {
return '('.$match[0].')';
}, 'def', -1, $count);
self::assertSame(0, $count);
self::assertSame('def', $result);
}
public function testSuccessStrictGroups(): void
{
$result = Preg::replaceCallbackStrictGroups('{(?P<m>\d)(?<matched>a)?}', function ($match) {
return strtoupper($match['matched']);
}, '3a', -1, $count);
self::assertSame(1, $count);
self::assertSame('A', $result);
}
public function testFailStrictGroups(): void
{
self::expectException(UnexpectedNullMatchException::class);
self::expectExceptionMessage('Pattern "{(?P<m>\d)(?<unmatched>a)?}" had an unexpected unmatched group "unmatched", make sure the pattern always matches or use replaceCallback() instead.');
$result = Preg::replaceCallbackStrictGroups('{(?P<m>\d)(?<unmatched>a)?}', function ($match) {
return strtoupper($match['unmatched']);
}, '123', -1, $count);
}
public function testSuccessStrictGroupsOffsets(): void
{
$result = Preg::replaceCallbackStrictGroups('{(?P<m>\d)(?<matched>a)?}', function ($match) {
return strtoupper($match['matched'][0]);
}, '3a', -1, $count, PREG_OFFSET_CAPTURE);
self::assertSame(1, $count);
self::assertSame('A', $result);
}
public function testFailsStrictGroupsOffsets(): void
{
self::expectException(UnexpectedNullMatchException::class);
self::expectExceptionMessage('Pattern "{(?P<m>\d)(?<unmatched>a)?}" had an unexpected unmatched group "unmatched", make sure the pattern always matches or use replaceCallback() instead.');
$result = Preg::replaceCallbackStrictGroups('{(?P<m>\d)(?<unmatched>a)?}', function ($match) {
return strtoupper($match['unmatched'][0]);
}, '3', -1, $count, PREG_OFFSET_CAPTURE);
}
public function testBadPatternThrowsIfWarningsAreNotThrowing(): void
{
$this->expectPcreException($pattern = '{(?P<m>d)');
@Preg::replaceCallback($pattern, function ($match) {
return '('.$match[0].')';
}, 'abcd');
}
#[Group('nophpunit10')]
public function testBadPatternTriggersWarningByDefault(): void
{
$this->expectPcreWarning();
Preg::replaceCallback('{(?P<m>d)', function ($match) {
return '('.$match[0].')';
}, 'abcd');
}
public function testThrowsWithSubjectArray(): void
{
$this->doExpectException('InvalidArgumentException', Preg::ARRAY_MSG);
Preg::replaceCallback('{(?P<m>d)}', function ($match) {
return '('.$match[0].')';
}, array('abcd')); // @phpstan-ignore-line
}
}
|