123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- /**
- * ownCloud - App Framework
- *
- * @author Bernhard Posselt
- * @copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace Test\AppFramework\Db;
- use OCP\AppFramework\Db\Entity;
- /**
- * @method integer getId()
- * @method void setId(integer $id)
- * @method integer getTestId()
- * @method void setTestId(integer $id)
- * @method string getName()
- * @method void setName(string $name)
- * @method string getEmail()
- * @method void setEmail(string $email)
- * @method string getPreName()
- * @method void setPreName(string $preName)
- */
- class TestEntity extends Entity {
- protected $name;
- protected $email;
- protected $testId;
- protected $preName;
- public function __construct($name=null){
- $this->addType('testId', 'integer');
- $this->name = $name;
- }
- };
- class EntityTest extends \Test\TestCase {
- private $entity;
- protected function setUp(){
- parent::setUp();
- $this->entity = new TestEntity();
- }
- public function testResetUpdatedFields(){
- $entity = new TestEntity();
- $entity->setId(3);
- $entity->resetUpdatedFields();
- $this->assertEquals(array(), $entity->getUpdatedFields());
- }
- public function testFromRow(){
- $row = array(
- 'pre_name' => 'john',
- 'email' => 'john@something.com'
- );
- $this->entity = TestEntity::fromRow($row);
- $this->assertEquals($row['pre_name'], $this->entity->getPreName());
- $this->assertEquals($row['email'], $this->entity->getEmail());
- }
- public function testGetSetId(){
- $id = 3;
- $this->entity->setId(3);
- $this->assertEquals($id, $this->entity->getId());
- }
- public function testColumnToPropertyNoReplacement(){
- $column = 'my';
- $this->assertEquals('my',
- $this->entity->columnToProperty($column));
- }
- public function testColumnToProperty(){
- $column = 'my_attribute';
- $this->assertEquals('myAttribute',
- $this->entity->columnToProperty($column));
- }
- public function testPropertyToColumnNoReplacement(){
- $property = 'my';
- $this->assertEquals('my',
- $this->entity->propertyToColumn($property));
- }
- public function testSetterMarksFieldUpdated(){
- $this->entity->setId(3);
- $this->assertContains('id', $this->entity->getUpdatedFields());
- }
- /**
- * @expectedException \BadFunctionCallException
- */
- public function testCallShouldOnlyWorkForGetterSetter(){
- $this->entity->something();
- }
- /**
- * @expectedException \BadFunctionCallException
- */
- public function testGetterShouldFailIfAttributeNotDefined(){
- $this->entity->getTest();
- }
- /**
- * @expectedException \BadFunctionCallException
- */
- public function testSetterShouldFailIfAttributeNotDefined(){
- $this->entity->setTest();
- }
- public function testFromRowShouldNotAssignEmptyArray(){
- $row = array();
- $entity2 = new TestEntity();
- $this->entity = TestEntity::fromRow($row);
- $this->assertEquals($entity2, $this->entity);
- }
- public function testIdGetsConvertedToInt(){
- $row = array('id' => '4');
- $this->entity = TestEntity::fromRow($row);
- $this->assertSame(4, $this->entity->getId());
- }
- public function testSetType(){
- $row = array('testId' => '4');
- $this->entity = TestEntity::fromRow($row);
- $this->assertSame(4, $this->entity->getTestId());
- }
- public function testFromParams(){
- $params = array(
- 'testId' => 4,
- 'email' => 'john@doe'
- );
- $entity = TestEntity::fromParams($params);
- $this->assertEquals($params['testId'], $entity->getTestId());
- $this->assertEquals($params['email'], $entity->getEmail());
- $this->assertTrue($entity instanceof TestEntity);
- }
- public function testSlugify(){
- $entity = new TestEntity();
- $entity->setName('Slugify this!');
- $this->assertEquals('slugify-this', $entity->slugify('name'));
- $entity->setName('°!"§$%&/()=?`´ß\}][{³²#\'+~*-_.:,;<>|äöüÄÖÜSlugify this!');
- $this->assertEquals('slugify-this', $entity->slugify('name'));
- }
- public function testSetterCasts() {
- $entity = new TestEntity();
- $entity->setId('3');
- $this->assertSame(3, $entity->getId());
- }
- public function testSetterDoesNotCastOnNull() {
- $entity = new TestEntity();
- $entity->setId(null);
- $this->assertSame(null, $entity->getId());
- }
- public function testGetFieldTypes() {
- $entity = new TestEntity();
- $this->assertEquals(array(
- 'id' => 'integer',
- 'testId' => 'integer'
- ), $entity->getFieldTypes());
- }
- public function testGetItInt() {
- $entity = new TestEntity();
- $entity->setId(3);
- $this->assertEquals('integer', gettype($entity->getId()));
- }
- public function testFieldsNotMarkedUpdatedIfNothingChanges() {
- $entity = new TestEntity('hey');
- $entity->setName('hey');
- $this->assertEquals(0, count($entity->getUpdatedFields()));
- }
- }
|