function UserResourceTestBase::getExpectedNormalizedEntity

Same name and namespace in other branches
  1. 8.9.x 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()
  3. 11.x core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

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

File

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

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' => [
            [
                'value' => (new \DateTime())->setTimestamp(123456789)
                    ->setTimezone(new \DateTimeZone('UTC'))
                    ->format(\DateTime::RFC3339),
                'format' => \DateTime::RFC3339,
            ],
        ],
        'changed' => [
            [
                'value' => (new \DateTime())->setTimestamp($this->entity
                    ->getChangedTime())
                    ->setTimezone(new \DateTimeZone('UTC'))
                    ->format(\DateTime::RFC3339),
                'format' => \DateTime::RFC3339,
            ],
        ],
        'default_langcode' => [
            [
                'value' => TRUE,
            ],
        ],
    ];
}

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