eb9ca848fa
Behat 3.x doesn't support chained steps and hence this is first step to get rid of chained steps in core.
543 lines
20 KiB
PHP
543 lines
20 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Behat hooks steps definitions.
|
|
*
|
|
* This methods are used by Behat CLI command.
|
|
*
|
|
* @package core
|
|
* @category test
|
|
* @copyright 2012 David Monllaó
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
|
|
|
|
require_once(__DIR__ . '/../../behat/behat_base.php');
|
|
|
|
use Behat\Testwork\Hook\Scope\BeforeSuiteScope,
|
|
Behat\Testwork\Hook\Scope\AfterSuiteScope,
|
|
Behat\Behat\Hook\Scope\BeforeFeatureScope,
|
|
Behat\Behat\Hook\Scope\AfterFeatureScope,
|
|
Behat\Behat\Hook\Scope\BeforeScenarioScope,
|
|
Behat\Behat\Hook\Scope\AfterScenarioScope,
|
|
Behat\Behat\Hook\Scope\BeforeStepScope,
|
|
Behat\Behat\Hook\Scope\AfterStepScope,
|
|
Behat\Mink\Exception\DriverException as DriverException,
|
|
WebDriver\Exception\NoSuchWindow as NoSuchWindow,
|
|
WebDriver\Exception\UnexpectedAlertOpen as UnexpectedAlertOpen,
|
|
WebDriver\Exception\UnknownError as UnknownError,
|
|
WebDriver\Exception\CurlExec as CurlExec,
|
|
WebDriver\Exception\NoAlertOpenError as NoAlertOpenError;
|
|
|
|
/**
|
|
* Hooks to the behat process.
|
|
*
|
|
* Behat accepts hooks after and before each
|
|
* suite, feature, scenario and step.
|
|
*
|
|
* They can not call other steps as part of their process
|
|
* like regular steps definitions does.
|
|
*
|
|
* Throws generic Exception because they are captured by Behat.
|
|
*
|
|
* @package core
|
|
* @category test
|
|
* @copyright 2012 David Monllaó
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class behat_hooks extends behat_base {
|
|
|
|
/**
|
|
* @var Last browser session start time.
|
|
*/
|
|
protected static $lastbrowsersessionstart = 0;
|
|
|
|
/**
|
|
* @var For actions that should only run once.
|
|
*/
|
|
protected static $initprocessesfinished = false;
|
|
|
|
/**
|
|
* Some exceptions can only be caught in a before or after step hook,
|
|
* they can not be thrown there as they will provoke a framework level
|
|
* failure, but we can store them here to fail the step in i_look_for_exceptions()
|
|
* which result will be parsed by the framework as the last step result.
|
|
*
|
|
* @var Null or the exception last step throw in the before or after hook.
|
|
*/
|
|
protected static $currentstepexception = null;
|
|
|
|
/**
|
|
* If we are saving any kind of dump on failure we should use the same parent dir during a run.
|
|
*
|
|
* @var The parent dir name
|
|
*/
|
|
protected static $faildumpdirname = false;
|
|
|
|
/**
|
|
* Keeps track of time taken by feature to execute.
|
|
*
|
|
* @var array list of feature timings
|
|
*/
|
|
protected static $timings = array();
|
|
|
|
/**
|
|
* Gives access to moodle codebase, ensures all is ready and sets up the test lock.
|
|
*
|
|
* Includes config.php to use moodle codebase with $CFG->behat_*
|
|
* instead of $CFG->prefix and $CFG->dataroot, called once per suite.
|
|
*
|
|
* @param SuiteEvent $event event before suite.
|
|
* @static
|
|
* @throws Exception
|
|
* @BeforeSuite
|
|
*/
|
|
public static function before_suite(BeforeSuiteScope $scope) {
|
|
global $CFG;
|
|
|
|
// Defined only when the behat CLI command is running, the moodle init setup process will
|
|
// read this value and switch to $CFG->behat_dataroot and $CFG->behat_prefix instead of
|
|
// the normal site.
|
|
define('BEHAT_TEST', 1);
|
|
|
|
define('CLI_SCRIPT', 1);
|
|
// With BEHAT_TEST we will be using $CFG->behat_* instead of $CFG->dataroot, $CFG->prefix and $CFG->wwwroot.
|
|
require_once(__DIR__ . '/../../../config.php');
|
|
|
|
// Now that we are MOODLE_INTERNAL.
|
|
require_once(__DIR__ . '/../../behat/classes/behat_command.php');
|
|
require_once(__DIR__ . '/../../behat/classes/behat_selectors.php');
|
|
require_once(__DIR__ . '/../../behat/classes/behat_context_helper.php');
|
|
require_once(__DIR__ . '/../../behat/classes/util.php');
|
|
require_once(__DIR__ . '/../../testing/classes/test_lock.php');
|
|
require_once(__DIR__ . '/../../testing/classes/nasty_strings.php');
|
|
|
|
// Avoids vendor/bin/behat to be executed directly without test environment enabled
|
|
// to prevent undesired db & dataroot modifications, this is also checked
|
|
// before each scenario (accidental user deletes) in the BeforeScenario hook.
|
|
|
|
if (!behat_util::is_test_mode_enabled()) {
|
|
throw new Exception('Behat only can run if test mode is enabled. More info in ' . behat_command::DOCS_URL . '#Running_tests');
|
|
}
|
|
|
|
// Reset all data, before checking for check_server_status.
|
|
// If not done, then it can return apache error, while running tests.
|
|
behat_util::reset_all_data();
|
|
|
|
// Check if server is running and using same version for cli and apache.
|
|
behat_util::check_server_status();
|
|
|
|
// Prevents using outdated data, upgrade script would start and tests would fail.
|
|
if (!behat_util::is_test_data_updated()) {
|
|
$commandpath = 'php admin/tool/behat/cli/init.php';
|
|
throw new Exception("Your behat test site is outdated, please run\n\n " .
|
|
$commandpath . "\n\nfrom your moodle dirroot to drop and install the behat test site again.");
|
|
}
|
|
// Avoid parallel tests execution, it continues when the previous lock is released.
|
|
test_lock::acquire('behat');
|
|
|
|
// Store the browser reset time if reset after N seconds is specified in config.php.
|
|
if (!empty($CFG->behat_restart_browser_after)) {
|
|
// Store the initial browser session opening.
|
|
self::$lastbrowsersessionstart = time();
|
|
}
|
|
|
|
if (!empty($CFG->behat_faildump_path) && !is_writable($CFG->behat_faildump_path)) {
|
|
throw new Exception('You set $CFG->behat_faildump_path to a non-writable directory');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gives access to moodle codebase, to keep track of feature start time.
|
|
*
|
|
* @param FeatureEvent $event event fired before feature.
|
|
* @BeforeFeature
|
|
*/
|
|
public static function before_feature(BeforeFeatureScope $event) {
|
|
if (!defined('BEHAT_FEATURE_TIMING_FILE')) {
|
|
return;
|
|
}
|
|
$file = $event->getFeature()->getFile();
|
|
self::$timings[$file] = microtime(true);
|
|
}
|
|
|
|
/**
|
|
* Gives access to moodle codebase, to keep track of feature end time.
|
|
*
|
|
* @param FeatureEvent $event event fired after feature.
|
|
* @AfterFeature
|
|
*/
|
|
public static function after_feature(AfterFeatureScope $event) {
|
|
if (!defined('BEHAT_FEATURE_TIMING_FILE')) {
|
|
return;
|
|
}
|
|
$file = $event->getFeature()->getFile();
|
|
self::$timings[$file] = microtime(true) - self::$timings[$file];
|
|
// Probably didn't actually run this, don't output it.
|
|
if (self::$timings[$file] < 1) {
|
|
unset(self::$timings[$file]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gives access to moodle codebase, to keep track of suite timings.
|
|
*
|
|
* @param SuiteEvent $event event fired after suite.
|
|
* @AfterSuite
|
|
*/
|
|
public static function after_suite(AfterSuiteScope $event) {
|
|
if (!defined('BEHAT_FEATURE_TIMING_FILE')) {
|
|
return;
|
|
}
|
|
$realroot = realpath(__DIR__.'/../../../').'/';
|
|
foreach (self::$timings as $k => $v) {
|
|
$new = str_replace($realroot, '', $k);
|
|
self::$timings[$new] = round($v, 1);
|
|
unset(self::$timings[$k]);
|
|
}
|
|
if ($existing = @json_decode(file_get_contents(BEHAT_FEATURE_TIMING_FILE), true)) {
|
|
self::$timings = array_merge($existing, self::$timings);
|
|
}
|
|
arsort(self::$timings);
|
|
@file_put_contents(BEHAT_FEATURE_TIMING_FILE, json_encode(self::$timings, JSON_PRETTY_PRINT));
|
|
}
|
|
|
|
/**
|
|
* Resets the test environment.
|
|
*
|
|
* @param OutlineExampleEvent|ScenarioEvent $event event fired before scenario.
|
|
* @throws coding_exception If here we are not using the test database it should be because of a coding error
|
|
* @BeforeScenario
|
|
*/
|
|
public function before_scenario(BeforeScenarioScope $scope) {
|
|
global $DB, $SESSION, $CFG;
|
|
|
|
// As many checks as we can.
|
|
if (!defined('BEHAT_TEST') ||
|
|
!defined('BEHAT_SITE_RUNNING') ||
|
|
php_sapi_name() != 'cli' ||
|
|
!behat_util::is_test_mode_enabled() ||
|
|
!behat_util::is_test_site()) {
|
|
throw new coding_exception('Behat only can modify the test database and the test dataroot!');
|
|
}
|
|
|
|
$moreinfo = 'More info in ' . behat_command::DOCS_URL . '#Running_tests';
|
|
$driverexceptionmsg = 'Selenium server is not running, you need to start it to run tests that involve Javascript. ' . $moreinfo;
|
|
try {
|
|
$session = $this->getSession();
|
|
} catch (CurlExec $e) {
|
|
// Exception thrown by WebDriver, so only @javascript tests will be caugth; in
|
|
// behat_util::check_server_status() we already checked that the server is running.
|
|
$this->stop_execution($driverexceptionmsg);
|
|
} catch (DriverException $e) {
|
|
$this->stop_execution($driverexceptionmsg);
|
|
} catch (UnknownError $e) {
|
|
// Generic 'I have no idea' Selenium error. Custom exception to provide more feedback about possible solutions.
|
|
$this->stop_execution($e->getMessage());
|
|
}
|
|
|
|
// We need the Mink session to do it and we do it only before the first scenario.
|
|
if (self::is_first_scenario()) {
|
|
behat_selectors::register_moodle_selectors($session);
|
|
behat_context_helper::set_session($scope->getEnvironment());
|
|
}
|
|
|
|
// Reset mink session between the scenarios.
|
|
$session->reset();
|
|
|
|
// Reset $SESSION.
|
|
\core\session\manager::init_empty_session();
|
|
|
|
behat_util::reset_all_data();
|
|
|
|
// Assign valid data to admin user (some generator-related code needs a valid user).
|
|
$user = $DB->get_record('user', array('username' => 'admin'));
|
|
\core\session\manager::set_user($user);
|
|
|
|
// Reset the browser if specified in config.php.
|
|
if (!empty($CFG->behat_restart_browser_after) && $this->running_javascript()) {
|
|
$now = time();
|
|
if (self::$lastbrowsersessionstart + $CFG->behat_restart_browser_after < $now) {
|
|
$session->restart();
|
|
self::$lastbrowsersessionstart = $now;
|
|
}
|
|
}
|
|
|
|
// Start always in the the homepage.
|
|
try {
|
|
// Let's be conservative as we never know when new upstream issues will affect us.
|
|
$session->visit($this->locate_path('/'));
|
|
} catch (UnknownError $e) {
|
|
$this->stop_execution($e->getMessage());
|
|
}
|
|
|
|
|
|
// Checking that the root path is a Moodle test site.
|
|
if (self::is_first_scenario()) {
|
|
$notestsiteexception = new Exception('The base URL (' . $CFG->wwwroot . ') is not a behat test site, ' .
|
|
'ensure you started the built-in web server in the correct directory or your web server is correctly started and set up');
|
|
$this->find("xpath", "//head/child::title[normalize-space(.)='" . behat_util::BEHATSITENAME . "']", $notestsiteexception);
|
|
|
|
self::$initprocessesfinished = true;
|
|
}
|
|
// Run all test with medium (1024x768) screen size, to avoid responsive problems.
|
|
$this->resize_window('medium');
|
|
}
|
|
|
|
/**
|
|
* Wait for JS to complete before beginning interacting with the DOM.
|
|
*
|
|
* Executed only when running against a real browser. We wrap it
|
|
* all in a try & catch to forward the exception to i_look_for_exceptions
|
|
* so the exception will be at scenario level, which causes a failure, by
|
|
* default would be at framework level, which will stop the execution of
|
|
* the run.
|
|
*
|
|
* @BeforeStep
|
|
*/
|
|
public function before_step_javascript(BeforeStepScope $scope) {
|
|
self::$currentstepexception = null;
|
|
|
|
// Only run if JS.
|
|
if ($this->running_javascript()) {
|
|
try {
|
|
$this->wait_for_pending_js();
|
|
} catch (Exception $e) {
|
|
self::$currentstepexception = $e;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Wait for JS to complete after finishing the step.
|
|
*
|
|
* With this we ensure that there are not AJAX calls
|
|
* still in progress.
|
|
*
|
|
* Executed only when running against a real browser. We wrap it
|
|
* all in a try & catch to forward the exception to i_look_for_exceptions
|
|
* so the exception will be at scenario level, which causes a failure, by
|
|
* default would be at framework level, which will stop the execution of
|
|
* the run.
|
|
*
|
|
* @AfterStep
|
|
*/
|
|
public function after_step_javascript(AfterStepScope $scope) {
|
|
global $CFG, $DB;
|
|
|
|
// Save the page content if the step failed.
|
|
if (!empty($CFG->behat_faildump_path) &&
|
|
$scope->getTestResult()->getResultCode() === Behat\Testwork\Tester\Result\TestResult::FAILED) {
|
|
$this->take_contentdump($scope);
|
|
}
|
|
|
|
// Abort any open transactions to prevent subsequent tests hanging.
|
|
// This does the same as abort_all_db_transactions(), but doesn't call error_log() as we don't
|
|
// want to see a message in the behat output.
|
|
if (($scope->getTestResult() instanceof \Behat\Behat\Tester\Result\ExecutedStepResult) &&
|
|
$scope->getTestResult()->hasException()) {
|
|
if ($DB && $DB->is_transaction_started()) {
|
|
$DB->force_transaction_rollback();
|
|
}
|
|
}
|
|
|
|
// Only run if JS.
|
|
if (!$this->running_javascript()) {
|
|
return;
|
|
}
|
|
|
|
// Save a screenshot if the step failed.
|
|
if (!empty($CFG->behat_faildump_path) &&
|
|
$scope->getTestResult()->getResultCode() === Behat\Testwork\Tester\Result\TestResult::FAILED) {
|
|
$this->take_screenshot($scope);
|
|
}
|
|
|
|
try {
|
|
$this->wait_for_pending_js();
|
|
self::$currentstepexception = null;
|
|
} catch (UnexpectedAlertOpen $e) {
|
|
self::$currentstepexception = $e;
|
|
|
|
// Accepting the alert so the framework can continue properly running
|
|
// the following scenarios. Some browsers already closes the alert, so
|
|
// wrapping in a try & catch.
|
|
try {
|
|
$this->getSession()->getDriver()->getWebDriverSession()->accept_alert();
|
|
} catch (Exception $e) {
|
|
// Catching the generic one as we never know how drivers reacts here.
|
|
}
|
|
} catch (Exception $e) {
|
|
self::$currentstepexception = $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Executed after scenario having switch window to restart session.
|
|
* This is needed to close all extra browser windows and starting
|
|
* one browser window.
|
|
*
|
|
* @param AfterScenarioScope $event event fired after scenario.
|
|
* @AfterScenario @_switch_window
|
|
*/
|
|
public function after_scenario_switchwindow(AfterScenarioScope $event) {
|
|
for ($count = 0; $count < self::EXTENDED_TIMEOUT; $count++) {
|
|
try {
|
|
$this->getSession()->restart();
|
|
break;
|
|
} catch (DriverException $e) {
|
|
// Wait for timeout and try again.
|
|
sleep(self::TIMEOUT);
|
|
}
|
|
}
|
|
// If session is not restarted above then it will try to start session before next scenario
|
|
// and if that fails then exception will be thrown.
|
|
}
|
|
|
|
/**
|
|
* Getter for self::$faildumpdirname
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function get_run_faildump_dir() {
|
|
return self::$faildumpdirname;
|
|
}
|
|
|
|
/**
|
|
* Take screenshot when a step fails.
|
|
*
|
|
* @throws Exception
|
|
* @param AfterStepScope $scope
|
|
*/
|
|
protected function take_screenshot(AfterStepScope $scope) {
|
|
// Goutte can't save screenshots.
|
|
if (!$this->running_javascript()) {
|
|
return false;
|
|
}
|
|
|
|
list ($dir, $filename) = $this->get_faildump_filename($scope, 'png');
|
|
$this->saveScreenshot($filename, $dir);
|
|
}
|
|
|
|
/**
|
|
* Take a dump of the page content when a step fails.
|
|
*
|
|
* @throws Exception
|
|
* @param AfterStepScope $scope
|
|
*/
|
|
protected function take_contentdump(AfterStepScope $scope) {
|
|
list ($dir, $filename) = $this->get_faildump_filename($scope, 'html');
|
|
|
|
$fh = fopen($dir . DIRECTORY_SEPARATOR . $filename, 'w');
|
|
fwrite($fh, $this->getSession()->getPage()->getContent());
|
|
fclose($fh);
|
|
}
|
|
|
|
/**
|
|
* Determine the full pathname to store a failure-related dump.
|
|
*
|
|
* This is used for content such as the DOM, and screenshots.
|
|
*
|
|
* @param AfterStepScope $scope
|
|
* @param String $filetype The file suffix to use. Limited to 4 chars.
|
|
*/
|
|
protected function get_faildump_filename(AfterStepScope $scope, $filetype) {
|
|
global $CFG;
|
|
|
|
// All the contentdumps should be in the same parent dir.
|
|
if (!$faildumpdir = self::get_run_faildump_dir()) {
|
|
$faildumpdir = self::$faildumpdirname = date('Ymd_His');
|
|
|
|
$dir = $CFG->behat_faildump_path . DIRECTORY_SEPARATOR . $faildumpdir;
|
|
|
|
if (!is_dir($dir) && !mkdir($dir, $CFG->directorypermissions, true)) {
|
|
// It shouldn't, we already checked that the directory is writable.
|
|
throw new Exception('No directories can be created inside $CFG->behat_faildump_path, check the directory permissions.');
|
|
}
|
|
} else {
|
|
// We will always need to know the full path.
|
|
$dir = $CFG->behat_faildump_path . DIRECTORY_SEPARATOR . $faildumpdir;
|
|
}
|
|
|
|
// The scenario title + the failed step text.
|
|
// We want a i-am-the-scenario-title_i-am-the-failed-step.$filetype format.
|
|
$filename = $scope->getFeature()->getTitle() . '_' . $scope->getStep()->getText();
|
|
$filename = preg_replace('/([^a-zA-Z0-9\_]+)/', '-', $filename);
|
|
|
|
// File name limited to 255 characters. Leaving 5 chars for line number and 4 chars for the file.
|
|
// extension as we allow .png for images and .html for DOM contents.
|
|
$filename = substr($filename, 0, 245) . '_' . $scope->getStep()->getLine() . '.' . $filetype;
|
|
|
|
return array($dir, $filename);
|
|
}
|
|
|
|
/**
|
|
* Internal step definition to find exceptions, debugging() messages and PHP debug messages.
|
|
*
|
|
* Part of behat_hooks class as is part of the testing framework, is auto-executed
|
|
* after each step so no features will splicitly use it.
|
|
*
|
|
* @Given /^I look for exceptions$/
|
|
* @throw Exception Unknown type, depending on what we caught in the hook or basic \Exception.
|
|
* @see Moodle\BehatExtension\Tester\MoodleStepTester
|
|
*/
|
|
public function i_look_for_exceptions() {
|
|
// If the step already failed in a hook throw the exception.
|
|
if (!is_null(self::$currentstepexception)) {
|
|
throw self::$currentstepexception;
|
|
}
|
|
|
|
$this->look_for_exceptions();
|
|
}
|
|
|
|
/**
|
|
* Converts HTML tags to line breaks to display the info in CLI
|
|
*
|
|
* @param string $html
|
|
* @return string
|
|
*/
|
|
protected function get_debug_text($html) {
|
|
|
|
// Replacing HTML tags for new lines and keeping only the text.
|
|
$notags = preg_replace('/<+\s*\/*\s*([A-Z][A-Z0-9]*)\b[^>]*\/*\s*>*/i', "\n", $html);
|
|
return preg_replace("/(\n)+/s", "\n", $notags);
|
|
}
|
|
|
|
/**
|
|
* Returns whether the first scenario of the suite is running
|
|
*
|
|
* @return bool
|
|
*/
|
|
protected static function is_first_scenario() {
|
|
return !(self::$initprocessesfinished);
|
|
}
|
|
|
|
/**
|
|
* Stops execution because of some exception.
|
|
*
|
|
* @param string $exception
|
|
* @return void
|
|
*/
|
|
protected function stop_execution($exception) {
|
|
$text = get_string('unknownexceptioninfo', 'tool_behat');
|
|
echo $text . PHP_EOL . $exception . PHP_EOL;
|
|
exit(1);
|
|
}
|
|
|
|
}
|
|
|