Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / content_moderation / tests / src / Kernel / ViewsDataIntegrationTest.php
index d4c4aa37cdecd401841203a4aea1b376688d178b..125d68fbd2b0cfc6da877815137cc0773d181ae0 100644 (file)
@@ -2,7 +2,6 @@
 
 namespace Drupal\Tests\content_moderation\Kernel;
 
-use Drupal\entity_test\Entity\EntityTestMulRevPub;
 use Drupal\node\Entity\Node;
 use Drupal\node\Entity\NodeType;
 use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
@@ -51,54 +50,6 @@ class ViewsDataIntegrationTest extends ViewsKernelTestBase {
     $workflow->save();
   }
 
-  /**
-   * Tests content_moderation_views_data().
-   *
-   * @see content_moderation_views_data()
-   */
-  public function testViewsData() {
-    $node = Node::create([
-      'type' => 'page',
-      'title' => 'Test title first revision',
-    ]);
-    $node->moderation_state->value = 'published';
-    $node->save();
-
-    // Create a totally unrelated entity to ensure the extra join information
-    // joins by the correct entity type.
-    $unrelated_entity = EntityTestMulRevPub::create([
-      'id' => $node->id(),
-    ]);
-    $unrelated_entity->save();
-
-    $this->assertEquals($unrelated_entity->id(), $node->id());
-
-    $revision = clone $node;
-    $revision->setNewRevision(TRUE);
-    $revision->isDefaultRevision(FALSE);
-    $revision->title->value = 'Test title second revision';
-    $revision->moderation_state->value = 'draft';
-    $revision->save();
-
-    $view = Views::getView('test_content_moderation_latest_revision');
-    $view->execute();
-
-    // Ensure that the content_revision_tracker contains the right latest
-    // revision ID.
-    // Also ensure that the relationship back to the revision table contains the
-    // right latest revision.
-    $expected_result = [
-      [
-        'nid' => $node->id(),
-        'revision_id' => $revision->getRevisionId(),
-        'title' => $revision->label(),
-        'moderation_state_1' => 'draft',
-        'moderation_state' => 'published',
-      ],
-    ];
-    $this->assertIdenticalResultset($view, $expected_result, ['nid' => 'nid', 'content_revision_tracker_revision_id' => 'revision_id', 'moderation_state' => 'moderation_state', 'moderation_state_1' => 'moderation_state_1']);
-  }
-
   /**
    * Tests the join from the revision data table to the moderation state table.
    */