
| Current Path : /var/www/html/china-sensors.de/vendor/symfony/validator/Tests/Constraints/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/china-sensors.de/vendor/symfony/validator/Tests/Constraints/RegexTest.php |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Tests\Constraints;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Validator\Constraints\Regex;
/**
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class RegexTest extends TestCase
{
public function testConstraintGetDefaultOption()
{
$constraint = new Regex('/^[0-9]+$/');
$this->assertSame('/^[0-9]+$/', $constraint->pattern);
}
public function provideHtmlPatterns()
{
return [
// HTML5 wraps the pattern in ^(?:pattern)$
['/^[0-9]+$/', '[0-9]+'],
['/[0-9]+$/', '.*[0-9]+'],
['/^[0-9]+/', '[0-9]+.*'],
['/[0-9]+/', '.*[0-9]+.*'],
// We need a smart way to allow matching of patterns that contain
// ^ and $ at various sub-clauses of an or-clause
// .*(pattern).* seems to work correctly
['/[0-9]$|[a-z]+/', '.*([0-9]$|[a-z]+).*'],
['/[0-9]$|^[a-z]+/', '.*([0-9]$|^[a-z]+).*'],
['/^[0-9]|[a-z]+$/', '.*(^[0-9]|[a-z]+$).*'],
// Unescape escaped delimiters
['/^[0-9]+\/$/', '[0-9]+/'],
['#^[0-9]+\#$#', '[0-9]+#'],
// Cannot be converted
['/^[0-9]+$/i', null],
// Inverse matches are simple, just wrap in
// ((?!pattern).)*
['/^[0-9]+$/', '((?!^[0-9]+$).)*', false],
['/[0-9]+$/', '((?![0-9]+$).)*', false],
['/^[0-9]+/', '((?!^[0-9]+).)*', false],
['/[0-9]+/', '((?![0-9]+).)*', false],
['/[0-9]$|[a-z]+/', '((?![0-9]$|[a-z]+).)*', false],
['/[0-9]$|^[a-z]+/', '((?![0-9]$|^[a-z]+).)*', false],
['/^[0-9]|[a-z]+$/', '((?!^[0-9]|[a-z]+$).)*', false],
['/^[0-9]+\/$/', '((?!^[0-9]+/$).)*', false],
['#^[0-9]+\#$#', '((?!^[0-9]+#$).)*', false],
['/^[0-9]+$/i', null, false],
];
}
/**
* @dataProvider provideHtmlPatterns
*/
public function testGetHtmlPattern($pattern, $htmlPattern, $match = true)
{
$constraint = new Regex([
'pattern' => $pattern,
'match' => $match,
]);
$this->assertSame($pattern, $constraint->pattern);
$this->assertSame($htmlPattern, $constraint->getHtmlPattern());
}
public function testGetCustomHtmlPattern()
{
$constraint = new Regex([
'pattern' => '((?![0-9]$|[a-z]+).)*',
'htmlPattern' => 'foobar',
]);
$this->assertSame('((?![0-9]$|[a-z]+).)*', $constraint->pattern);
$this->assertSame('foobar', $constraint->getHtmlPattern());
}
}