* * 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); $v1 = new sfValidatorString(array('min_length' => 3)); // __construct() $t->diag('__construct()'); $v = new sfValidatorSchemaForEach($v1, 3); $t->is($v->getFields(), array($v1, $v1, $v1), '->__construct() takes a sfValidator object as its first argument'); $v = new sfValidatorSchemaForEach($v1, 6); $t->is($v->getFields(), array($v1, $v1, $v1, $v1, $v1, $v1), '->__construct() takes a number of times to duplicate the validator'); // ->clean() $t->diag('->clean()'); try { $v->clean(array('f', 'a', 'b', 'i', 'e', 'n')); $t->fail('->clean() throws an sfValidatorError'); $t->skip('', 2); } catch (sfValidatorError $e) { $t->pass('->clean() throws an sfValidatorError'); $t->is(count($e->getGlobalErrors()), 0, '->clean() does not throw global errors'); $t->is(count($e->getNamedErrors()), 6, '->clean() throws named errors'); }