- Issue created by @andypost
- 🇨🇭Switzerland berdir Switzerland
ToStringTrait might be tricky, because exceptions and __toString() methods don't like each other, unless that has changed somehow?
- 🇫🇷France andypost
And the suggestion in RFC is to use proper exceptions
Using exceptions instead solves all the above problems, and allows catching the error outside the problematic code path.
If the desired outcome is to terminate the program with no possible way to recover one should use the exit() function with a string argument.
Therefore we propose to deprecate passing E_USER_ERROR to trigger_error()
- 🇨🇭Switzerland berdir Switzerland
Looks like exception handling in __toString() methods got fixed in PHP 7.4: https://3v4l.org/5ZJ2i. That means we can drop the try/catch and even consider to deprecate that trait? It's only used in two classes in core.
- Status changed to Needs review
8 months ago 3:36pm 5 August 2024 - 🇫🇷France andypost
Yes, just 2 implementations to add, and deprecated, now needs to clean-up
_drupal_error_handler_real()
, maybe better to split out fixes for the remaining usage for scope - 🇫🇷France andypost
@Berdir thank you! it works and the only test needs to be adjusted
Drupal\Tests\Core\StringTranslation\TranslatableMarkupTest::testToString Failed asserting that null matches expected 256. core/tests/Drupal/Tests/Core/StringTranslation/TranslatableMarkupTest.php:77
- 🇫🇷France andypost
There's just 4 usages in contrib, so needs to improve message and decide with test, polish CR
- 🇫🇷France andypost
Probably deprecation of
ToStringTrait
better to move to separate issue or it needs second change record - 🇫🇷France andypost
Added to summary why most of time it needs to decide if code needs exception or logging instead of throwing user error as everyone thinks it should be fatal but there's
exit()
or exception re-thrownDrupal does not stop execution for user-level errors, allowing the application to log and continue
- 🇬🇧United Kingdom catch
I think for 10.4/11.1 we should change all these to E_USER_WARNING and then open follow-ups for each case to consider adding:
1. an assert() so it fails hard during development
2. An exception from 12.x onwards if that's appropriate - 🇦🇺Australia kim.pepper 🏄♂️🇦🇺Sydney, Australia
kim.pepper → made their first commit to this issue’s fork.
- Merge request !9924[#3465827] Switch E_USER_ERROR to E_USER_WARNING → (Closed) created by kim.pepper
- First commit to issue fork.
- 🇫🇷France andypost
MR!9924 is green now, so it needs follow-up to deprecate
ToStringTrait
- Status changed to Needs work
4 months ago 12:05pm 21 November 2024 - 🇬🇧United Kingdom catch
I think we should go with https://git.drupalcode.org/project/drupal/-/merge_requests/9924 and then open a follow-up to decide what to do with those individual cases, possibly based off the other MR.
Could the other MR be closed here and the issue summary updated?
- 🇫🇷France andypost
Official migration docs said different
Calling trigger_error() with error_level being equal to E_USER_ERROR is now deprecated.
Such usages should be replaced by either throwing an exception, or calling exit(), whichever is more appropriate.
Moreover exit() (
die()
too) now a userland functionRef https://www.php.net/manual/en/migration84.incompatible.php#migration84.i...
- 🇬🇧United Kingdom catch
The migration docs might say different but we are often dealing with extreme edge cases where we have a choice between failing hard for end users vs informing site owners, this is why I would go with E_USER_WARNING here then a followup for switching to exceptions or whatever else we want to do.
- 🇫🇷France andypost
Filed follow-up 🌱 [META] Replace E_USER_WARNING with Exception Handling for Edge Cases in Error Reporting Active
Updated summary and CR
- Merge request !10379Switch E_USER_ERROR to E_USER_WARNING 10.5 #3465827 → (Closed) created by andypost
- 🇫🇷France andypost
10.5 failed one unit test https://git.drupalcode.org/issue/drupal-3427903/-/jobs/3523954
---- Drupal\Tests\Core\Database\ConditionTest ---- Status Group Filename Line Function -------------------------------------------------------------------------------- Fail Other phpunit-77.xml 0 Drupal\Tests\Core\Database\Conditio PHPUnit Test failed to complete; Error: PHPUnit 9.6.21 by Sebastian Bergmann and contributors. Testing Drupal\Tests\Core\Database\ConditionTest ....................... 23 / 23 (100%) Time: 00:00.120, Memory: 8.00 MB OK (23 tests, 33 assertions) Remaining self deprecation notices (4) 1x: Invalid characters in query operator: IS NOT NULL) ;INSERT INTO {test} (name) VALUES ('test12345678'); -- 1x in ConditionTest::testCompileWithSqlInjectionForOperator from Drupal\Tests\Core\Database 1x: Invalid characters in query operator: IS NOT NULL) UNION ALL SELECT name, pass FROM {users_field_data} -- 1x in ConditionTest::testCompileWithSqlInjectionForOperator from Drupal\Tests\Core\Database 1x: Invalid characters in query operator: IS NOT NULL) UNION ALL SELECT name FROM {TEST_UPPERCASE} -- 1x in ConditionTest::testCompileWithSqlInjectionForOperator from Drupal\Tests\Core\Database 1x: Invalid characters in query operator: = 1 UNION ALL SELECT password FROM user WHERE uid = 1x in ConditionTest::testCompileWithSqlInjectionForOperator from Drupal\Tests\Core\Database
- 🇫🇷France andypost
Passed as addition https://git.drupalcode.org/project/drupal/-/merge_requests/10379/diffs?c...
- 🇫🇷France andypost
both 10.4/10.5 passed https://git.drupalcode.org/issue/drupal-3427903/-/pipelines/353325
- 🇳🇿New Zealand quietone
The issue summary proposed resolution is incorrect in that the changes for -
ToStringTrait
andBigPipe
are being done in a separate issue, 🌱 [META] Replace E_USER_WARNING with Exception Handling for Edge Cases in Error Reporting Active . And I see that all the needed followups have been made.I reviewed the MR, and with the scope change it is much more straightforward so setting to RTBC. I applied the patch locally and all instances were changed on 10.5.x and 11.x
I read the change record and it is good to go. The versions numbers will likely need an update but that can be done on commit or I will catch it when I review the change records.
- 🇬🇧United Kingdom catch
Committed/pushed/cherry-picked to 11.x/11.1.x and 10.5.x/10.4.x, respectively. Let's continue in the follow-ups. Thanks everyone.
Automatically closed - issue fixed for 2 weeks with no activity.