Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Update / UpdatePathWithBrokenRoutingTest.php
diff --git a/web/core/modules/system/src/Tests/Update/UpdatePathWithBrokenRoutingTest.php b/web/core/modules/system/src/Tests/Update/UpdatePathWithBrokenRoutingTest.php
deleted file mode 100644 (file)
index e710a4e..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Update;
-
-/**
- * Tests the update path with a broken router.
- *
- * @group Update
- */
-class UpdatePathWithBrokenRoutingTest extends UpdatePathTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setDatabaseDumpFiles() {
-    $this->databaseDumpFiles = [
-      __DIR__ . '/../../../tests/fixtures/update/drupal-8.bare.standard.php.gz',
-      __DIR__ . '/../../../tests/fixtures/update/drupal-8.broken_routing.php',
-    ];
-  }
-
-  /**
-   * Tests running update.php with some form of broken routing.
-   */
-  public function testWithBrokenRouting() {
-    // Simulate a broken router, and make sure the front page is
-    // inaccessible.
-    \Drupal::state()->set('update_script_test_broken_inbound', TRUE);
-    \Drupal::service('cache_tags.invalidator')->invalidateTags(['route_match', 'rendered']);
-    $this->drupalGet('<front>');
-    $this->assertResponse(500);
-
-    // The exceptions are expected. Do not interpret them as a test failure.
-    // Not using File API; a potential error must trigger a PHP warning.
-    unlink(\Drupal::root() . '/' . $this->siteDirectory . '/error.log');
-    foreach ($this->assertions as $key => $assertion) {
-      if (strpos($assertion['message'], 'core/modules/system/tests/modules/update_script_test/src/PathProcessor/BrokenInboundPathProcessor.php') !== FALSE) {
-        unset($this->assertions[$key]);
-        $this->deleteAssert($assertion['message_id']);
-      }
-    }
-
-    $this->runUpdates();
-
-    // Remove the simulation of the broken router, and make sure we can get to
-    // the front page again.
-    \Drupal::state()->set('update_script_test_broken_inbound', FALSE);
-    $this->drupalGet('<front>');
-    $this->assertResponse(200);
-  }
-
-}