Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / hal / tests / src / Functional / EntityResource / Node / NodeHalJsonAnonTest.php
index e92a3d664349e58c01cb299ea43ae979b19711c8..e218a73a4201c5e01555351d3eb4f8d6fba14a30 100644 (file)
@@ -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',
           ],
         ],
       ],