View source
<?php
namespace Drupal\system\Tests\System;
use Drupal\simpletest\WebTestBase;
class ErrorHandlerTest extends WebTestBase {
public static $modules = array(
'error_test',
);
function testErrorHandler() {
$config = $this
->config('system.logging');
$error_notice = array(
'%type' => 'Notice',
'@message' => 'Undefined variable: bananas',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->generateWarnings()',
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$error_warning = array(
'%type' => 'Warning',
'@message' => 'Division by zero',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->generateWarnings()',
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$error_user_notice = array(
'%type' => 'User warning',
'@message' => 'Drupal & awesome',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->generateWarnings()',
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$fatal_error = array(
'%type' => 'Recoverable fatal error',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->Drupal\\error_test\\Controller\\{closure}()',
'@message' => 'Argument 1 passed to Drupal\\error_test\\Controller\\ErrorTestController::Drupal\\error_test\\Controller\\{closure}() must be of the type array, string given, called in ' . \Drupal::root() . '/core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php on line 66 and defined',
);
if (version_compare(PHP_VERSION, '7.0.0-dev') >= 0) {
$fatal_error['%type'] = 'TypeError';
$fatal_error['@message'] = 'Argument 1 passed to Drupal\\error_test\\Controller\\ErrorTestController::Drupal\\error_test\\Controller\\{closure}() must be of the type array, string given, called in ' . \Drupal::root() . '/core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php on line 66';
}
$this
->config('system.logging')
->set('error_level', ERROR_REPORTING_DISPLAY_VERBOSE)
->save();
$this
->drupalGet('error-test/generate-warnings');
$this
->assertResponse(200, 'Received expected HTTP status code.');
$this
->assertErrorMessage($error_notice);
$this
->assertErrorMessage($error_warning);
$this
->assertErrorMessage($error_user_notice);
$this
->assertRaw('<pre class="backtrace">', 'Found pre element with backtrace class.');
$this
->assertRaw('&');
$this
->assertNoRaw('&amp;');
$this
->config('system.logging')
->set('error_level', ERROR_REPORTING_DISPLAY_VERBOSE)
->save();
$this
->drupalGet('error-test/generate-fatals');
$this
->assertResponse(500, 'Received expected HTTP status code.');
$this
->assertErrorMessage($fatal_error);
$this
->assertRaw('<pre class="backtrace">', 'Found pre element with backtrace class.');
$this
->assertRaw(''');
$this
->assertNoRaw('&#039;');
foreach ($this->assertions as $key => $assertion) {
if (in_array($assertion['message_group'], [
'Recoverable fatal error',
'TypeError',
]) && strpos($assertion['message'], 'Argument 1 passed to Drupal\\error_test\\Controller\\ErrorTestController::Drupal\\error_test\\Controller\\{closure}() must be of the type array, string given, called in') !== FALSE) {
unset($this->assertions[$key]);
$this
->deleteAssert($assertion['message_id']);
}
}
$this->results['#exception']--;
$config
->set('error_level', ERROR_REPORTING_DISPLAY_ALL)
->save();
$this
->drupalGet('error-test/generate-warnings');
$this
->assertResponse(200, 'Received expected HTTP status code.');
$this
->assertErrorMessage($error_notice);
$this
->assertErrorMessage($error_warning);
$this
->assertErrorMessage($error_user_notice);
$this
->assertNoRaw('<pre class="backtrace">', 'Did not find pre element with backtrace class.');
$this
->assertErrorLogged($fatal_error['@message']);
$config
->set('error_level', ERROR_REPORTING_DISPLAY_SOME)
->save();
$this
->drupalGet('error-test/generate-warnings');
$this
->assertResponse(200, 'Received expected HTTP status code.');
$this
->assertNoErrorMessage($error_notice);
$this
->assertErrorMessage($error_warning);
$this
->assertErrorMessage($error_user_notice);
$this
->assertNoRaw('<pre class="backtrace">', 'Did not find pre element with backtrace class.');
$config
->set('error_level', ERROR_REPORTING_HIDE)
->save();
$this
->drupalGet('error-test/generate-warnings');
$this
->assertResponse(200, 'Received expected HTTP status code.');
$this
->assertNoErrorMessage($error_notice);
$this
->assertNoErrorMessage($error_warning);
$this
->assertNoErrorMessage($error_user_notice);
$this
->assertNoMessages();
$this
->assertNoRaw('<pre class="backtrace">', 'Did not find pre element with backtrace class.');
}
function testExceptionHandler() {
$this
->assertNoErrorsLogged();
$error_exception = array(
'%type' => 'Exception',
'@message' => 'Drupal & awesome',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->triggerException()',
'%line' => 56,
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$error_pdo_exception = array(
'%type' => 'DatabaseExceptionWrapper',
'@message' => 'SELECT * FROM bananas_are_awesome',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->triggerPDOException()',
'%line' => 64,
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$error_renderer_exception = array(
'%type' => 'Exception',
'@message' => 'This is an exception that occurs during rendering',
'%function' => 'Drupal\\error_test\\Controller\\ErrorTestController->Drupal\\error_test\\Controller\\{closure}()',
'%line' => 82,
'%file' => drupal_get_path('module', 'error_test') . '/error_test.module',
);
$this
->drupalGet('error-test/trigger-exception');
$this
->assertTrue(strpos($this
->drupalGetHeader(':status'), '500 Service unavailable (with message)'), 'Received expected HTTP status line.');
$this
->assertErrorMessage($error_exception);
$this
->drupalGet('error-test/trigger-pdo-exception');
$this
->assertTrue(strpos($this
->drupalGetHeader(':status'), '500 Service unavailable (with message)'), 'Received expected HTTP status line.');
$this
->assertText($error_pdo_exception['%type'], format_string('Found %type in error page.', $error_pdo_exception));
$this
->assertText($error_pdo_exception['@message'], format_string('Found @message in error page.', $error_pdo_exception));
$error_details = format_string('in %function (line ', $error_pdo_exception);
$this
->assertRaw($error_details, format_string("Found '@message' in error page.", array(
'@message' => $error_details,
)));
$this
->drupalGet('error-test/trigger-renderer-exception');
$this
->assertTrue(strpos($this
->drupalGetHeader(':status'), '500 Service unavailable (with message)'), 'Received expected HTTP status line.');
$this
->assertErrorMessage($error_renderer_exception);
$this
->config('system.logging')
->set('error_level', ERROR_REPORTING_HIDE)
->save();
$this
->drupalGet('error-test/trigger-exception');
$this
->assertFalse($this
->drupalGetHeader('X-Drupal-Cache'));
$this
->assertIdentical(strpos($this
->drupalGetHeader('Cache-Control'), 'public'), FALSE, 'Received expected HTTP status line.');
$this
->assertTrue(strpos($this
->drupalGetHeader(':status'), '500 Service unavailable (with message)'), 'Received expected HTTP status line.');
$this
->assertNoErrorMessage($error_exception);
unlink(\Drupal::root() . '/' . $this->siteDirectory . '/error.log');
}
function assertErrorMessage(array $error) {
$message = t('%type: @message in %function (line ', $error);
$this
->assertRaw($message, format_string('Found error message: @message.', array(
'@message' => $message,
)));
}
function assertNoErrorMessage(array $error) {
$message = t('%type: @message in %function (line ', $error);
$this
->assertNoRaw($message, format_string('Did not find error message: @message.', array(
'@message' => $message,
)));
}
protected function assertNoMessages() {
return $this
->assertFalse($this
->xpath('//div[contains(@class, "messages")]'), 'Ensures that also no messages div exists, which proves that no messages were generated by the error handler, not even an empty one.');
}
}