mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Test Case for Formhelper Bug
This commit is contained in:
parent
cd2dca205c
commit
9c24f81379
1 changed files with 14 additions and 2 deletions
|
@ -6528,8 +6528,8 @@ class FormHelperTest extends CakeTestCase {
|
|||
*/
|
||||
public function testCreateWithInputDefaults() {
|
||||
$this->Form->create('User', array(
|
||||
'inputDefaults' => array('div' => false, 'label' => false)
|
||||
));
|
||||
'inputDefaults' => array('div' => false, 'label' => false, 'error' => array('attributes'=>array('wrap' => 'small', 'class' => 'error')))
|
||||
));
|
||||
$result = $this->Form->input('username');
|
||||
$expected = array(
|
||||
'input' => array('type' => 'text', 'name' => 'data[User][username]', 'id' => 'UserUsername')
|
||||
|
@ -6544,6 +6544,18 @@ class FormHelperTest extends CakeTestCase {
|
|||
'/div'
|
||||
);
|
||||
$this->assertTags($result, $expected);
|
||||
|
||||
$User = ClassRegistry::getObject('User');
|
||||
$User->validationErrors['username'] = array('empty');
|
||||
$result = $this->Form->input('username', array('div' => true, 'label' => 'username', 'error' => array('empty' => __('Required'))));
|
||||
$expected = array(
|
||||
'div' => array('class' => 'input text error'),
|
||||
'label' => array('for' => 'UserUsername'), 'username', '/label',
|
||||
'input' => array('class' => 'form-error', 'type' => 'text', 'name' => 'data[User][username]', 'id' => 'UserUsername'),
|
||||
'small' => array('class' => 'error'), 'Required', '/small',
|
||||
'/div'
|
||||
);
|
||||
$this->assertTags($result, $expected);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue