| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Form;
- use Cake\Form\Form;
- use Cake\TestSuite\TestCase;
- use Cake\Validation\Validator;
- use TestApp\Form\AppForm;
- use TestApp\Form\FormSchema;
- use TestApp\Form\ValidateForm;
- /**
- * Form test case.
- */
- class FormTest extends TestCase
- {
- /**
- * Test schema()
- *
- * @return void
- */
- public function testSchema()
- {
- $form = new Form();
- $schema = $form->schema();
- $this->assertInstanceOf('Cake\Form\Schema', $schema);
- $this->assertSame($schema, $form->schema(), 'Same instance each time');
- $schema = $this->getMockBuilder('Cake\Form\Schema')->getMock();
- $this->assertSame($schema, $form->schema($schema));
- $this->assertSame($schema, $form->schema());
- $form = new AppForm();
- $this->assertInstanceOf(FormSchema::class, $form->schema());
- }
- /**
- * Test validator()
- *
- * @return void
- * @group deprecated
- */
- public function testValidator()
- {
- $this->deprecated(function () {
- $form = new Form();
- $validator = $form->validator();
- $this->assertInstanceOf('Cake\Validation\Validator', $validator);
- $this->assertSame($validator, $form->validator(), 'Same instance each time');
- $validator = $this->getMockBuilder('Cake\Validation\Validator')->getMock();
- $this->assertSame($validator, $form->validator($validator));
- $this->assertSame($validator, $form->validator());
- });
- }
- /**
- * Test getValidator()
- *
- * @return void
- */
- public function testGetValidator()
- {
- $form = $this->getMockBuilder(Form::class)
- ->setMethods(['buildValidator'])
- ->getMock();
- $form->expects($this->once())
- ->method('buildValidator');
- $this->assertInstanceof(Validator::class, $form->getValidator());
- }
- /**
- * Test setValidator()
- *
- * @return void
- */
- public function testSetValidator()
- {
- $form = new Form();
- $validator = $this->getMockBuilder('Cake\Validation\Validator')->getMock();
- $form->setValidator('default', $validator);
- $this->assertSame($validator, $form->getValidator());
- }
- /**
- * Test validate method.
- *
- * @return void
- */
- public function testValidate()
- {
- $form = new Form();
- $form->getValidator()
- ->add('email', 'format', ['rule' => 'email'])
- ->add('body', 'length', ['rule' => ['minLength', 12]]);
- $data = [
- 'email' => 'rong',
- 'body' => 'too short',
- ];
- $this->assertFalse($form->validate($data));
- $this->assertCount(2, $form->getErrors());
- $data = [
- 'email' => 'test@example.com',
- 'body' => 'Some content goes here',
- ];
- $this->assertTrue($form->validate($data));
- $this->assertCount(0, $form->getErrors());
- }
- /**
- * tests validate using deprecated validate() method
- *
- * @return void
- */
- public function testValidateDeprected()
- {
- $this->deprecated(function () {
- $form = new ValidateForm();
- $this->assertCount(1, $form->validator(), 'should have one rule');
- $data = [];
- $this->assertFalse($form->validate($data));
- $this->assertCount(1, $form->getErrors());
- });
- }
- /**
- * Test the errors methods.
- *
- * @return void
- */
- public function testErrors()
- {
- $this->deprecated(function () {
- $form = new Form();
- $form->getValidator()
- ->add('email', 'format', [
- 'message' => 'Must be a valid email',
- 'rule' => 'email',
- ])
- ->add('body', 'length', [
- 'message' => 'Must be so long',
- 'rule' => ['minLength', 12],
- ]);
- $data = [
- 'email' => 'rong',
- 'body' => 'too short',
- ];
- $form->validate($data);
- $errors = $form->errors();
- $this->assertCount(2, $errors);
- $this->assertEquals('Must be a valid email', $errors['email']['format']);
- $this->assertEquals('Must be so long', $errors['body']['length']);
- });
- }
- /**
- * Test the get errors methods.
- *
- * @return void
- */
- public function testGetErrors()
- {
- $form = new Form();
- $form->getValidator()
- ->add('email', 'format', [
- 'message' => 'Must be a valid email',
- 'rule' => 'email',
- ])
- ->add('body', 'length', [
- 'message' => 'Must be so long',
- 'rule' => ['minLength', 12],
- ]);
- $data = [
- 'email' => 'rong',
- 'body' => 'too short',
- ];
- $form->validate($data);
- $errors = $form->getErrors();
- $this->assertCount(2, $errors);
- $this->assertEquals('Must be a valid email', $errors['email']['format']);
- $this->assertEquals('Must be so long', $errors['body']['length']);
- }
- /**
- * Test setErrors()
- *
- * @return void
- */
- public function testSetErrors()
- {
- $form = new Form();
- $expected = [
- 'field_name' => ['rule_name' => 'message'],
- ];
- $form->setErrors($expected);
- $this->assertSame($expected, $form->getErrors());
- }
- /**
- * Test _execute is skipped on validation failure.
- *
- * @return void
- */
- public function testExecuteInvalid()
- {
- $form = $this->getMockBuilder('Cake\Form\Form')
- ->setMethods(['_execute'])
- ->getMock();
- $form->getValidator()
- ->add('email', 'format', ['rule' => 'email']);
- $data = [
- 'email' => 'rong',
- ];
- $form->expects($this->never())
- ->method('_execute');
- $this->assertFalse($form->execute($data));
- }
- /**
- * test execute() when data is valid.
- *
- * @return void
- */
- public function testExecuteValid()
- {
- $form = $this->getMockBuilder('Cake\Form\Form')
- ->setMethods(['_execute'])
- ->getMock();
- $form->getValidator()
- ->add('email', 'format', ['rule' => 'email']);
- $data = [
- 'email' => 'test@example.com',
- ];
- $form->expects($this->once())
- ->method('_execute')
- ->with($data)
- ->will($this->returnValue(true));
- $this->assertTrue($form->execute($data));
- }
- /**
- * Test setting and getting form data.
- *
- * @return void
- */
- public function testDataSetGet()
- {
- $form = new Form();
- $expected = ['title' => 'title', 'is_published' => true];
- $form->setData(['title' => 'title', 'is_published' => true]);
- $this->assertSame($expected, $form->getData());
- $this->assertEquals('title', $form->getData('title'));
- $this->assertNull($form->getData('non-existent'));
- }
- /**
- * test __debugInfo
- *
- * @return void
- */
- public function testDebugInfo()
- {
- $form = new Form();
- $result = $form->__debugInfo();
- $this->assertArrayHasKey('_schema', $result);
- $this->assertArrayHasKey('_errors', $result);
- $this->assertArrayHasKey('_validator', $result);
- $this->assertArrayHasKey('_data', $result);
- }
- }
|