Extend PHPUnit variant jobs from .phpunit-base

Created on 7 September 2024, 7 months ago

Problem/Motivation

The five PHPUnit variant jobs all extend the PHPUnit "current" job, for example

phpunit (max PHP version):
  extends: phpunit

It is only the "current" PHPUnit job that extends the base

phpunit:
  extends: .phpunit-base

This, in effect, makes having a "base" redundant. Logically, the code in .phpunit-base could be moved into the phpunit 'current' job and everything would continue to work as now. I believe that the purpose of the -base was to allow easy customisations in the variant jobs, but that is not how it has worked out. It makes tailoring/customising the variant jobs more tedious than it should be, and also is less readable. For example, see the extra hassle in #3462681-13: Add W3C compliant JS testing .

We have the same design in the Nightwatch jobs, and these could be also come within the scope of the changes in this issue.

Proposed resolution

  • Extend all PHPUnit jobs from .phpunit-base
  • Make minor adjustments to the variant jobs. This will resault in cleaner, more readable job definitions
  • Likewise, extend all Nightwatch jobs from .nightwatch-base

Remaining tasks

  1. Determine how much disruption to existing customised 3rd-party jobs this would cause
  2. Maybe search the gitlab project codebase to find out how many modules pipelines would break
  3. Write some easy instructions on how to adjust any customisations

If the benefits outweigh the problems then we should make the changes, as it will be better in the long run.

User interface changes

API changes

Data model changes

📌 Task
Status

Active

Component

gitlab-ci

Created by

🇬🇧United Kingdom jonathan1055

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

Comments & Activities

  • Issue created by @jonathan1055
  • 🇪🇸Spain fjgarlin

    I can’t remember the issue where we talked about this, but we left it like this on purpose because it is very likely that maintainers would want any customizations made to “phpunit” to be in the other variants too.

    Think of groupings (like scheduler) or concurrent jobs (like api) or any other customization that you’d do to “phpunit”. If we change the design then those customizations would need to be done to the other variants too.

    The changes proposed here would be easy, the workarounds would also be easy, but the level of disruption in contrib could be pretty high, which is why we didn’t change it in the end I think.

    I’ll try to find the issue where we discussed it.

  • 🇬🇧United Kingdom jonathan1055

    I knew we had talked about it before! We both wanted it to be changed, but ultimately felt it would be safer to leave as is. But the instructions to fix a broken phpunit job should be very simple, they just make the customisations to .phpunit-base not phpunit if the change is wanted in every job. This works in Scheduler, where I add the parallel: values for test groups.

    I think it is worth not closing this issue yet, but to trying to evaluate the pros and cons of disruption. Some of the benefits are big, for example, not having to do the work-around

    phpunit (next major):
      extends: !reference [.phpunit-base]
    

    when you don't want to affect every job.

  • 🇪🇸Spain fjgarlin

    Yeah, I'm happy to keep this open and even experiment with the possible changes and workarounds.

    The question is still the same as the other issue really, whether to carry over customizations from "phpunit" to the other variants or not, as that's the way that a lot of people expect to behave.

    We know that the same could easily be done with ".phpunit-base", but this would add a level of complexity and knowledge of the templates that maintainers might not have or need. And if they have the internal knowledge, then they should also be able to design easy workarounds.

    From a code-design perspective, I'd love to do this (that's the reason why I opened the other issue indeed), but yeah, from a "nearly 2000 integrations and adding a disruptive change" point of view, I have my reservations.

    Projects with the word phpunit in their .gitlab-ci.yml file: https://git.drupalcode.org/search?group_id=2&repository_ref=main&scope=b...

  • 🇪🇸Spain fjgarlin

    If we do this, we can consider it in a possible "2.x" scenario and that way we won't need to worry too much about existing integrations.

Production build 0.71.5 2024