Add basic documentation for Cypress

Created on 31 October 2024, 5 months ago

Problem/Motivation

Cypress was added for end-to-end testing in Add End to End (e2e) testing Active . It would be nice to have some basic documentation that demonstrates how to run the tests, where to find the available Drupal specific additions (/e2e.js) and where to place .cy.js files in your project so that they are executed.

Proposed resolution

Content to add to the Wiki

Here's the proposed content to add to the Wiki.

## Running Cypress tests

To run Drupal CMS's [Cypress](https://www.cypress.io/) based E2E tests:

```sh
ddev npm test
```

To run the Cypress tests using the Cypress UI:

```sh
ddev exec npx cypress open
```

Requires an X11 server running on the host machine such as XQuartz on macOS.

### Writing Cypress tests

Cypress spec files should be placed in *$DDEV_ROOT/{project}/tests/e2e/{spec}.cy.js* files. There are some helper methods for common tasks in *e2e.js*.
Feature request
Status

Active

Component

General

Created by

🇺🇸United States eojthebrave Minneapolis, MN

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

Merge Requests

Comments & Activities

  • Issue created by @eojthebrave
  • Pipeline finished with Success
    5 months ago
    Total: 737s
    #325962
  • 🇺🇸United States eojthebrave Minneapolis, MN

    I've added some draft text for the Wiki to the issue summary. And created an MR with updated docs for the code in the e2e.js file. I think this is a good start. Happy to add anything else that people might find helpful.

  • Pipeline finished with Success
    5 months ago
    Total: 492s
    #325979
  • 🇺🇸United States thejimbirch Cape Cod, Massachusetts

    I made a couple of small nits on the MR. For the Wiki, I think more information should be provided around:

    Requires an X11 server running on the host machine such as XQuartz on macOS.

    It may be common knowledge, but I didn't know what an X11 server was, nor did I know what XQuartz was before trying to install the ddev addon. There are some more steps that are also needed I believe. There is an ongoing discussion on the setup here: https://github.com/tyler36/ddev-cypress/pull/38

  • 🇺🇸United States phenaproxima Massachusetts

    A few infrastructure changes were made that changed the test running method; see https://git.drupalcode.org/project/drupal_cms/-/wikis/Contributing-to-Dr....

    Do we need to update the proposed documentation to reflect this?

  • Pipeline finished with Failed
    5 months ago
    Total: 642s
    #329427
  • Pipeline finished with Failed
    5 months ago
    Total: 680s
    #329428
  • 🇺🇸United States eojthebrave Minneapolis, MN

    I addressed @thejimbirch's comments in the MR, thanks for the feedback. And added the additional test running examples that @phenaproxima brought up to the proposed text for the Wiki.

    Regarding the information about x11 I admittedly have not set this up personally. I think ideally we link to other existing documentation. I'll have a look at the issue you linked and see what I can figure out.

    Personally, I set up my local Drupal CMS instance with x11vnc and noVNC on the web container so that I could watch/run the cypress UI via a browser (more like a browser in a browser ... it's a bit of inception, but it works). Do to this I changed the .ddev/config.yml file:

    name: drupal-cms-dev
    type: drupal
    docroot: web
    php_version: "8.3"
    webserver_type: nginx-fpm
    xdebug_enabled: false
    additional_hostnames:
      # @see nginx_full/trial.conf
      - drupal-cms-trial
    additional_fqdns: []
    database:
        type: mariadb
        version: "10.11"
    use_dns_when_possible: true
    composer_version: "2"
    corepack_enable: false
    hooks:
      post-start:
        # Generate `composer.json` by merging the project template with our internal
        # dev requirements.
        - exec: 'jq -s ".[0] * .[1]" project_template/composer.json dev.composer.json > composer.json'
        # Add the components as path repositories.
        - exec: "setup-repositories"
        # Install all dependencies.
        - composer: 'install'
        # Copy PHPUnit configuration into the web root.
        - exec: 'cp -f phpunit.xml $DDEV_DOCROOT'
        # Install JavaScript dependencies if needed. The `--foreground-scripts`
        # option is needed to ensure the Cypress binary is actually downloaded;
        # see the warning about Node.js Snap for Linux at
        # https://docs.cypress.io/guides/getting-started/installing-cypress.
        - exec: 'test -d node_modules || npm clean-install --foreground-scripts'
        # Makes sure noVNC is available at https://drupal-cms-dev.ddev.site:6081/.
        - exec: 'cp /usr/share/novnc/vnc.html /usr/share/novnc/index.html'
    web_environment:
      # For faster performance, don't audit dependencies automatically.
      - COMPOSER_NO_AUDIT=1
      # To display its UI, Cypress needs to be able to talk to an X11 server
      # running on the host machine.
      # - DISPLAY=host.docker.internal:0
      # Download Cypress to a directory that won't be blown away every time the
      # project is restarted.
      - CYPRESS_CACHE_FOLDER=/var/www/html/.cache/cypress
      # Use the DDEV-provided database to run PHPUnit tests.
      - SIMPLETEST_DB=$DDEV_DATABASE_FAMILY://db:db@db/db
      - SIMPLETEST_BASE_URL=$DDEV_PRIMARY_URL
    webimage_extra_packages:
      # Add Cypress' system dependencies.
      # See https://docs.cypress.io/guides/getting-started/installing-cypress#UbuntuDebian
      - libgtk2.0-0
      - libgtk-3-0
      - libgbm-dev
      - libnotify-dev
      - libnss3
      - libxss1
      - libasound2
      - libxtst6
      - xauth
      - xvfb
      # Additional browsers for Cypress to test against.
      - chromium
      - firefox-esr
      # Packages for setting of noVNC to watch Cypress tests.
      - novnc
      - x11vnc
    web_extra_exposed_ports:
     - name: novnc
       container_port: 6080
       http_port: 6080
       https_port: 6081
    web_extra_daemons:
      - name: Xvfb
        command: Xvfb :0 -screen 0 1920x1280x16
        directory: /var/www/html
      - name: x11vnc
        command: x11vnc -display :0 -forever -nopw
        directory: /var/www/html
      # Make noVNC available at https://drupal-cms-dev.ddev.site:6081/vnc.html
      - name: novnc
        command: /usr/share/novnc/utils/novnc_proxy --web /usr/share/novnc --vnc localhost:5900
        directory: /usr/share/novnc

    And now I can run ddev launch :6081/vnc.html and it launches to watch the results of ddev exec npx cypress open. Which might be a bit more portable. Though I can't say if one approach is better than the other for any reason.

  • First commit to issue fork.
  • Pipeline finished with Failed
    4 months ago
    Total: 1101s
    #356177
  • Pipeline finished with Success
    4 months ago
    Total: 1197s
    #356178
  • 🇮🇳India shalini_jha

    Rebased and resolved the conflicts & pipeline is also green. But two additional commands were added, so need to check the documentation.

  • 🇺🇸United States phenaproxima Massachusetts

    A few minor things but this looks fantastic. Thanks for doing this!

  • Pipeline finished with Failed
    4 months ago
    Total: 82s
    #356785
  • Pipeline finished with Failed
    4 months ago
    Total: 149s
    #356784
  • 🇺🇸United States eojthebrave Minneapolis, MN

    I've addressed all the feedback in the review so this is now ready for another pass.

  • 🇺🇸United States phenaproxima Massachusetts

    Perfect.

  • Pipeline finished with Skipped
    4 months ago
    #356806
  • 🇺🇸United States phenaproxima Massachusetts

    Document the things. All the things. Merged into 0.x, thanks!

  • Pipeline finished with Failed
    4 months ago
    Total: 526s
    #356799
  • Pipeline finished with Failed
    4 months ago
    Total: 534s
    #356800
  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024