Various random fails due to mis-triggered Mink deprecation error

Created on 19 March 2019, about 6 years ago
Updated 27 March 2025, 8 days ago

Problem/Motivation

Follow #3030902: Random fail in EntityReferenceAdminTest there are more random test failure.

vendor/behat/mink/src/Selector/NamedSelector.php: triggers error 'Passing an escaped locator to the named selector is deprecated as of 1.7 and will be removed in 2.0. Pass the raw value instead.' when the following condition is TRUE.

private function escapeLocator($locator)
{
    // If the locator looks like an escaped one, don't escape it again for BC reasons.
    if (
        preg_match('/^\'[^\']*+\'$/', $locator)
        || (false !== strpos($locator, '\'') && preg_match('/^"[^"]*+"$/', $locator))
        || ((8 < $length = strlen($locator)) && 'concat(' === substr($locator, 0, 7) && ')' === $locator[$length - 1])
    ) {
        @trigger_error(
            'Passing an escaped locator to the named selector is deprecated as of 1.7 and will be removed in 2.0.'
            .' Pass the raw value instead.',
            E_USER_DEPRECATED
        );

        return $locator;
    }

    return $this->xpathEscaper->escapeLiteral($locator);
}

When we use randomString() to generate labels, it may fail tests. See #3030902: Random fail in EntityReferenceAdminTest .

Proposed resolution

Use the randomMachineName() method instead of the randomString() methods where necessary.

Remaining tasks

TBD

🐛 Bug report
Status

Needs work

Version

11.0 🔥

Component

phpunit

Created by

🇵🇱Poland Krzysztof Domański Poland

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • First commit to issue fork.
  • Merge request !11641Resolve #3041318 "Various random fails" → (Open) created by mstrelan
  • 🇦🇺Australia mstrelan

    Converted #18 to an MR and hiding patches. The test in ManageFieldsFunctionalTest had moved ManageFieldsLifecycleTest. Also addressed probable issues in EntityQueryAccessTest as reported by @xjm in #23. I didn't find anything to update in WorkspaceIntegrationTest so not much I can do there without a failed test output. Not sure about repeating tests to prove this one, I guess we could try it for one or more of the test classes.

  • Pipeline finished with Success
    8 days ago
    Total: 702s
    #458449
  • 🇬🇧United Kingdom catch

    MR looks good.

Production build 0.71.5 2024