You are here

public function UncaughtExceptionTest::testUncaughtExceptionCustomExceptionHandler in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php \Drupal\FunctionalTests\Bootstrap\UncaughtExceptionTest::testUncaughtExceptionCustomExceptionHandler()
  2. 10 core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php \Drupal\FunctionalTests\Bootstrap\UncaughtExceptionTest::testUncaughtExceptionCustomExceptionHandler()

Tests uncaught exception handling with custom exception handler.

File

core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php, line 115

Class

UncaughtExceptionTest
Tests kernel panic when things are really messed up.

Namespace

Drupal\FunctionalTests\Bootstrap

Code

public function testUncaughtExceptionCustomExceptionHandler() {
  $settings_filename = $this->siteDirectory . '/settings.php';
  chmod($settings_filename, 0777);
  $settings_php = file_get_contents($settings_filename);
  $settings_php .= "\n";
  $settings_php .= "set_exception_handler(function() {\n";
  $settings_php .= "  header('HTTP/1.1 418 I\\'m a teapot');\n";
  $settings_php .= "  print('Oh oh, flying teapots');\n";
  $settings_php .= "});\n";
  file_put_contents($settings_filename, $settings_php);
  \Drupal::state()
    ->set('error_service_test.break_bare_html_renderer', TRUE);
  $this
    ->drupalGet('');
  $this
    ->assertSession()
    ->statusCodeEquals(418);
  $this
    ->assertSession()
    ->pageTextNotContains('The website encountered an unexpected error. Please try again later.');
  $this
    ->assertSession()
    ->pageTextNotContains('Oh oh, bananas in the instruments');
  $this
    ->assertSession()
    ->pageTextContains('Oh oh, flying teapots');
}