function EntityTestMapFieldHalJsonAnonTest::getExpectedNormalizedEntity

Same name in other branches
  1. 9 core/modules/hal/tests/src/Functional/entity_test/EntityTestMapFieldHalJsonAnonTest.php \Drupal\Tests\hal\Functional\entity_test\EntityTestMapFieldHalJsonAnonTest::getExpectedNormalizedEntity()

Overrides EntityTestMapFieldResourceTestBase::getExpectedNormalizedEntity

File

core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestMapFieldHalJsonAnonTest.php, line 41

Class

EntityTestMapFieldHalJsonAnonTest
@group hal

Namespace

Drupal\Tests\entity_test\Functional\Hal

Code

protected function getExpectedNormalizedEntity() {
    $default_normalization = parent::getExpectedNormalizedEntity();
    $normalization = $this->applyHalFieldNormalization($default_normalization);
    $author = User::load(0);
    return $normalization + [
        '_links' => [
            'self' => [
                'href' => $this->baseUrl . '/entity/entity_test_map_field/1?_format=hal_json',
            ],
            'type' => [
                'href' => $this->baseUrl . '/rest/type/entity_test_map_field/entity_test_map_field',
            ],
            $this->baseUrl . '/rest/relation/entity_test_map_field/entity_test_map_field/user_id' => [
                [
                    'href' => $this->baseUrl . '/user/0?_format=hal_json',
                    'lang' => 'en',
                ],
            ],
        ],
        '_embedded' => [
            $this->baseUrl . '/rest/relation/entity_test_map_field/entity_test_map_field/user_id' => [
                [
                    '_links' => [
                        'self' => [
                            'href' => $this->baseUrl . '/user/0?_format=hal_json',
                        ],
                        'type' => [
                            'href' => $this->baseUrl . '/rest/type/user/user',
                        ],
                    ],
                    'uuid' => [
                        [
                            'value' => $author->uuid(),
                        ],
                    ],
                    'lang' => 'en',
                ],
            ],
        ],
    ];
}

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