Skip to content
Snippets Groups Projects
Commit 3634822c authored by catch's avatar catch
Browse files

Issue #2533946 by alexpott: UncaughtExceptionTest is a monkey in the control room

parent 9fab1ad5
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -87,7 +87,6 @@ public function testUncaughtException() { ...@@ -87,7 +87,6 @@ public function testUncaughtException() {
$this->assertResponse(500); $this->assertResponse(500);
$this->assertText('The website encountered an unexpected error. Please try again later.'); $this->assertText('The website encountered an unexpected error. Please try again later.');
$this->assertText($this->expectedExceptionMessage); $this->assertText($this->expectedExceptionMessage);
$this->assertExceptionFailure($this->expectedExceptionMessage, 'Ensure that monekys are found in the control room.');
} }
/** /**
...@@ -99,7 +98,6 @@ public function testMissingDependency() { ...@@ -99,7 +98,6 @@ public function testMissingDependency() {
$this->assertRaw('The website encountered an unexpected error.'); $this->assertRaw('The website encountered an unexpected error.');
$this->assertRaw($this->expectedExceptionMessage); $this->assertRaw($this->expectedExceptionMessage);
$this->assertExceptionFailure($this->expectedExceptionMessage, 'Ensure that the exception of a missing constructor argument was triggered.');
} }
/** /**
...@@ -125,7 +123,6 @@ public function testErrorContainer() { ...@@ -125,7 +123,6 @@ public function testErrorContainer() {
$this->drupalGet(''); $this->drupalGet('');
$this->assertRaw($this->expectedExceptionMessage); $this->assertRaw($this->expectedExceptionMessage);
$this->assertExceptionFailure($this->expectedExceptionMessage, 'Ensure that the error of the container was triggered.');
} }
/** /**
...@@ -153,49 +150,39 @@ public function testExceptionContainer() { ...@@ -153,49 +150,39 @@ public function testExceptionContainer() {
$this->assertRaw('The website encountered an unexpected error'); $this->assertRaw('The website encountered an unexpected error');
$this->assertRaw($this->expectedExceptionMessage); $this->assertRaw($this->expectedExceptionMessage);
$this->assertExceptionFailure($this->expectedExceptionMessage, 'Ensure that the exception of the container was triggered.');
} }
/** /**
* Tests the case when the database connection is gone. * Tests the case when the database connection is gone.
*/ */
public function testLostDatabaseConnection() { public function testLostDatabaseConnection() {
$incorrect_username = $this->randomMachineName(16);
switch ($this->container->get('database')->driver()) {
case 'pgsql':
case 'mysql':
$this->expectedExceptionMessage = $incorrect_username;
break;
default:
// We can not carry out this test.
$this->pass('Unable to run \Drupal\system\Tests\System\UncaughtExceptionTest::testLostDatabaseConnection for this database type.');
return;
}
// We simulate a broken database connection by rewrite settings.php to no // We simulate a broken database connection by rewrite settings.php to no
// longer have the proper data. // longer have the proper data.
$settings['databases']['default']['default']['password'] = (object) array( $settings['databases']['default']['default']['username'] = (object) array(
'value' => $this->randomMachineName(), 'value' => $incorrect_username,
'required' => TRUE,
);
$settings['databases']['default']['default']['passowrd'] = (object) array(
'value' => $this->randomMachineName(16),
'required' => TRUE, 'required' => TRUE,
); );
$this->writeSettings($settings); $this->writeSettings($settings);
$this->expectedExceptionMessage = '[1045] Access denied for user';
$this->drupalGet(''); $this->drupalGet('');
$this->assertRaw('PDOException');
$this->assertRaw($this->expectedExceptionMessage);
$this->assertExceptionFailure($this->expectedExceptionMessage, 'Ensure that the access denied DB connection exception is thrown.');
}
/**
* Asserts that an exception is present in the assertions and removes it.
*
* This ensures that expected failures are passes rather than failures.
*
* @param string $exception_message
* The exception message to search for.
*
* @return bool
* TRUE if the exception message was found.
*/
protected function assertExceptionFailure($exception_message, $message) {
$found_exception = FALSE;
foreach ($this->assertions as &$assertion) {
if (strpos($assertion['message'], $exception_message) !== FALSE) {
$found_exception = TRUE;
$this->deleteAssert($assertion['message_id']);
unset($assertion);
}
}
return $this->assertTrue($found_exception, $message);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment