Drupal Test

End to End Testing

End-to-end testing is a Software testing methodology to test an application flow from start to end. The purpose of end to end testing is to simulate the real user scenario and validate the system under test and its components for integration and data integrity.

Create these tests by extending \AKlump\DrupalTest\EndToEndTestBase. They should be saved in your Client folders.

These tests are the slowest as they offer a full browser environment, so they facilitate the testing of forms, multi-page workflows, and Javascript interaction. If you just want to check for elements on a single page, use \AKlump\DrupalTest\ClientTestBase instead.

These tests use Mink and Selenium to have a fully controllable browser, but run against a real site in it's active state. These should be used when you wish to interact at the Browser level with a website in it's current state, just as you would as a human running manual tests.

These are not the same as Drupal 8's Browser Tests because: "Browser tests create a complete Drupal installation and a virtual web browser and then use the virtual web browser to walk the Drupal install through a series of tests, just like you would do if you were doing it by hand."

These tests DO NOT create a complete Drupal installation.

Installation

  1. You must have a running selenium server to use these tests.

Installing Selenium Standalone Server

This should be as simple as downloading a file, and starting a Java process on that file. Follow these steps:

  1. Download from this page; the link should be at the top. This needs to happen just once. Place it in a logical location on your system, maybe your home folder.
  2. Create a shortcut script ./bin/selenium.sh to launch your Selenium server with contents like this, adjusted for your situation.

    #!/usr/bin/env bash
    java -jar /Users/aklump/selenium/selenium-server-standalone-3.141.59.jar  -host 127.0.0.1 -port 4444
    
  3. Make that script executable chmod u+x ./bin/selenium.sh
  4. Start your server in a new terminal window:

    cd {path to this lib}
    ./bin/selenium.sh
    
  5. Verify it's running by visiting: http://127.0.0.1:4444/wd/hub/static/resource/hub.html

Organizing Tests

  1. Think of a single test class as one end-to-end scenario.
  2. Have lots of shorter test classes.
  3. Break each scenario (class) into small units, as test methods.
  4. Keep test methods small and named very discriptively.

Annotations

  1. Give the test class a summary such as User is able to login...
  2. If the test modifies the database in any way mark the class @destructive.
  3. Make test method names very descriptive so they can be parsed: testLoggedInUserCanAccessUserSettingsPage

    <?php

    namespace Drupal\Tests\gop;

    /**

    • User is able to login, change password, logout and login with new password.
    • @destructive */ class UserCanChangePasswordEndToEndTest extends EndToEndTestBase {

      public function testLoggedInUserCanAccessUserSettingsPage() { ...

#

Using Mink's WebAssert

  1. All of the methods of \Behat\Mink\WebAssert are available in your test methods through the use of ::assert(), e.g.

    public function testPageTextOnHomepage() {
      $this->loadPageByUrl('/');
    
      // This is a method from \Behat\Mink\WebAssert that has been made available by \AKlump\DrupalTest\EndToEndTestBase
      $this->assert()->pageTextContains('Welcome to My Website');
    }
    
  2. ::assert() returns you a wrapper around \Behat\Mink\WebAssert that handles assertion tallies and failure exceptions normally throw by \Behat\Mink\WebAssert in a way native to PhpUnit.

  3. There is some duplication with certain shorthand and common assertions, for example take these two examples of the same assertion. The first one has an opinion that all elements should be searched using a CSS selector, so there's less typing, however the second is more powerful, and in fact necessary if you want to assert using XPath.

    $this->assertElementExists('.t-trigger-account-dropdown');
    $this->assert()->elementExists('css', '.t-trigger-account-dropdown');