Exemplo n.º 1
0
} catch (sfValidatorError $e) {
    $t->pass('->clean() throws an sfValidatorError if the value does not match the pattern');
    $t->is($e->getCode(), 'invalid', '->clean() throws a sfValidatorError');
}
$v = new sfValidatorRegex(array('pattern' => '/^[0-9]+$/', 'must_match' => false));
$t->is($v->clean('symfony'), 'symfony', '->clean() checks that the value does not match the regex if must_match is false');
try {
    $v->clean(12);
    $t->fail('->clean() throws an sfValidatorError if the value matches the pattern if must_match is false');
    $t->skip('', 1);
} catch (sfValidatorError $e) {
    $t->pass('->clean() throws an sfValidatorError if the value matches the pattern if must_match is false');
    $t->is($e->getCode(), 'invalid', '->clean() throws a sfValidatorError');
}
$v = new sfValidatorRegex(array('pattern' => new sfCallable('generate_regex')));
try {
    $v->clean('123');
    $t->pass('->clean() uses the pattern returned by a sfCallable pattern option');
} catch (sfValidatorError $e) {
    $t->fail('->clean() uses the pattern returned by a sfCallable pattern option');
}
// ->asString()
$t->diag('->asString()');
$v = new sfValidatorRegex(array('pattern' => '/^[0-9]+$/', 'must_match' => false));
$t->is($v->asString(), 'Regex({ must_match: false, pattern: \'/^[0-9]+$/\' })', '->asString() returns a string representation of the validator');
// ->getPattern()
$t->diag('->getPattern()');
$v = new sfValidatorRegex(array('pattern' => '/\\w+/'));
$t->is($v->getPattern(), '/\\w+/', '->getPattern() returns the regular expression');
$v = new sfValidatorRegex(array('pattern' => new sfCallable('generate_regex')));
$t->is($v->getPattern(), '/^123$/', '->getPattern() returns a regular expression from a sfCallable');
Exemplo n.º 2
0
 * This file is part of the symfony package.
 * (c) Fabien Potencier <*****@*****.**>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
require_once dirname(__FILE__) . '/../../bootstrap/unit.php';
$t = new lime_test(5, new lime_output_color());
// __construct()
$t->diag('__construct()');
try {
    new sfValidatorRegex();
    $t->fail('__construct() throws an RuntimeException if you don\'t pass a pattern option');
} catch (RuntimeException $e) {
    $t->pass('__construct() throws an RuntimeException if you don\'t pass a pattern option');
}
$v = new sfValidatorRegex(array('pattern' => '/^[0-9]+$/'));
// ->clean()
$t->diag('->clean()');
$t->is($v->clean(12), '12', '->clean() checks that the value match the regex');
try {
    $v->clean('symfony');
    $t->fail('->clean() throws an sfValidatorError if the value does not match the pattern');
    $t->skip('', 1);
} catch (sfValidatorError $e) {
    $t->pass('->clean() throws an sfValidatorError if the value does not match the pattern');
    $t->is($e->getCode(), 'invalid', '->clean() throws a sfValidatorError');
}
// ->asString()
$t->diag('->asString()');
$t->is($v->asString(), 'Regex({ pattern: \'/^[0-9]+$/\' })', '->asString() returns a string representation of the validator');