You are here

protected function UserResourceTestBase::getExpectedNormalizedEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()
  2. 10 core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()

Returns the expected normalization of the entity.

Return value

array

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

1 call to UserResourceTestBase::getExpectedNormalizedEntity()
UserHalJsonAnonTest::getExpectedNormalizedEntity in core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php
Returns the expected normalization of the entity.
1 method overrides UserResourceTestBase::getExpectedNormalizedEntity()
UserHalJsonAnonTest::getExpectedNormalizedEntity in core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php
Returns the expected normalization of the entity.

File

core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php, line 97

Class

UserResourceTestBase

Namespace

Drupal\Tests\user\Functional\Rest

Code

protected function getExpectedNormalizedEntity() {
  return [
    'uid' => [
      [
        'value' => 3,
      ],
    ],
    'uuid' => [
      [
        'value' => $this->entity
          ->uuid(),
      ],
    ],
    'langcode' => [
      [
        'value' => 'en',
      ],
    ],
    'name' => [
      [
        'value' => 'Llama',
      ],
    ],
    'created' => [
      $this
        ->formatExpectedTimestampItemValues(123456789),
    ],
    'changed' => [
      $this
        ->formatExpectedTimestampItemValues($this->entity
        ->getChangedTime()),
    ],
    'default_langcode' => [
      [
        'value' => TRUE,
      ],
    ],
  ];
}