Make tests pass on PHP 8.4

Created on 7 January 2025, 3 months ago

Make tests pass on PHP 8.4.

📌 Task
Status

Active

Version

6.3

Component

Code

Created by

🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

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

Merge Requests

Comments & Activities

  • Issue created by @Liam Morland
  • There's a lot of errors like this:

    Deprecated: Drupal\webform\Plugin\Field\FieldType\WebformEntityReferenceItem::getSettableOptions(): Implicitly marking parameter $account as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/web/modules/contrib/webform/src/Plugin/Field/FieldType/WebformEntityReferenceItem.php on line 114

  • 🇮🇳India koustav_mondal Kolkata

    Working on it.

  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    @solideogloria at least some of messages in #2 have been fixed in 6.3.x. There are still messages like that in tests which come from other modules.

  • 🇮🇳India koustav_mondal Kolkata

    @liam morland I have made the changes. Please Review it.

  • Pipeline finished with Failed
    3 months ago
    Total: 642s
    #397498
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    Thanks for the patch.

    The change to src/WebformRequest.php is not correct. A param with a default value cannot be before a param without a default.

  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦
  • It seems like it was a misunderstanding of what needs to change. While EntityInterface $source_entity = NULL is deprecated due to not having the nullable type, there is nothing wrong with ?EntityInterface $source_entity without a default value, so it should be left as-is.

  • 🇮🇳India koustav_mondal Kolkata

    @liam morland I have made the change according to comment #7 .

  • Pipeline finished with Failed
    3 months ago
    Total: 579s
    #398397
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    In #7, I was referring to this change:

    -  public function getRouteName(EntityInterface $webform_entity, ?EntityInterface $source_entity, $route_name) {
    +  public function getRouteName(EntityInterface $webform_entity, ?EntityInterface $source_entity = NULL, $route_name) {
    

    A default value has been added to $source_entity. This cannot be correct because the param after it does not have default value. This change should not be made.

    Commit 41308f5 is also incorrect for the same reason.

    If you look at these changes in the merge request, there is a yellow triangle. Click on that to see an error message about that line of code.

  • Pipeline finished with Canceled
    2 months ago
    Total: 447s
    #401577
  • Pipeline finished with Canceled
    2 months ago
    Total: 163s
    #401583
  • 🇮🇳India koustav_mondal Kolkata

    @liam morland Now the Yellow triangle is not coming, please have look if any other changes is required.

  • Pipeline finished with Failed
    2 months ago
    Total: 465s
    #401592
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    Thanks for the patch.

    I see a yellow triangle here, lines 244 and 253:

    https://git.drupalcode.org/project/webform/-/merge_requests/585/diffs#49...

    There cannot be a default value for any param that is followed by a param that does not have a default. Example:

    public function getUrl(EntityInterface $webform_entity, ?EntityInterface $source_entity = NULL, $route_name, array $route_options = []) {
    

    $source_entity has a default, but $route_name does not. To fix, remove the default from $source_entity.

  • Pipeline finished with Failed
    2 months ago
    Total: 403s
    #402360
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    Please rebase onto the latest 6.3.x; that will fix some errors. The comments added in src/WebformRequest.php should not have an empty line between the @param statements. Unless this method doesn't match what is in WebformRequestInterface, it can use {@inheritdoc}.

    I note that the tests still don't pass on PHP 8.4. This may have to wait on other modules updating.

  • All that was needed to rebase is to type /rebase in a comment on this page

    https://git.drupalcode.org/project/webform/-/merge_requests/585

  • Pipeline finished with Failed
    2 months ago
    Total: 470s
    #402816
  • 🇳🇴Norway steinmb

    A feel it is little unclear, should the MR be moved back to "needs review"?

  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    It will be ready for review once tests are passing.

  • Pipeline finished with Canceled
    about 1 month ago
    Total: 403s
    #440295
  • Pipeline finished with Success
    about 1 month ago
    Total: 686s
    #440298
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 91s
    #440307
  • Pipeline finished with Success
    about 1 month ago
    Total: 1418s
    #440308
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    There are failures that come from other modules. It may be that the only remaining changes needed are fixes in other modules.

Production build 0.71.5 2024