| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\View\Form;
- use Cake\Form\Form;
- use Cake\Network\Request;
- use Cake\TestSuite\TestCase;
- use Cake\View\Form\FormContext;
- /**
- * Form context test case.
- */
- class FormContextTest extends TestCase
- {
- /**
- * setup method.
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->request = new Request();
- }
- /**
- * Test getting the primary key.
- *
- * @return void
- */
- public function testPrimaryKey()
- {
- $context = new FormContext($this->request, ['entity' => new Form()]);
- $this->assertEquals([], $context->primaryKey());
- }
- /**
- * Test isPrimaryKey.
- *
- * @return void
- */
- public function testIsPrimaryKey()
- {
- $context = new FormContext($this->request, ['entity' => new Form()]);
- $this->assertFalse($context->isPrimaryKey('id'));
- }
- /**
- * Test the isCreate method.
- *
- * @return void
- */
- public function testIsCreate()
- {
- $context = new FormContext($this->request, ['entity' => new Form()]);
- $this->assertTrue($context->isCreate());
- }
- /**
- * Test reading values from the request & defaults.
- */
- public function testValPresent()
- {
- $this->request->data = [
- 'Articles' => [
- 'title' => 'New title',
- 'body' => 'My copy',
- ]
- ];
- $context = new FormContext($this->request, ['entity' => new Form()]);
- $this->assertEquals('New title', $context->val('Articles.title'));
- $this->assertEquals('My copy', $context->val('Articles.body'));
- $this->assertNull($context->val('Articles.nope'));
- }
- /**
- * Test getting values when the request and defaults are missing.
- *
- * @return void
- */
- public function testValMissing()
- {
- $context = new FormContext($this->request, ['entity' => new Form()]);
- $this->assertNull($context->val('Comments.field'));
- }
- /**
- * Test isRequired
- *
- * @return void
- */
- public function testIsRequired()
- {
- $form = new Form();
- $form->validator()
- ->requirePresence('name')
- ->add('email', 'format', ['rule' => 'email']);
- $context = new FormContext($this->request, [
- 'entity' => $form
- ]);
- $this->assertTrue($context->isRequired('name'));
- $this->assertTrue($context->isRequired('email'));
- $this->assertFalse($context->isRequired('body'));
- $this->assertFalse($context->isRequired('Prefix.body'));
- }
- /**
- * Test the type method.
- *
- * @return void
- */
- public function testType()
- {
- $form = new Form();
- $form->schema()
- ->addField('email', 'string')
- ->addField('user_id', 'integer');
- $context = new FormContext($this->request, [
- 'entity' => $form
- ]);
- $this->assertNull($context->type('undefined'));
- $this->assertEquals('integer', $context->type('user_id'));
- $this->assertEquals('string', $context->type('email'));
- $this->assertNull($context->type('Prefix.email'));
- }
- /**
- * Test fetching attributes.
- *
- * @return void
- */
- public function testAttributes()
- {
- $form = new Form();
- $form->schema()
- ->addField('email', [
- 'type' => 'string',
- 'length' => 10,
- ])
- ->addField('amount', [
- 'type' => 'decimal',
- 'length' => 5,
- 'precision' => 2,
- ]);
- $context = new FormContext($this->request, [
- 'entity' => $form
- ]);
- $this->assertEquals([], $context->attributes('id'));
- $this->assertEquals(['length' => 10, 'precision' => null], $context->attributes('email'));
- $this->assertEquals(['precision' => 2, 'length' => 5], $context->attributes('amount'));
- }
- /**
- * Test fetching errors.
- *
- * @return void
- */
- public function testError()
- {
- $form = new Form();
- $form->validator()
- ->add('email', 'format', ['rule' => 'email'])
- ->add('name', 'length', ['rule' => ['minLength', 10]]);
- $form->validate([
- 'email' => 'derp',
- 'name' => 'derp'
- ]);
- $context = new FormContext($this->request, ['entity' => $form]);
- $this->assertEquals([], $context->error('empty'));
- $this->assertEquals(['The provided value is invalid'], $context->error('email'));
- $this->assertEquals(['The provided value is invalid'], $context->error('name'));
- $this->assertEquals([], $context->error('Alias.name'));
- $this->assertEquals([], $context->error('nope.nope'));
- }
- /**
- * Test checking errors.
- *
- * @return void
- */
- public function testHasError()
- {
- $form = new Form();
- $form->validator()
- ->add('email', 'format', ['rule' => 'email'])
- ->add('name', 'length', ['rule' => ['minLength', 10]]);
- $form->validate([
- 'email' => 'derp',
- 'name' => 'derp'
- ]);
- $context = new FormContext($this->request, ['entity' => $form]);
- $this->assertTrue($context->hasError('email'));
- $this->assertTrue($context->hasError('name'));
- $this->assertFalse($context->hasError('nope'));
- $this->assertFalse($context->hasError('nope.nope'));
- }
- }
|