NodeHalJsonAnonTest.php

Same filename in other branches
  1. 9 core/modules/hal/tests/src/Functional/node/NodeHalJsonAnonTest.php

Namespace

Drupal\Tests\node\Functional\Hal

File

core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php

View source
<?php

namespace Drupal\Tests\node\Functional\Hal;

use Drupal\Tests\hal\Functional\EntityResource\HalEntityNormalizationTrait;
use Drupal\Tests\node\Functional\Rest\NodeResourceTestBase;
use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
use Drupal\user\Entity\User;

/**
 * @group hal
 */
class NodeHalJsonAnonTest extends NodeResourceTestBase {
    use HalEntityNormalizationTrait;
    use AnonResourceTestTrait;
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'hal',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $format = 'hal_json';
    
    /**
     * {@inheritdoc}
     */
    protected static $mimeType = 'application/hal+json';
    
    /**
     * {@inheritdoc}
     */
    protected static $patchProtectedFieldNames = [
        'revision_timestamp' => NULL,
        'created' => "The 'administer nodes' permission is required.",
        'changed' => NULL,
        'promote' => "The 'administer nodes' permission is required.",
        'sticky' => "The 'administer nodes' permission is required.",
        'path' => "The following permissions are required: 'create url aliases' OR 'administer url aliases'.",
        'revision_uid' => NULL,
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedNormalizedEntity() {
        $default_normalization = parent::getExpectedNormalizedEntity();
        $normalization = $this->applyHalFieldNormalization($default_normalization);
        $author = User::load($this->entity
            ->getOwnerId());
        return $normalization + [
            '_links' => [
                'self' => [
                    'href' => $this->baseUrl . '/llama?_format=hal_json',
                ],
                'type' => [
                    'href' => $this->baseUrl . '/rest/type/node/camelids',
                ],
                $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [
                    [
                        'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json',
                    ],
                ],
                $this->baseUrl . '/rest/relation/node/camelids/uid' => [
                    [
                        'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json',
                        'lang' => 'en',
                    ],
                ],
            ],
            '_embedded' => [
                $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [
                    [
                        '_links' => [
                            'self' => [
                                'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json',
                            ],
                            'type' => [
                                'href' => $this->baseUrl . '/rest/type/user/user',
                            ],
                        ],
                        'uuid' => [
                            [
                                'value' => $author->uuid(),
                            ],
                        ],
                    ],
                ],
                $this->baseUrl . '/rest/relation/node/camelids/uid' => [
                    [
                        '_links' => [
                            'self' => [
                                'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json',
                            ],
                            'type' => [
                                'href' => $this->baseUrl . '/rest/type/user/user',
                            ],
                        ],
                        'uuid' => [
                            [
                                'value' => $author->uuid(),
                            ],
                        ],
                        'lang' => 'en',
                    ],
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getNormalizedPostEntity() {
        return parent::getNormalizedPostEntity() + [
            '_links' => [
                'type' => [
                    'href' => $this->baseUrl . '/rest/type/node/camelids',
                ],
            ],
        ];
    }

}

Classes

Title Deprecated Summary
NodeHalJsonAnonTest @group hal

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