- Issue created by @praveen saini
- last update
almost 2 years ago 27 pass - 🇺🇸United States tr Cascadia
The RequestStack parameter was added to the PhpMail constructor in Drupal 10.1.x (and ONLY in Drupal 10.1.x) by the commit in 🐛 Uncaught RfcComplianceException when email From name contains a comma Fixed .
Setting
$this->request
like you do in this patch will not work with core versions < 10.1.x because core PhpMail does not define therequest
property and because PHP 8 no longer allows dynamic properties.The patch needs to work with all supported versions of Drupal core.
The automated tests of Mime Mail don't fail in Drupal 10.1. What are the conditions that cause this error message? We need a new test case that fails without your patch to prevent this from breaking in the future.
Making this a "task" because it is something we need to do to keep up with the development pre-release of Drupal 10.1.
- Status changed to Needs review
almost 2 years ago 8:13pm 25 June 2023 - last update
almost 2 years ago 27 pass, 2 fail - 🇺🇸United States smokris Athens, Ohio, USA
What are the conditions that cause this error message?
I'm able to reproduce the above warning and error by following these steps:
- Install Drupal 10.1.0
- Install and enable mimemail 1.0-alpha5 + mailsystem 4.4.0
- On /admin/config/system/mailsystem, set the default sender to Mime Mail
- As an anonymous user, go to /user/password and request a password-reset email — ❌
Error: Call to a member function has() on null
In 🐛 Uncaught RfcComplianceException when email From name contains a comma Fixed , Drupal Core added the
PhpMail::$request
instance variable which gets initialized byPhpMail::__construct()
. Since theMimeMail
class derives fromPhpMail
butMimeMail::__construct()
doesn't callparent::__construct();
, thePhpMail::$request
instance variable remains uninitialized, resulting in the above warning and error.The automated tests of Mime Mail don't fail in Drupal 10.1.
I think that's because there isn't a test case for sending using the
MimeMail
class. I've attached a test that should fail. - last update
almost 2 years ago 27 pass, 2 fail - 🇺🇸United States smokris Athens, Ohio, USA
And here's a patch that addresses the problem by invoking the parent constructor.
- last update
almost 2 years ago 27 pass, 2 fail - last update
almost 2 years ago 27 pass, 2 fail The last submitted patch, 4: mimemail-3357841-failing-test.patch, failed testing. View results →
The last submitted patch, 5: mimemail-3357841-5.patch, failed testing. View results →
- Status changed to Needs work
almost 2 years ago 8:44pm 25 June 2023 - 🇺🇸United States smokris Athens, Ohio, USA
https://www.drupal.org/pift-ci-job/2701615 → correctly failed with the
Attempt to read property "server" on null
error.However, https://www.drupal.org/pift-ci-job/2701616 → failed with
PHPUnit\Framework\Exception: sh: 1: /usr/sbin/sendmail: not found
. Unfortunately, thePhpMail::mail()
method doesn't seem to be testable, since it invokesPhpMail::doMail()
which invokes PHP's built-inmail()
function, without any way to override it with a mock for testing. - 🇺🇸United States tr Cascadia
@Praveen Saini: Are you working on this? If not, please unassign yourself from this issue.
@smokris: The unit test added in 🐛 Uncaught RfcComplianceException when email From name contains a comma Fixed could be subclassed and modified to test MimeMail.php instead of PhpMail.php - that would also help when it comes to tracking changes in the PhpMail parent class, because a new subclassed test would in theory track changes in the parent class. Basically, all the test needs to do at this time is to ensure the MimeMail plugin can be instantiated without error - a test like this will provide early warning in the future if the parent class constructor gets changed again.
- Issue was unassigned.
- Status changed to Needs review
almost 2 years ago 11:50pm 26 June 2023 - last update
almost 2 years ago 28 pass - 🇺🇸United States smokris Athens, Ohio, USA
@TR, thanks for the tip. Here's a new patch that includes a test that's a subclass of
PhpMailTest
, and which usesPhpMailTest
's technique of creating a mock of the class being tested but with thedoMail()
method replaced. - last update
almost 2 years ago 28 pass - last update
almost 2 years ago 28 pass - 🇺🇸United States tr Cascadia
OK, let's see if the test in #11 will fail when run with the current version of Mime Mail. What I would like to see is a test that will catch the problem if the parent constructor gets changed, so the test alone should fail here, and the test + patch of MimeMail.php should succeed like in #11.
- last update
almost 2 years ago 27 pass, 2 fail - Status changed to RTBC
over 1 year ago 2:30pm 5 July 2023 - 🇺🇸United States smokris Athens, Ohio, USA
Since the test-only CI job failed on PHP 8.1 (as expected), and the test-and-fix CI job passed, I'll tentatively set this to RTBC.
- Status changed to Fixed
over 1 year ago 7:11pm 2 August 2023 Automatically closed - issue fixed for 2 weeks with no activity.