X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fhal%2Ftests%2Fsrc%2FFunctional%2FEntityResource%2FNode%2FNodeHalJsonAnonTest.php;fp=web%2Fcore%2Fmodules%2Fhal%2Ftests%2Fsrc%2FFunctional%2FEntityResource%2FNode%2FNodeHalJsonAnonTest.php;h=e218a73a4201c5e01555351d3eb4f8d6fba14a30;hp=e92a3d664349e58c01cb299ea43ae979b19711c8;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/hal/tests/src/Functional/EntityResource/Node/NodeHalJsonAnonTest.php b/web/core/modules/hal/tests/src/Functional/EntityResource/Node/NodeHalJsonAnonTest.php index e92a3d664..e218a73a4 100644 --- a/web/core/modules/hal/tests/src/Functional/EntityResource/Node/NodeHalJsonAnonTest.php +++ b/web/core/modules/hal/tests/src/Functional/EntityResource/Node/NodeHalJsonAnonTest.php @@ -34,11 +34,12 @@ class NodeHalJsonAnonTest extends NodeResourceTestBase { * {@inheritdoc} */ protected static $patchProtectedFieldNames = [ + 'revision_timestamp', 'created', 'changed', 'promote', 'sticky', - 'revision_timestamp', + 'path', 'revision_uid', ]; @@ -51,28 +52,28 @@ class NodeHalJsonAnonTest extends NodeResourceTestBase { $normalization = $this->applyHalFieldNormalization($default_normalization); $author = User::load($this->entity->getOwnerId()); - return $normalization + [ + return $normalization + [ '_links' => [ 'self' => [ - 'href' => $this->baseUrl . '/node/1?_format=hal_json', + 'href' => $this->baseUrl . '/llama?_format=hal_json', ], 'type' => [ 'href' => $this->baseUrl . '/rest/type/node/camelids', ], - $this->baseUrl . '/rest/relation/node/camelids/uid' => [ + $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ [ 'href' => $this->baseUrl . '/user/' . $author->id() . '?_format=hal_json', - 'lang' => 'en', ], ], - $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ + $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/uid' => [ + $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ [ '_links' => [ 'self' => [ @@ -85,10 +86,9 @@ class NodeHalJsonAnonTest extends NodeResourceTestBase { 'uuid' => [ ['value' => $author->uuid()] ], - 'lang' => 'en', ], ], - $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [ + $this->baseUrl . '/rest/relation/node/camelids/uid' => [ [ '_links' => [ 'self' => [ @@ -101,6 +101,7 @@ class NodeHalJsonAnonTest extends NodeResourceTestBase { 'uuid' => [ ['value' => $author->uuid()] ], + 'lang' => 'en', ], ], ],