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.
This should be as simple as downloading a file, and starting a Java process on that file. Follow these steps:
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
chmod u+x ./bin/selenium.shStart your server in a new terminal window:
cd {path to this lib}
./bin/selenium.sh
Verify it's running by visiting: http://127.0.0.1:4444/wd/hub/static/resource/hub.html
@destructive.Make test method names very descriptive so they can be parsed: testLoggedInUserCanAccessUserSettingsPage
<?php
namespace Drupal\Tests\gop;
/**
@destructive */ class UserCanChangePasswordEndToEndTest extends EndToEndTestBase {
public function testLoggedInUserCanAccessUserSettingsPage() { ...
#
WebAssertAll 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');
}
::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.
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');