. * */ namespace OCP\AppFramework\Db; /** * @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 \PHPUnit_Framework_TestCase { private $entity; protected function 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()); } public function testCallShouldOnlyWorkForGetterSetter(){ $this->setExpectedException('\BadFunctionCallException'); $this->entity->something(); } public function testGetterShouldFailIfAttributeNotDefined(){ $this->setExpectedException('\BadFunctionCallException'); $this->entity->getTest(); } public function testSetterShouldFailIfAttributeNotDefined(){ $this->setExpectedException('\BadFunctionCallException'); $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())); } }