| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143 |
- <?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\ORM;
- use Cake\ORM\Entity;
- use Cake\TestSuite\TestCase;
- use Cake\Validation\Validator;
- use TestApp\Model\Entity\Extending;
- use TestApp\Model\Entity\NonExtending;
- /**
- * Entity test case.
- */
- class EntityTest extends TestCase
- {
- /**
- * Tests setting a single property in an entity without custom setters
- *
- * @return void
- */
- public function testSetOneParamNoSetters()
- {
- $entity = new Entity;
- $this->assertNull($entity->getOriginal('foo'));
- $entity->set('foo', 'bar');
- $this->assertEquals('bar', $entity->foo);
- $this->assertEquals('bar', $entity->getOriginal('foo'));
- $entity->set('foo', 'baz');
- $this->assertEquals('baz', $entity->foo);
- $this->assertEquals('bar', $entity->getOriginal('foo'));
- $entity->set('id', 1);
- $this->assertSame(1, $entity->id);
- $this->assertEquals(1, $entity->getOriginal('id'));
- $this->assertEquals('bar', $entity->getOriginal('foo'));
- }
- /**
- * Tests setting multiple properties without custom setters
- *
- * @return void
- */
- public function testSetMultiplePropertiesNoSetters()
- {
- $entity = new Entity;
- $entity->accessible('*', true);
- $entity->set(['foo' => 'bar', 'id' => 1]);
- $this->assertEquals('bar', $entity->foo);
- $this->assertSame(1, $entity->id);
- $entity->set(['foo' => 'baz', 'id' => 2, 'thing' => 3]);
- $this->assertEquals('baz', $entity->foo);
- $this->assertSame(2, $entity->id);
- $this->assertSame(3, $entity->thing);
- $this->assertEquals('bar', $entity->getOriginal('foo'));
- $this->assertEquals(1, $entity->getOriginal('id'));
- }
- /**
- * Tests setting a single property using a setter function
- *
- * @return void
- */
- public function testSetOneParamWithSetter()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_setName']);
- $entity->expects($this->once())->method('_setName')
- ->with('Jones')
- ->will($this->returnCallback(function ($name) {
- $this->assertEquals('Jones', $name);
- return 'Dr. ' . $name;
- }));
- $entity->set('name', 'Jones');
- $this->assertEquals('Dr. Jones', $entity->name);
- }
- /**
- * Tests setting multiple properties using a setter function
- *
- * @return void
- */
- public function testMultipleWithSetter()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_setName', '_setStuff']);
- $entity->accessible('*', true);
- $entity->expects($this->once())->method('_setName')
- ->with('Jones')
- ->will($this->returnCallback(function ($name) {
- $this->assertEquals('Jones', $name);
- return 'Dr. ' . $name;
- }));
- $entity->expects($this->once())->method('_setStuff')
- ->with(['a', 'b'])
- ->will($this->returnCallback(function ($stuff) {
- $this->assertEquals(['a', 'b'], $stuff);
- return ['c', 'd'];
- }));
- $entity->set(['name' => 'Jones', 'stuff' => ['a', 'b']]);
- $this->assertEquals('Dr. Jones', $entity->name);
- $this->assertEquals(['c', 'd'], $entity->stuff);
- }
- /**
- * Tests that it is possible to bypass the setters
- *
- * @return void
- */
- public function testBypassSetters()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_setName', '_setStuff']);
- $entity->accessible('*', true);
- $entity->expects($this->never())->method('_setName');
- $entity->expects($this->never())->method('_setStuff');
- $entity->set('name', 'Jones', ['setter' => false]);
- $this->assertEquals('Jones', $entity->name);
- $entity->set('stuff', 'Thing', ['setter' => false]);
- $this->assertEquals('Thing', $entity->stuff);
- $entity->set(['name' => 'foo', 'stuff' => 'bar'], ['setter' => false]);
- $this->assertEquals('bar', $entity->stuff);
- }
- /**
- * Tests that the constructor will set initial properties
- *
- * @return void
- */
- public function testConstructor()
- {
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['set'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->at(0))
- ->method('set')
- ->with(['a' => 'b', 'c' => 'd'], ['setter' => true, 'guard' => false]);
- $entity->expects($this->at(1))
- ->method('set')
- ->with(['foo' => 'bar'], ['setter' => false, 'guard' => false]);
- $entity->__construct(['a' => 'b', 'c' => 'd']);
- $entity->__construct(['foo' => 'bar'], ['useSetters' => false]);
- }
- /**
- * Tests that the constructor will set initial properties and pass the guard
- * option along
- *
- * @return void
- */
- public function testConstructorWithGuard()
- {
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['set'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->once())
- ->method('set')
- ->with(['foo' => 'bar'], ['setter' => true, 'guard' => true]);
- $entity->__construct(['foo' => 'bar'], ['guard' => true]);
- }
- /**
- * Tests getting properties with no custom getters
- *
- * @return void
- */
- public function testGetNoGetters()
- {
- $entity = new Entity(['id' => 1, 'foo' => 'bar']);
- $this->assertSame(1, $entity->get('id'));
- $this->assertSame('bar', $entity->get('foo'));
- }
- /**
- * Tests get with custom getter
- *
- * @return void
- */
- public function testGetCustomGetters()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getName']);
- $entity->expects($this->exactly(2))->method('_getName')
- ->with('Jones')
- ->will($this->returnCallback(function ($name) {
- $this->assertSame('Jones', $name);
- return 'Dr. ' . $name;
- }));
- $entity->set('name', 'Jones');
- $this->assertEquals('Dr. Jones', $entity->get('name'));
- $this->assertEquals('Dr. Jones', $entity->get('name'));
- }
- /**
- * Test magic property setting with no custom setter
- *
- * @return void
- */
- public function testMagicSet()
- {
- $entity = new Entity;
- $entity->name = 'Jones';
- $this->assertEquals('Jones', $entity->name);
- $entity->name = 'George';
- $this->assertEquals('George', $entity->name);
- }
- /**
- * Tests magic set with custom setter function
- *
- * @return void
- */
- public function testMagicSetWithSetter()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_setName']);
- $entity->expects($this->once())->method('_setName')
- ->with('Jones')
- ->will($this->returnCallback(function ($name) {
- $this->assertEquals('Jones', $name);
- return 'Dr. ' . $name;
- }));
- $entity->name = 'Jones';
- $this->assertEquals('Dr. Jones', $entity->name);
- }
- /**
- * Tests the magic getter with a custom getter function
- *
- * @return void
- */
- public function testMagicGetWithGetter()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getName']);
- $entity->expects($this->once())->method('_getName')
- ->with('Jones')
- ->will($this->returnCallback(function ($name) {
- $this->assertSame('Jones', $name);
- return 'Dr. ' . $name;
- }));
- $entity->set('name', 'Jones');
- $this->assertEquals('Dr. Jones', $entity->name);
- }
- /**
- * Test indirectly modifying internal properties
- *
- * @return void
- */
- public function testIndirectModification()
- {
- $entity = new Entity;
- $entity->things = ['a', 'b'];
- $entity->things[] = 'c';
- $this->assertEquals(['a', 'b', 'c'], $entity->things);
- }
- /**
- * Tests has() method
- *
- * @return void
- */
- public function testHas()
- {
- $entity = new Entity(['id' => 1, 'name' => 'Juan', 'foo' => null]);
- $this->assertTrue($entity->has('id'));
- $this->assertTrue($entity->has('name'));
- $this->assertFalse($entity->has('foo'));
- $this->assertFalse($entity->has('last_name'));
- $this->assertTrue($entity->has(['id']));
- $this->assertTrue($entity->has(['id', 'name']));
- $this->assertFalse($entity->has(['id', 'foo']));
- $this->assertFalse($entity->has(['id', 'nope']));
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getThings']);
- $entity->expects($this->once())->method('_getThings')
- ->will($this->returnValue(0));
- $this->assertTrue($entity->has('things'));
- }
- /**
- * Tests unsetProperty one property at a time
- *
- * @return void
- */
- public function testUnset()
- {
- $entity = new Entity(['id' => 1, 'name' => 'bar']);
- $entity->unsetProperty('id');
- $this->assertFalse($entity->has('id'));
- $this->assertTrue($entity->has('name'));
- $entity->unsetProperty('name');
- $this->assertFalse($entity->has('id'));
- }
- /**
- * Unsetting a property should not mark it as dirty.
- *
- * @return void
- */
- public function testUnsetMakesClean()
- {
- $entity = new Entity(['id' => 1, 'name' => 'bar']);
- $this->assertTrue($entity->dirty('name'));
- $entity->unsetProperty('name');
- $this->assertFalse($entity->dirty('name'), 'Removed properties are not dirty.');
- }
- /**
- * Tests unsetProperty whith multiple properties
- *
- * @return void
- */
- public function testUnsetMultiple()
- {
- $entity = new Entity(['id' => 1, 'name' => 'bar', 'thing' => 2]);
- $entity->unsetProperty(['id', 'thing']);
- $this->assertFalse($entity->has('id'));
- $this->assertTrue($entity->has('name'));
- $this->assertFalse($entity->has('thing'));
- }
- /**
- * Tests the magic __isset() method
- *
- * @return void
- */
- public function testMagicIsset()
- {
- $entity = new Entity(['id' => 1, 'name' => 'Juan', 'foo' => null]);
- $this->assertTrue(isset($entity->id));
- $this->assertTrue(isset($entity->name));
- $this->assertFalse(isset($entity->foo));
- $this->assertFalse(isset($entity->thing));
- }
- /**
- * Tests the magic __unset() method
- *
- * @return void
- */
- public function testMagicUnset()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['unsetProperty']);
- $entity->expects($this->at(0))
- ->method('unsetProperty')
- ->with('foo');
- unset($entity->foo);
- }
- /**
- * Tests isset with array access
- *
- * @return void
- */
- public function testIssetArrayAccess()
- {
- $entity = new Entity(['id' => 1, 'name' => 'Juan', 'foo' => null]);
- $this->assertTrue(isset($entity['id']));
- $this->assertTrue(isset($entity['name']));
- $this->assertFalse(isset($entity['foo']));
- $this->assertFalse(isset($entity['thing']));
- }
- /**
- * Tests get property with array access
- *
- * @return void
- */
- public function testGetArrayAccess()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['get']);
- $entity->expects($this->at(0))
- ->method('get')
- ->with('foo')
- ->will($this->returnValue('worked'));
- $entity->expects($this->at(1))
- ->method('get')
- ->with('bar')
- ->will($this->returnValue('worked too'));
- $this->assertEquals('worked', $entity['foo']);
- $this->assertEquals('worked too', $entity['bar']);
- }
- /**
- * Tests set with array access
- *
- * @return void
- */
- public function testSetArrayAccess()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['set']);
- $entity->accessible('*', true);
- $entity->expects($this->at(0))
- ->method('set')
- ->with('foo', 1)
- ->will($this->returnSelf());
- $entity->expects($this->at(1))
- ->method('set')
- ->with('bar', 2)
- ->will($this->returnSelf());
- $entity['foo'] = 1;
- $entity['bar'] = 2;
- }
- /**
- * Tests unset with array access
- *
- * @return void
- */
- public function testUnsetArrayAccess()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['unsetProperty']);
- $entity->expects($this->at(0))
- ->method('unsetProperty')
- ->with('foo');
- unset($entity['foo']);
- }
- /**
- * Tests that the method cache will only report the methods for the called class,
- * this is, calling methods defined in another entity will not cause a fatal error
- * when trying to call directly an inexistent method in another class
- *
- * @return void
- */
- public function testMethodCache()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_setFoo', '_getBar']);
- $entity2 = $this->getMock('\Cake\ORM\Entity', ['_setBar']);
- $entity->expects($this->once())->method('_setFoo');
- $entity->expects($this->once())->method('_getBar');
- $entity2->expects($this->once())->method('_setBar');
- $entity->set('foo', 1);
- $entity->get('bar');
- $entity2->set('bar', 1);
- }
- /**
- * Tests that long properties in the entity are inflected correctly
- *
- * @return void
- */
- public function testSetGetLongProperyNames()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getVeryLongProperty', '_setVeryLongProperty']);
- $entity->expects($this->once())->method('_getVeryLongProperty');
- $entity->expects($this->once())->method('_setVeryLongProperty');
- $entity->get('very_long_property');
- $entity->set('very_long_property', 1);
- }
- /**
- * Tests serializing an entity as json
- *
- * @return void
- */
- public function testJsonSerialize()
- {
- $data = ['name' => 'James', 'age' => 20, 'phones' => ['123', '457']];
- $entity = new Entity($data);
- $this->assertEquals(json_encode($data), json_encode($entity));
- }
- /**
- * Tests the extract method
- *
- * @return void
- */
- public function testExtract()
- {
- $entity = new Entity([
- 'id' => 1,
- 'title' => 'Foo',
- 'author_id' => 3
- ]);
- $expected = ['author_id' => 3, 'title' => 'Foo', ];
- $this->assertEquals($expected, $entity->extract(['author_id', 'title']));
- $expected = ['id' => 1];
- $this->assertEquals($expected, $entity->extract(['id']));
- $expected = [];
- $this->assertEquals($expected, $entity->extract([]));
- $expected = ['id' => 1, 'crazyness' => null];
- $this->assertEquals($expected, $entity->extract(['id', 'crazyness']));
- }
- /**
- * Tests dirty() method on a newly created object
- *
- * @return void
- */
- public function testDirty()
- {
- $entity = new Entity([
- 'id' => 1,
- 'title' => 'Foo',
- 'author_id' => 3
- ]);
- $this->assertTrue($entity->dirty('id'));
- $this->assertTrue($entity->dirty('title'));
- $this->assertTrue($entity->dirty('author_id'));
- $this->assertTrue($entity->dirty());
- $entity->dirty('id', false);
- $this->assertFalse($entity->dirty('id'));
- $this->assertTrue($entity->dirty('title'));
- $entity->dirty('title', false);
- $this->assertFalse($entity->dirty('title'));
- $this->assertTrue($entity->dirty());
- $entity->dirty('author_id', false);
- $this->assertFalse($entity->dirty());
- }
- /**
- * Tests dirty() when altering properties values and adding new ones
- *
- * @return void
- */
- public function testDirtyChangingProperties()
- {
- $entity = new Entity([
- 'title' => 'Foo',
- ]);
- $entity->dirty('title', false);
- $this->assertFalse($entity->dirty('title'));
- $entity->set('title', 'Foo');
- $this->assertTrue($entity->dirty('title'));
- $entity->set('title', 'Foo');
- $this->assertTrue($entity->dirty('title'));
- $entity->set('something', 'else');
- $this->assertTrue($entity->dirty('something'));
- }
- /**
- * Tests extract only dirty properties
- *
- * @return void
- */
- public function testExtractDirty()
- {
- $entity = new Entity([
- 'id' => 1,
- 'title' => 'Foo',
- 'author_id' => 3
- ]);
- $entity->dirty('id', false);
- $entity->dirty('title', false);
- $expected = ['author_id' => 3];
- $result = $entity->extract(['id', 'title', 'author_id'], true);
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests the clean method
- *
- * @return void
- */
- public function testClean()
- {
- $entity = new Entity([
- 'id' => 1,
- 'title' => 'Foo',
- 'author_id' => 3
- ]);
- $this->assertTrue($entity->dirty('id'));
- $this->assertTrue($entity->dirty('title'));
- $this->assertTrue($entity->dirty('author_id'));
- $entity->clean();
- $this->assertFalse($entity->dirty('id'));
- $this->assertFalse($entity->dirty('title'));
- $this->assertFalse($entity->dirty('author_id'));
- }
- /**
- * Tests the isNew method
- *
- * @return void
- */
- public function testIsNew()
- {
- $data = [
- 'id' => 1,
- 'title' => 'Foo',
- 'author_id' => 3
- ];
- $entity = new Entity($data);
- $this->assertTrue($entity->isNew());
- $entity->isNew(true);
- $this->assertTrue($entity->isNew());
- $entity->isNew('derpy');
- $this->assertTrue($entity->isNew());
- $entity->isNew(false);
- $this->assertFalse($entity->isNew());
- }
- /**
- * Tests the constructor when passing the markClean option
- *
- * @return void
- */
- public function testConstructorWithClean()
- {
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['clean'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->never())->method('clean');
- $entity->__construct(['a' => 'b', 'c' => 'd']);
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['clean'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->once())->method('clean');
- $entity->__construct(['a' => 'b', 'c' => 'd'], ['markClean' => true]);
- }
- /**
- * Tests the constructor when passing the markClean option
- *
- * @return void
- */
- public function testConstructorWithMarkNew()
- {
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['isNew'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->never())->method('clean');
- $entity->__construct(['a' => 'b', 'c' => 'd']);
- $entity = $this->getMockBuilder('\Cake\ORM\Entity')
- ->setMethods(['isNew'])
- ->disableOriginalConstructor()
- ->getMock();
- $entity->expects($this->once())->method('isNew');
- $entity->__construct(['a' => 'b', 'c' => 'd'], ['markNew' => true]);
- }
- /**
- * Test toArray method.
- *
- * @return void
- */
- public function testToArray()
- {
- $data = ['name' => 'James', 'age' => 20, 'phones' => ['123', '457']];
- $entity = new Entity($data);
- $this->assertEquals($data, $entity->toArray());
- }
- /**
- * Test toArray recursive.
- *
- * @return void
- */
- public function testToArrayRecursive()
- {
- $data = ['id' => 1, 'name' => 'James', 'age' => 20, 'phones' => ['123', '457']];
- $user = new Extending($data);
- $comments = [
- new NonExtending(['user_id' => 1, 'body' => 'Comment 1']),
- new NonExtending(['user_id' => 1, 'body' => 'Comment 2']),
- ];
- $user->comments = $comments;
- $user->profile = new Entity(['email' => 'mark@example.com']);
- $expected = [
- 'id' => 1,
- 'name' => 'James',
- 'age' => 20,
- 'phones' => ['123', '457'],
- 'profile' => ['email' => 'mark@example.com'],
- 'comments' => [
- ['user_id' => 1, 'body' => 'Comment 1'],
- ['user_id' => 1, 'body' => 'Comment 2'],
- ]
- ];
- $this->assertEquals($expected, $user->toArray());
- }
- /**
- * Test that get accessors are called when converting to arrays.
- *
- * @return void
- */
- public function testToArrayWithAccessor()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getName']);
- $entity->accessible('*', true);
- $entity->set(['name' => 'Mark', 'email' => 'mark@example.com']);
- $entity->expects($this->any())
- ->method('_getName')
- ->will($this->returnValue('Jose'));
- $expected = ['name' => 'Jose', 'email' => 'mark@example.com'];
- $this->assertEquals($expected, $entity->toArray());
- }
- /**
- * Test that toArray respects hidden properties.
- *
- * @return void
- */
- public function testToArrayHiddenProperties()
- {
- $data = ['secret' => 'sauce', 'name' => 'mark', 'id' => 1];
- $entity = new Entity($data);
- $entity->hiddenProperties(['secret']);
- $this->assertEquals(['name' => 'mark', 'id' => 1], $entity->toArray());
- }
- /**
- * Test toArray includes 'virtual' properties.
- *
- * @return void
- */
- public function testToArrayVirtualProperties()
- {
- $entity = $this->getMock('\Cake\ORM\Entity', ['_getName']);
- $entity->accessible('*', true);
- $entity->expects($this->any())
- ->method('_getName')
- ->will($this->returnValue('Jose'));
- $entity->set(['email' => 'mark@example.com']);
- $entity->virtualProperties(['name']);
- $expected = ['name' => 'Jose', 'email' => 'mark@example.com'];
- $this->assertEquals($expected, $entity->toArray());
- $this->assertEquals(['name'], $entity->virtualProperties());
- $entity->hiddenProperties(['name']);
- $expected = ['email' => 'mark@example.com'];
- $this->assertEquals($expected, $entity->toArray());
- $this->assertEquals(['name'], $entity->hiddenProperties());
- }
- /**
- * Tests the errors method
- *
- * @return void
- */
- public function testErrors()
- {
- $entity = new Entity;
- $this->assertEmpty($entity->errors());
- $this->assertSame($entity, $entity->errors('foo', 'bar'));
- $this->assertEquals(['bar'], $entity->errors('foo'));
- $this->assertEquals([], $entity->errors('boo'));
- $entity['boo'] = [
- 'someting' => 'stupid',
- 'and' => false
- ];
- $this->assertEquals([], $entity->errors('boo'));
- $entity->errors('foo', 'other error');
- $this->assertEquals(['bar', 'other error'], $entity->errors('foo'));
- $entity->errors('bar', ['something', 'bad']);
- $this->assertEquals(['something', 'bad'], $entity->errors('bar'));
- $expected = ['foo' => ['bar', 'other error'], 'bar' => ['something', 'bad']];
- $this->assertEquals($expected, $entity->errors());
- $errors = ['foo' => ['something'], 'bar' => 'else', 'baz' => ['error']];
- $this->assertSame($entity, $entity->errors($errors, null, true));
- $errors['bar'] = ['else'];
- $this->assertEquals($errors, $entity->errors());
- }
- /**
- * Tests that it is possible to get errors for nested entities
- *
- * @return void
- */
- public function testErrorsDeep()
- {
- $user = new Entity();
- $owner = new NonExtending();
- $author = new Extending([
- 'foo' => 'bar',
- 'thing' => 'baz',
- 'user' => $user,
- 'owner' => $owner
- ]);
- $author->errors('thing', ['this is a mistake']);
- $user->errors(['a' => ['error1'], 'b' => ['error2']]);
- $owner->errors(['c' => ['error3'], 'd' => ['error4']]);
- $expected = ['a' => ['error1'], 'b' => ['error2']];
- $this->assertEquals($expected, $author->errors('user'));
- $expected = ['c' => ['error3'], 'd' => ['error4']];
- $this->assertEquals($expected, $author->errors('owner'));
- $author->set('multiple', [$user, $owner]);
- $expected = [
- ['a' => ['error1'], 'b' => ['error2']],
- ['c' => ['error3'], 'd' => ['error4']]
- ];
- $this->assertEquals($expected, $author->errors('multiple'));
- $expected = [
- 'thing' => $author->errors('thing'),
- 'user' => $author->errors('user'),
- 'owner' => $author->errors('owner'),
- 'multiple' => $author->errors('multiple')
- ];
- $this->assertEquals($expected, $author->errors());
- }
- /**
- * Test that errors can be read with a path.
- *
- * @return void
- */
- public function testErrorPathReading()
- {
- $assoc = new Entity();
- $assoc2 = new NonExtending();
- $entity = new Extending([
- 'field' => 'value',
- 'one' => $assoc,
- 'many' => [$assoc2]
- ]);
- $entity->errors('wrong', 'Bad stuff');
- $assoc->errors('nope', 'Terrible things');
- $assoc2->errors('nope', 'Terrible things');
- $this->assertEquals(['Bad stuff'], $entity->errors('wrong'));
- $this->assertEquals(['Terrible things'], $entity->errors('many.0.nope'));
- $this->assertEquals(['Terrible things'], $entity->errors('one.nope'));
- $this->assertEquals(['nope' => ['Terrible things']], $entity->errors('one'));
- $this->assertEquals([0 => ['nope' => ['Terrible things']]], $entity->errors('many'));
- $this->assertEquals(['nope' => ['Terrible things']], $entity->errors('many.0'));
- $this->assertEquals([], $entity->errors('many.0.mistake'));
- $this->assertEquals([], $entity->errors('one.mistake'));
- $this->assertEquals([], $entity->errors('one.1.mistake'));
- $this->assertEquals([], $entity->errors('many.1.nope'));
- }
- /**
- * Tests that changing the value of a property will remove errors
- * stored for it
- *
- * @return void
- */
- public function testDirtyRemovesError()
- {
- $entity = new Entity(['a' => 'b']);
- $entity->errors('a', 'is not good');
- $entity->set('a', 'c');
- $this->assertEmpty($entity->errors('a'));
- $entity->errors('a', 'is not good');
- $entity->dirty('a', true);
- $this->assertEmpty($entity->errors('a'));
- }
- /**
- * Tests that marking an entity as clean will remove errors too
- *
- * @return void
- */
- public function testCleanRemovesErrors()
- {
- $entity = new Entity(['a' => 'b']);
- $entity->errors('a', 'is not good');
- $entity->clean();
- $this->assertEmpty($entity->errors());
- }
- /**
- * Tests accessible() method as a getter and setter
- *
- * @return void
- */
- public function testAccessible()
- {
- $entity = new Entity;
- $entity->accessible('*', false);
- $this->assertFalse($entity->accessible('foo'));
- $this->assertFalse($entity->accessible('bar'));
- $this->assertSame($entity, $entity->accessible('foo', true));
- $this->assertTrue($entity->accessible('foo'));
- $this->assertFalse($entity->accessible('bar'));
- $this->assertSame($entity, $entity->accessible('bar', true));
- $this->assertTrue($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertSame($entity, $entity->accessible('foo', false));
- $this->assertFalse($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertSame($entity, $entity->accessible('bar', false));
- $this->assertFalse($entity->accessible('foo'));
- $this->assertFalse($entity->accessible('bar'));
- }
- /**
- * Tests that an array can be used to set
- *
- * @return void
- */
- public function testAccessibleAsArray()
- {
- $entity = new Entity;
- $entity->accessible(['foo', 'bar', 'baz'], true);
- $this->assertTrue($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertTrue($entity->accessible('baz'));
- $entity->accessible('foo', false);
- $this->assertFalse($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertTrue($entity->accessible('baz'));
- $entity->accessible(['foo', 'bar', 'baz'], false);
- $this->assertFalse($entity->accessible('foo'));
- $this->assertFalse($entity->accessible('bar'));
- $this->assertFalse($entity->accessible('baz'));
- }
- /**
- * Tests that a wildcard can be used for setting accesible properties
- *
- * @return void
- */
- public function testAccessibleWildcard()
- {
- $entity = new Entity;
- $entity->accessible(['foo', 'bar', 'baz'], true);
- $this->assertTrue($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertTrue($entity->accessible('baz'));
- $entity->accessible('*', false);
- $this->assertFalse($entity->accessible('foo'));
- $this->assertFalse($entity->accessible('bar'));
- $this->assertFalse($entity->accessible('baz'));
- $this->assertFalse($entity->accessible('newOne'));
- $entity->accessible('*', true);
- $this->assertTrue($entity->accessible('foo'));
- $this->assertTrue($entity->accessible('bar'));
- $this->assertTrue($entity->accessible('baz'));
- $this->assertTrue($entity->accessible('newOne2'));
- }
- /**
- * Tests that only accessible properties can be set
- *
- * @return void
- */
- public function testSetWithAccessible()
- {
- $entity = new Entity(['foo' => 1, 'bar' => 2]);
- $options = ['guard' => true];
- $entity->accessible('*', false);
- $entity->accessible('foo', true);
- $entity->set('bar', 3, $options);
- $entity->set('foo', 4, $options);
- $this->assertEquals(2, $entity->get('bar'));
- $this->assertEquals(4, $entity->get('foo'));
- $entity->accessible('bar', true);
- $entity->set('bar', 3, $options);
- $this->assertEquals(3, $entity->get('bar'));
- }
- /**
- * Tests that only accessible properties can be set
- *
- * @return void
- */
- public function testSetWithAccessibleWithArray()
- {
- $entity = new Entity(['foo' => 1, 'bar' => 2]);
- $options = ['guard' => true];
- $entity->accessible('*', false);
- $entity->accessible('foo', true);
- $entity->set(['bar' => 3, 'foo' => 4], $options);
- $this->assertEquals(2, $entity->get('bar'));
- $this->assertEquals(4, $entity->get('foo'));
- $entity->accessible('bar', true);
- $entity->set(['bar' => 3, 'foo' => 5], $options);
- $this->assertEquals(3, $entity->get('bar'));
- $this->assertEquals(5, $entity->get('foo'));
- }
- /**
- * Test that accessible() and single property setting works.
- *
- * @return void
- */
- public function testSetWithAccessibleSingleProperty()
- {
- $entity = new Entity(['foo' => 1, 'bar' => 2]);
- $entity->accessible('*', false);
- $entity->accessible('title', true);
- $entity->set(['title' => 'test', 'body' => 'Nope']);
- $this->assertEquals('test', $entity->title);
- $this->assertNull($entity->body);
- $entity->body = 'Yep';
- $this->assertEquals('Yep', $entity->body, 'Single set should bypass guards.');
- $entity->set('body', 'Yes');
- $this->assertEquals('Yes', $entity->body, 'Single set should bypass guards.');
- }
- /**
- * Tests the entity's __toString method
- *
- * @return void
- */
- public function testToString()
- {
- $entity = new Entity(['foo' => 1, 'bar' => 2]);
- $this->assertEquals(json_encode($entity, JSON_PRETTY_PRINT), (string)$entity);
- }
- /**
- * Tests __debugInfo
- *
- * @return void
- */
- public function testDebugInfo()
- {
- $entity = new Entity(['foo' => 'bar'], ['markClean' => true]);
- $entity->accessible('name', true);
- $entity->virtualProperties(['baz']);
- $entity->dirty('foo', true);
- $entity->errors('foo', ['An error']);
- $entity->source('foos');
- $result = $entity->__debugInfo();
- $expected = [
- 'new' => true,
- 'accessible' => ['*' => true, 'name' => true],
- 'properties' => ['foo' => 'bar'],
- 'dirty' => ['foo' => true],
- 'original' => [],
- 'virtual' => ['baz'],
- 'errors' => ['foo' => ['An error']],
- 'repository' => 'foos'
- ];
- $this->assertSame($expected, $result);
- }
- /**
- * Tests the source method
- *
- * @return void
- */
- public function testSource()
- {
- $entity = new Entity;
- $this->assertNull($entity->source());
- $entity->source('foos');
- $this->assertEquals('foos', $entity->source());
- }
- /**
- * Provides empty values
- *
- * @return void
- */
- public function emptyNamesProvider()
- {
- return [[''], [null], [false]];
- }
- /**
- * Tests that trying to get an empty propery name throws exception
- *
- * @dataProvider emptyNamesProvider
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testEmptyProperties($property)
- {
- $entity = new Entity();
- $entity->get($property);
- }
- /**
- * Tests that setitng an empty property name does nothing
- *
- * @expectedException \InvalidArgumentException
- * @dataProvider emptyNamesProvider
- * @return void
- */
- public function testSetEmptyPropertyName($property)
- {
- $entity = new Entity();
- $entity->set($property, 'bar');
- }
- }
|