/* * 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(94); $w1 = new sfWidgetFormInputText(array(), array('class' => 'foo1')); $w2 = new sfWidgetFormInputText(); // __construct() $t->diag('__construct()'); $w = new sfWidgetFormSchema(); $t->is($w->getFields(), array(), '__construct() can take no argument'); $w = new sfWidgetFormSchema(array('w1' => $w1, 'w2' => $w2)); $w1->setParent($w); $w2->setParent($w); $t->ok($w->getFields() == array('w1' => $w1, 'w2' => $w2), '__construct() can take an array of named sfWidget objects'); try { $w = new sfWidgetFormSchema('string'); $t->fail('__construct() throws a exception when passing a non supported first argument'); } catch (InvalidArgumentException $e) { $t->pass('__construct() throws an exception when passing a non supported first argument'); } $t->is($w->getFormFormatterName(), 'table', '__construct() sets "form_formatter" option to "table" by default'); $w = new sfWidgetFormSchema(array(), array('form_formatter' => 'list')); $t->is($w->getFormFormatterName(), 'list', '__construct() can override the default value for the "form_formatter" option'); $t->is($w->getNameFormat(), '%s', '__construct() sets "name_format" option to "table" by default'); $w = new sfWidgetFormSchema(array(), array('name_format' => 'name_%s'));
</table> <input type="hidden" name="w1" id="w1" /> </td> </tr> EOF; $t->is(str_replace("\n", '', preg_replace('/^ +/m', '', $w->render(null))), str_replace("\n", '', preg_replace('/^ +/m', '', $expected)), '->render() is able to render widget schema that only contains hidden fields when the last field is a form'); // __clone() $t->diag('__clone()'); $w = new sfWidgetFormSchema(array('w1' => $w1, 'w2' => $w2)); $format1 = new sfWidgetFormSchemaFormatterList($w); $format1->setTranslationCatalogue('english'); $w->addFormFormatter('testFormatter', $format1); $w1 = clone $w; $f1 = $w1->getFields(); $f = $w->getFields(); $t->is(array_keys($f1), array_keys($f), '__clone() clones embedded widgets'); foreach ($f1 as $name => $widget) { $t->ok($widget !== $f[$name], '__clone() clones embedded widgets'); $t->ok($widget == $f[$name], '__clone() clones embedded widgets'); } $format1->setTranslationCatalogue('french'); $formatters = $w1->getFormFormatters(); $t->is(count($formatters), 1, '__clone() returns a sfWidgetFormSchema that has the Formatters attached'); $t->is($formatters['testFormatter']->getTranslationCatalogue(), 'english', '__clone() clones formatters, so that changes to the original one have no effect to the cloned formatter.'); $w = new sfWidgetFormSchema(); $w->addFormFormatter('table', new sfWidgetFormSchemaFormatterTable($w)); $w->addFormFormatter('list', new sfWidgetFormSchemaFormatterList($w)); $w1 = clone $w; $f1 = $w1->getFormFormatters(); $f = $w->getFormFormatters();