function UserResourceTestBase::getExpectedNormalizedEntity

Returns the expected normalization of the entity.

Return value

array

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

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,
      ],
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.