You are here

UpdatePathWithBrokenRoutingTest.php in Zircon Profile 8.0

File

core/modules/system/src/Tests/Update/UpdatePathWithBrokenRoutingTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Update\UpdatePathWithBrokenRoutingTest.
 */
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);
  }

}

Classes

Namesort descending Description
UpdatePathWithBrokenRoutingTest Tests the update path with a broken router.