MailEntity failing on Functional tests with deprecated dynamic property

Created on 7 March 2025, 29 days ago

Problem/Motivation

When running PHP functional tests on a custom module, I end up with the following Exception error:

There was 1 error:

1) Drupal\Tests\custom_module\Functional\CustomModuleTest::testCustomTest
Exception: Deprecated function: Creation of dynamic property Drupal\simplenews\Mail\MailEntity::$uid is deprecated
Drupal\simplenews\Mail\MailEntity->setContext()() (Line: 235)

Steps to reproduce

In my test, along with Ultimate Cron interface, I connect to the admin cron page, and click in a given cron job Run link:

    $this->drupalGet('admin/config/system/cron/jobs');
    $assert_session->statusCodeEquals(200);
    $this->clickLink('Run');
    $assert_session->pageTextContains('Cron job Sends newsletters (Simplenews) was successfully run.');

Proposed resolution

It appears MailEntity uses uid as a dynamic property, which was deprecated as of PHP 8.2+.

We need to add the AllowDynamicProperties to the MailEntity to fix the Deprecation warning (Exception error in the PHPUnit context).

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇧🇷Brazil lnunesbr 🇧🇷 São Paulo, BR

Live updates comments and jobs are added and updated live.
  • PHP 8.2

    The issue particularly affects sites running on PHP version 8.2.0 or later.

Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024