Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
3634822c
Commit
3634822c
authored
9 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
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
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/system/src/Tests/System/UncaughtExceptionTest.php
+20
-33
20 additions, 33 deletions
...modules/system/src/Tests/System/UncaughtExceptionTest.php
with
20 additions
and
33 deletions
core/modules/system/src/Tests/System/UncaughtExceptionTest.php
+
20
−
33
View file @
3634822c
...
@@ -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
);
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment