Problem/Motivation
PHPUnit 12.5.0 started throwing notices when mocks do not configure expectations, e.g.
* No expectations were configured for the mock object for \Drupal\comment\CommentManagerInterface. You should refactor your test code and use a test stub instead.
Also, the $this->any() expectation is deprecated - a change that will be released in version 12.5.5. This is because the any() expectation is equivalent to having no expectation. Instances of expects($this->any()) should be removed, either by deletion or conversion to a more specific number of expectations.
Steps to reproduce
- Require PHPUnit 12 with Composer.
- Fix compatibility issues with PHPUnit 12 by applying this patch.
- Run the Unit tests for a module with
--display-phpunit-notices. - Observe the PHPUnit notices that occur.
Proposed resolution
Fix notices in the user module.
Remaining tasks
Information on how to review these issues and the types of changes you're likely to find in them is included in the parent issue's comments.
User interface changes
Introduced terminology
API changes
Data model changes
Release notes snippet
Issue fork drupal-3569423
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
- 3569423-stub-conversion
changes, plain diff MR !14484
Comments
Comment #3
dcam commentedComment #4
dcam commentedComment #5
smustgrave commentedConfirmed all instances of any() were replaced/removed
Reviewed the 35 instances of createMock() to verify the ones that remain and they appear to be calling specific methods so appear valid.
Reviewed your comments, think we should open a follow up to rethink that test. Mind opening that real quick?
Comment #6
dcam commentedI opened the follow-up at #3570206: UserAuthTest password test audit.
Comment #7
smustgrave commentedThanks!
Comment #8
longwaveThanks for picking these up. This one is trickier to review and there are indeed some cases that are harder to call. I think it was right to open the followup and there's a couple more spots that could perhaps be stubs as we shouldn't be testing the functionality at all, but ultimately it doesn't really matter too much.
Committed and pushed ea54ea1f989 to main and fd135900c7d to 11.x. Thanks!