Inheritance: extends eZ\Publish\API\Repository\Values\User\User
Example #1
0
 /**
  * @covers \eZ\Publish\Core\Repository\Values\User\User::getProperties
  */
 public function testObjectProperties()
 {
     $object = new User();
     $properties = $object->attributes();
     self::assertNotContains('internalFields', $properties, 'Internal property found ');
     self::assertContains('login', $properties, 'Property not found');
     self::assertContains('email', $properties, 'Property not found');
     self::assertContains('passwordHash', $properties, 'Property not found');
     self::assertContains('hashAlgorithm', $properties, 'Property not found');
     self::assertContains('enabled', $properties, 'Property not found');
     self::assertContains('maxLogin', $properties, 'Property not found');
     // check for duplicates and double check existence of property
     $propertiesHash = array();
     foreach ($properties as $property) {
         if (isset($propertiesHash[$property])) {
             self::fail("Property '{$property}' exists several times in properties list");
         } elseif (!isset($object->{$property})) {
             self::fail("Property '{$property}' does not exist on object, even though it was hinted to be there");
         }
         $propertiesHash[$property] = 1;
     }
 }