1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* A trait containing functionality used by the behat base context, and form fields.
|
|
|
19 |
*
|
|
|
20 |
* @package core
|
|
|
21 |
* @category test
|
|
|
22 |
* @copyright 2020 Andrew Nicols <andrew@nicols.co.uk>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
use Behat\Mink\Element\NodeElement;
|
|
|
27 |
use Behat\Mink\Element\Element;
|
|
|
28 |
use Behat\Mink\Exception\DriverException;
|
|
|
29 |
use Behat\Mink\Exception\ExpectationException;
|
|
|
30 |
use Behat\Mink\Exception\ElementNotFoundException;
|
|
|
31 |
use Behat\Mink\Exception\NoSuchWindowException;
|
|
|
32 |
use Behat\Mink\Session;
|
|
|
33 |
use Behat\Testwork\Hook\Scope\HookScope;
|
|
|
34 |
use Facebook\WebDriver\Exception\ScriptTimeoutException;
|
|
|
35 |
use Facebook\WebDriver\WebDriverBy;
|
|
|
36 |
use Facebook\WebDriver\WebDriverElement;
|
|
|
37 |
|
|
|
38 |
// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
|
|
|
39 |
|
|
|
40 |
require_once(__DIR__ . '/component_named_replacement.php');
|
|
|
41 |
require_once(__DIR__ . '/component_named_selector.php');
|
|
|
42 |
|
|
|
43 |
// Alias the Facebook\WebDriver\WebDriverKeys class to behat_keys for better b/c with the older Instaclick driver.
|
|
|
44 |
class_alias('Facebook\WebDriver\WebDriverKeys', 'behat_keys');
|
|
|
45 |
|
|
|
46 |
/**
|
|
|
47 |
* A trait containing functionality used by the behat base context, and form fields.
|
|
|
48 |
*
|
|
|
49 |
* This trait should be used by the behat_base context, and behat form fields, and it should be paired with the
|
|
|
50 |
* behat_session_interface interface.
|
|
|
51 |
*
|
|
|
52 |
* It should not be necessary to use this trait, and the behat_session_interface interface in normal circumstances.
|
|
|
53 |
*
|
|
|
54 |
* @package core
|
|
|
55 |
* @category test
|
|
|
56 |
* @copyright 2020 Andrew Nicols <andrew@nicols.co.uk>
|
|
|
57 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
58 |
*/
|
|
|
59 |
trait behat_session_trait {
|
|
|
60 |
|
|
|
61 |
/**
|
|
|
62 |
* Locates url, based on provided path.
|
|
|
63 |
* Override to provide custom routing mechanism.
|
|
|
64 |
*
|
|
|
65 |
* @see Behat\MinkExtension\Context\MinkContext
|
|
|
66 |
* @param string $path
|
|
|
67 |
* @return string
|
|
|
68 |
*/
|
|
|
69 |
protected function locate_path($path) {
|
|
|
70 |
$starturl = rtrim($this->getMinkParameter('base_url'), '/') . '/';
|
|
|
71 |
return 0 !== strpos($path, 'http') ? $starturl . ltrim($path, '/') : $path;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
/**
|
|
|
75 |
* Returns the first matching element.
|
|
|
76 |
*
|
|
|
77 |
* @link http://mink.behat.org/#traverse-the-page-selectors
|
|
|
78 |
* @param string $selector The selector type (css, xpath, named...)
|
|
|
79 |
* @param mixed $locator It depends on the $selector, can be the xpath, a name, a css locator...
|
|
|
80 |
* @param Exception $exception Otherwise we throw exception with generic info
|
|
|
81 |
* @param NodeElement $node Spins around certain DOM node instead of the whole page
|
|
|
82 |
* @param int $timeout Forces a specific time out (in seconds).
|
|
|
83 |
* @return NodeElement
|
|
|
84 |
*/
|
|
|
85 |
protected function find($selector, $locator, $exception = false, $node = false, $timeout = false) {
|
|
|
86 |
if ($selector === 'NodeElement' && is_a($locator, NodeElement::class)) {
|
|
|
87 |
// Support a NodeElement being passed in for use in step chaining.
|
|
|
88 |
return $locator;
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
// Returns the first match.
|
|
|
92 |
$items = $this->find_all($selector, $locator, $exception, $node, $timeout);
|
|
|
93 |
return count($items) ? reset($items) : null;
|
|
|
94 |
}
|
|
|
95 |
|
|
|
96 |
/**
|
|
|
97 |
* Returns all matching elements.
|
|
|
98 |
*
|
|
|
99 |
* Adapter to Behat\Mink\Element\Element::findAll() using the spin() method.
|
|
|
100 |
*
|
|
|
101 |
* @link http://mink.behat.org/#traverse-the-page-selectors
|
|
|
102 |
* @param string $selector The selector type (css, xpath, named...)
|
|
|
103 |
* @param mixed $locator It depends on the $selector, can be the xpath, a name, a css locator...
|
|
|
104 |
* @param Exception $exception Otherwise we throw expcetion with generic info
|
|
|
105 |
* @param NodeElement $container Restrict the search to just children of the specified container
|
|
|
106 |
* @param int $timeout Forces a specific time out (in seconds). If 0 is provided the default timeout will be applied.
|
|
|
107 |
* @return array NodeElements list
|
|
|
108 |
*/
|
|
|
109 |
protected function find_all($selector, $locator, $exception = false, $container = false, $timeout = false) {
|
|
|
110 |
// Throw exception, so dev knows it is not supported.
|
|
|
111 |
if ($selector === 'named') {
|
|
|
112 |
$exception = 'Using the "named" selector is deprecated as of 3.1. '
|
|
|
113 |
.' Use the "named_partial" or use the "named_exact" selector instead.';
|
|
|
114 |
throw new ExpectationException($exception, $this->getSession());
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
// Generic info.
|
|
|
118 |
if (!$exception) {
|
|
|
119 |
// With named selectors we can be more specific.
|
|
|
120 |
if (($selector == 'named_exact') || ($selector == 'named_partial')) {
|
|
|
121 |
$exceptiontype = $locator[0];
|
|
|
122 |
$exceptionlocator = $locator[1];
|
|
|
123 |
|
|
|
124 |
// If we are in a @javascript session all contents would be displayed as HTML characters.
|
|
|
125 |
if ($this->running_javascript()) {
|
|
|
126 |
$locator[1] = html_entity_decode($locator[1], ENT_NOQUOTES);
|
|
|
127 |
}
|
|
|
128 |
|
|
|
129 |
} else {
|
|
|
130 |
$exceptiontype = $selector;
|
|
|
131 |
$exceptionlocator = $locator;
|
|
|
132 |
}
|
|
|
133 |
|
|
|
134 |
$exception = new ElementNotFoundException($this->getSession(), $exceptiontype, null, $exceptionlocator);
|
|
|
135 |
}
|
|
|
136 |
|
|
|
137 |
// How much we will be waiting for the element to appear.
|
|
|
138 |
if ($timeout === false) {
|
|
|
139 |
$timeout = self::get_timeout();
|
|
|
140 |
$microsleep = false;
|
|
|
141 |
} else {
|
|
|
142 |
// Spinning each 0.1 seconds if the timeout was forced as we understand
|
|
|
143 |
// that is a special case and is good to refine the performance as much
|
|
|
144 |
// as possible.
|
|
|
145 |
$microsleep = true;
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
// Normalise the values in order to perform the search.
|
|
|
149 |
[
|
|
|
150 |
'selector' => $selector,
|
|
|
151 |
'locator' => $locator,
|
|
|
152 |
'container' => $container,
|
|
|
153 |
] = $this->normalise_selector($selector, $locator, $container ?: $this->getSession()->getPage());
|
|
|
154 |
|
|
|
155 |
// Waits for the node to appear if it exists, otherwise will timeout and throw the provided exception.
|
|
|
156 |
return $this->spin(
|
|
|
157 |
function() use ($selector, $locator, $container) {
|
|
|
158 |
return $container->findAll($selector, $locator);
|
|
|
159 |
}, [], $timeout, $exception, $microsleep
|
|
|
160 |
);
|
|
|
161 |
}
|
|
|
162 |
|
|
|
163 |
/**
|
|
|
164 |
* Normalise the locator and selector.
|
|
|
165 |
*
|
|
|
166 |
* @param string $selector The type of thing to search
|
|
|
167 |
* @param mixed $locator The locator value. Can be an array, but is more likely a string.
|
|
|
168 |
* @param Element $container An optional container to search within
|
|
|
169 |
* @return array The selector, locator, and container to search within
|
|
|
170 |
*/
|
|
|
171 |
public function normalise_selector(string $selector, $locator, Element $container): array {
|
|
|
172 |
// Check for specific transformations for this selector type.
|
|
|
173 |
$transformfunction = "transform_find_for_{$selector}";
|
|
|
174 |
if (method_exists('behat_selectors', $transformfunction)) {
|
|
|
175 |
// A selector-specific transformation exists.
|
|
|
176 |
// Perform initial transformation of the selector within the current container.
|
|
|
177 |
[
|
|
|
178 |
'selector' => $selector,
|
|
|
179 |
'locator' => $locator,
|
|
|
180 |
'container' => $container,
|
|
|
181 |
] = behat_selectors::{$transformfunction}($this, $locator, $container);
|
|
|
182 |
}
|
|
|
183 |
|
|
|
184 |
// Normalise the css and xpath selector types.
|
|
|
185 |
if ('css_element' === $selector) {
|
|
|
186 |
$selector = 'css';
|
|
|
187 |
} else if ('xpath_element' === $selector) {
|
|
|
188 |
$selector = 'xpath';
|
|
|
189 |
}
|
|
|
190 |
|
|
|
191 |
// Convert to a named selector where the selector type is not a known selector.
|
|
|
192 |
$converttonamed = !$this->getSession()->getSelectorsHandler()->isSelectorRegistered($selector);
|
|
|
193 |
$converttonamed = $converttonamed && 'xpath' !== $selector;
|
|
|
194 |
if ($converttonamed) {
|
|
|
195 |
if (behat_partial_named_selector::is_deprecated_selector($selector)) {
|
|
|
196 |
if ($replacement = behat_partial_named_selector::get_deprecated_replacement($selector)) {
|
|
|
197 |
error_log("The '{$selector}' selector has been replaced with {$replacement}");
|
|
|
198 |
$selector = $replacement;
|
|
|
199 |
}
|
|
|
200 |
} else if (behat_exact_named_selector::is_deprecated_selector($selector)) {
|
|
|
201 |
if ($replacement = behat_exact_named_selector::get_deprecated_replacement($selector)) {
|
|
|
202 |
error_log("The '{$selector}' selector has been replaced with {$replacement}");
|
|
|
203 |
$selector = $replacement;
|
|
|
204 |
}
|
|
|
205 |
}
|
|
|
206 |
|
|
|
207 |
$allowedpartialselectors = behat_partial_named_selector::get_allowed_selectors();
|
|
|
208 |
$allowedexactselectors = behat_exact_named_selector::get_allowed_selectors();
|
|
|
209 |
if (isset($allowedpartialselectors[$selector])) {
|
|
|
210 |
$locator = behat_selectors::normalise_named_selector($allowedpartialselectors[$selector], $locator);
|
|
|
211 |
$selector = 'named_partial';
|
|
|
212 |
} else if (isset($allowedexactselectors[$selector])) {
|
|
|
213 |
$locator = behat_selectors::normalise_named_selector($allowedexactselectors[$selector], $locator);
|
|
|
214 |
$selector = 'named_exact';
|
|
|
215 |
} else {
|
|
|
216 |
throw new ExpectationException("The '{$selector}' selector type is not registered.", $this->getSession()->getDriver());
|
|
|
217 |
}
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
return [
|
|
|
221 |
'selector' => $selector,
|
|
|
222 |
'locator' => $locator,
|
|
|
223 |
'container' => $container,
|
|
|
224 |
];
|
|
|
225 |
}
|
|
|
226 |
|
|
|
227 |
/**
|
|
|
228 |
* Get a description of the selector and locator to use in an exception message.
|
|
|
229 |
*
|
|
|
230 |
* @param string $selector The type of locator
|
|
|
231 |
* @param mixed $locator The locator text
|
|
|
232 |
* @return string
|
|
|
233 |
*/
|
|
|
234 |
protected function get_selector_description(string $selector, $locator): string {
|
|
|
235 |
if ($selector === 'NodeElement') {
|
|
|
236 |
$description = $locator->getText();
|
|
|
237 |
return "'{$description}' {$selector}";
|
|
|
238 |
}
|
|
|
239 |
|
|
|
240 |
return "'{$locator}' {$selector}";
|
|
|
241 |
}
|
|
|
242 |
|
|
|
243 |
/**
|
|
|
244 |
* Send key presses straight to the currently active element.
|
|
|
245 |
*
|
|
|
246 |
* The `$keys` array contains a list of key values to send to the session as defined in the WebDriver and JsonWire
|
|
|
247 |
* specifications:
|
|
|
248 |
* - JsonWire: https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidkeys
|
|
|
249 |
* - W3C WebDriver: https://www.w3.org/TR/webdriver/#keyboard-actions
|
|
|
250 |
*
|
|
|
251 |
* This may be a combination of typable characters, modifier keys, and other supported keypoints.
|
|
|
252 |
*
|
|
|
253 |
* The NULL_KEY should be used to release modifier keys. If the NULL_KEY is not used then modifier keys will remain
|
|
|
254 |
* in the pressed state.
|
|
|
255 |
*
|
|
|
256 |
* Example usage:
|
|
|
257 |
*
|
|
|
258 |
* behat_base::type_keys($this->getSession(), [behat_keys::SHIFT, behat_keys::TAB, behat_keys::NULL_KEY]);
|
|
|
259 |
* behat_base::type_keys($this->getSession(), [behat_keys::ENTER, behat_keys::NULL_KEY]);
|
|
|
260 |
* behat_base::type_keys($this->getSession(), [behat_keys::ESCAPE, behat_keys::NULL_KEY]);
|
|
|
261 |
*
|
|
|
262 |
* It can also be used to send text input, for example:
|
|
|
263 |
*
|
|
|
264 |
* behat_base::type_keys(
|
|
|
265 |
* $this->getSession(),
|
|
|
266 |
* ['D', 'o', ' ', 'y', 'o', 'u', ' ', 'p', 'l', 'a' 'y', ' ', 'G', 'o', '?', behat_base::NULL_KEY]
|
|
|
267 |
* );
|
|
|
268 |
*
|
|
|
269 |
*
|
|
|
270 |
* Please note: This function does not use the element/sendKeys variants but sends keys straight to the browser.
|
|
|
271 |
*
|
|
|
272 |
* @param Session $session
|
|
|
273 |
* @param string[] $keys
|
|
|
274 |
*/
|
|
|
275 |
public static function type_keys(Session $session, array $keys): void {
|
|
|
276 |
$session->getDriver()->getWebDriver()->getKeyboard()->sendKeys($keys);
|
|
|
277 |
}
|
|
|
278 |
|
|
|
279 |
/**
|
|
|
280 |
* Finds DOM nodes in the page using named selectors.
|
|
|
281 |
*
|
|
|
282 |
* The point of using this method instead of Mink ones is the spin
|
|
|
283 |
* method of behat_base::find() that looks for the element until it
|
|
|
284 |
* is available or it timeouts, this avoids the false failures received
|
|
|
285 |
* when selenium tries to execute commands on elements that are not
|
|
|
286 |
* ready to be used.
|
|
|
287 |
*
|
|
|
288 |
* All steps that requires elements to be available before interact with
|
|
|
289 |
* them should use one of the find* methods.
|
|
|
290 |
*
|
|
|
291 |
* The methods calls requires a {'find_' . $elementtype}($locator)
|
|
|
292 |
* format, like find_link($locator), find_select($locator),
|
|
|
293 |
* find_button($locator)...
|
|
|
294 |
*
|
|
|
295 |
* @link http://mink.behat.org/#named-selectors
|
|
|
296 |
* @throws coding_exception
|
|
|
297 |
* @param string $name The name of the called method
|
|
|
298 |
* @param mixed $arguments
|
|
|
299 |
* @return NodeElement
|
|
|
300 |
*/
|
|
|
301 |
public function __call($name, $arguments) {
|
|
|
302 |
if (substr($name, 0, 5) === 'find_') {
|
|
|
303 |
return call_user_func_array([$this, 'find'], array_merge(
|
|
|
304 |
[substr($name, 5)],
|
|
|
305 |
$arguments
|
|
|
306 |
));
|
|
|
307 |
}
|
|
|
308 |
|
|
|
309 |
throw new coding_exception("The '{$name}' method does not exist");
|
|
|
310 |
}
|
|
|
311 |
|
|
|
312 |
/**
|
|
|
313 |
* Escapes the double quote character.
|
|
|
314 |
*
|
|
|
315 |
* Double quote is the argument delimiter, it can be escaped
|
|
|
316 |
* with a backslash, but we auto-remove this backslashes
|
|
|
317 |
* before the step execution, this method is useful when using
|
|
|
318 |
* arguments as arguments for other steps.
|
|
|
319 |
*
|
|
|
320 |
* @param string $string
|
|
|
321 |
* @return string
|
|
|
322 |
*/
|
|
|
323 |
public function escape($string) {
|
|
|
324 |
return str_replace('"', '\"', $string);
|
|
|
325 |
}
|
|
|
326 |
|
|
|
327 |
/**
|
|
|
328 |
* Executes the passed closure until returns true or time outs.
|
|
|
329 |
*
|
|
|
330 |
* In most cases the document.readyState === 'complete' will be enough, but sometimes JS
|
|
|
331 |
* requires more time to be completely loaded or an element to be visible or whatever is required to
|
|
|
332 |
* perform some action on an element; this method receives a closure which should contain the
|
|
|
333 |
* required statements to ensure the step definition actions and assertions have all their needs
|
|
|
334 |
* satisfied and executes it until they are satisfied or it timeouts. Redirects the return of the
|
|
|
335 |
* closure to the caller.
|
|
|
336 |
*
|
|
|
337 |
* The closures requirements to work well with this spin method are:
|
|
|
338 |
* - Must return false, null or '' if something goes wrong
|
|
|
339 |
* - Must return something != false if finishes as expected, this will be the (mixed) value
|
|
|
340 |
* returned by spin()
|
|
|
341 |
*
|
|
|
342 |
* The arguments of the closure are mixed, use $args depending on your needs.
|
|
|
343 |
*
|
|
|
344 |
* You can provide an exception to give more accurate feedback to tests writers, otherwise the
|
|
|
345 |
* closure exception will be used, but you must provide an exception if the closure does not throw
|
|
|
346 |
* an exception.
|
|
|
347 |
*
|
|
|
348 |
* @throws Exception If it timeouts without receiving something != false from the closure
|
|
|
349 |
* @param callable $lambda The function to execute or an array passed to call_user_func (maps to a class method)
|
|
|
350 |
* @param mixed $args Arguments to pass to the closure
|
|
|
351 |
* @param int $timeout Timeout in seconds
|
|
|
352 |
* @param Exception $exception The exception to throw in case it time outs.
|
|
|
353 |
* @param bool $microsleep If set to true it'll sleep micro seconds rather than seconds.
|
|
|
354 |
* @return mixed The value returned by the closure
|
|
|
355 |
*/
|
|
|
356 |
protected function spin($lambda, $args = false, $timeout = false, $exception = false, $microsleep = false) {
|
|
|
357 |
|
|
|
358 |
// Using default timeout which is pretty high.
|
|
|
359 |
if ($timeout === false) {
|
|
|
360 |
$timeout = self::get_timeout();
|
|
|
361 |
}
|
|
|
362 |
|
|
|
363 |
$start = microtime(true);
|
|
|
364 |
$end = $start + $timeout;
|
|
|
365 |
|
|
|
366 |
do {
|
|
|
367 |
// We catch the exception thrown by the step definition to execute it again.
|
|
|
368 |
try {
|
|
|
369 |
// We don't check with !== because most of the time closures will return
|
|
|
370 |
// direct Behat methods returns and we are not sure it will be always (bool)false
|
|
|
371 |
// if it just runs the behat method without returning anything $return == null.
|
|
|
372 |
if ($return = call_user_func($lambda, $this, $args)) {
|
|
|
373 |
return $return;
|
|
|
374 |
}
|
|
|
375 |
} catch (Exception $e) {
|
|
|
376 |
// We would use the first closure exception if no exception has been provided.
|
|
|
377 |
if (!$exception) {
|
|
|
378 |
$exception = $e;
|
|
|
379 |
}
|
|
|
380 |
}
|
|
|
381 |
|
|
|
382 |
if (!$this->running_javascript()) {
|
|
|
383 |
break;
|
|
|
384 |
}
|
|
|
385 |
|
|
|
386 |
usleep(100000);
|
|
|
387 |
|
|
|
388 |
} while (microtime(true) < $end);
|
|
|
389 |
|
|
|
390 |
// Using coding_exception as is a development issue if no exception has been provided.
|
|
|
391 |
if (!$exception) {
|
|
|
392 |
$exception = new coding_exception('spin method requires an exception if the callback does not throw an exception');
|
|
|
393 |
}
|
|
|
394 |
|
|
|
395 |
// Throwing exception to the user.
|
|
|
396 |
throw $exception;
|
|
|
397 |
}
|
|
|
398 |
|
|
|
399 |
/**
|
|
|
400 |
* Gets a NodeElement based on the locator and selector type received as argument from steps definitions.
|
|
|
401 |
*
|
|
|
402 |
* Use behat_base::get_text_selector_node() for text-based selectors.
|
|
|
403 |
*
|
|
|
404 |
* @throws ElementNotFoundException Thrown by behat_base::find
|
|
|
405 |
* @param string $selectortype
|
|
|
406 |
* @param string $element
|
|
|
407 |
* @return NodeElement
|
|
|
408 |
*/
|
|
|
409 |
protected function get_selected_node($selectortype, $element) {
|
|
|
410 |
return $this->find($selectortype, $element);
|
|
|
411 |
}
|
|
|
412 |
|
|
|
413 |
/**
|
|
|
414 |
* Gets a NodeElement based on the locator and selector type received as argument from steps definitions.
|
|
|
415 |
*
|
|
|
416 |
* @throws ElementNotFoundException Thrown by behat_base::find
|
|
|
417 |
* @param string $selectortype
|
|
|
418 |
* @param string $element
|
|
|
419 |
* @return NodeElement
|
|
|
420 |
*/
|
|
|
421 |
protected function get_text_selector_node($selectortype, $element) {
|
|
|
422 |
// Getting Mink selector and locator.
|
|
|
423 |
list($selector, $locator) = $this->transform_text_selector($selectortype, $element);
|
|
|
424 |
|
|
|
425 |
// Returns the NodeElement.
|
|
|
426 |
return $this->find($selector, $locator);
|
|
|
427 |
}
|
|
|
428 |
|
|
|
429 |
/**
|
|
|
430 |
* Gets the requested element inside the specified container.
|
|
|
431 |
*
|
|
|
432 |
* @throws ElementNotFoundException Thrown by behat_base::find
|
|
|
433 |
* @param mixed $selectortype The element selector type.
|
|
|
434 |
* @param mixed $element The element locator.
|
|
|
435 |
* @param mixed $containerselectortype The container selector type.
|
|
|
436 |
* @param mixed $containerelement The container locator.
|
|
|
437 |
* @return NodeElement
|
|
|
438 |
*/
|
|
|
439 |
protected function get_node_in_container($selectortype, $element, $containerselectortype, $containerelement) {
|
|
|
440 |
if ($containerselectortype === 'NodeElement' && is_a($containerelement, NodeElement::class)) {
|
|
|
441 |
// Support a NodeElement being passed in for use in step chaining.
|
|
|
442 |
$containernode = $containerelement;
|
|
|
443 |
} else {
|
|
|
444 |
// Gets the container, it will always be text based.
|
|
|
445 |
$containernode = $this->get_text_selector_node($containerselectortype, $containerelement);
|
|
|
446 |
}
|
|
|
447 |
|
|
|
448 |
$locatorexceptionmsg = $element . '" in the "' . $this->get_selector_description($containerselectortype, $containerelement);
|
|
|
449 |
$exception = new ElementNotFoundException($this->getSession(), $selectortype, null, $locatorexceptionmsg);
|
|
|
450 |
|
|
|
451 |
return $this->find($selectortype, $element, $exception, $containernode);
|
|
|
452 |
}
|
|
|
453 |
|
|
|
454 |
/**
|
|
|
455 |
* Transforms from step definition's argument style to Mink format.
|
|
|
456 |
*
|
|
|
457 |
* Mink has 3 different selectors css, xpath and named, where named
|
|
|
458 |
* selectors includes link, button, field... to simplify and group multiple
|
|
|
459 |
* steps in one we use the same interface, considering all link, buttons...
|
|
|
460 |
* at the same level as css selectors and xpath; this method makes the
|
|
|
461 |
* conversion from the arguments received by the steps to the selectors and locators
|
|
|
462 |
* required to interact with Mink.
|
|
|
463 |
*
|
|
|
464 |
* @throws ExpectationException
|
|
|
465 |
* @param string $selectortype It can be css, xpath or any of the named selectors.
|
|
|
466 |
* @param string $element The locator (or string) we are looking for.
|
|
|
467 |
* @return array Contains the selector and the locator expected by Mink.
|
|
|
468 |
*/
|
|
|
469 |
protected function transform_selector($selectortype, $element) {
|
|
|
470 |
// Here we don't know if an allowed text selector is being used.
|
|
|
471 |
$selectors = behat_selectors::get_allowed_selectors();
|
|
|
472 |
if (!isset($selectors[$selectortype])) {
|
|
|
473 |
throw new ExpectationException('The "' . $selectortype . '" selector type does not exist', $this->getSession());
|
|
|
474 |
}
|
|
|
475 |
|
|
|
476 |
[
|
|
|
477 |
'selector' => $selector,
|
|
|
478 |
'locator' => $locator,
|
|
|
479 |
] = $this->normalise_selector($selectortype, $element, $this->getSession()->getPage());
|
|
|
480 |
|
|
|
481 |
return [$selector, $locator];
|
|
|
482 |
}
|
|
|
483 |
|
|
|
484 |
/**
|
|
|
485 |
* Transforms from step definition's argument style to Mink format.
|
|
|
486 |
*
|
|
|
487 |
* Delegates all the process to behat_base::transform_selector() checking
|
|
|
488 |
* the provided $selectortype.
|
|
|
489 |
*
|
|
|
490 |
* @throws ExpectationException
|
|
|
491 |
* @param string $selectortype It can be css, xpath or any of the named selectors.
|
|
|
492 |
* @param string $element The locator (or string) we are looking for.
|
|
|
493 |
* @return array Contains the selector and the locator expected by Mink.
|
|
|
494 |
*/
|
|
|
495 |
protected function transform_text_selector($selectortype, $element) {
|
|
|
496 |
|
|
|
497 |
$selectors = behat_selectors::get_allowed_text_selectors();
|
|
|
498 |
if (empty($selectors[$selectortype])) {
|
|
|
499 |
throw new ExpectationException('The "' . $selectortype . '" selector can not be used to select text nodes', $this->getSession());
|
|
|
500 |
}
|
|
|
501 |
|
|
|
502 |
return $this->transform_selector($selectortype, $element);
|
|
|
503 |
}
|
|
|
504 |
|
|
|
505 |
/**
|
|
|
506 |
* Whether Javascript is available in the current Session.
|
|
|
507 |
*
|
|
|
508 |
* @return boolean
|
|
|
509 |
*/
|
|
|
510 |
protected function running_javascript() {
|
|
|
511 |
return self::running_javascript_in_session($this->getSession());
|
|
|
512 |
}
|
|
|
513 |
|
|
|
514 |
/**
|
|
|
515 |
* Require that javascript be available in the current Session.
|
|
|
516 |
*
|
|
|
517 |
* @param null|string $message An additional information message to show when JS is not available
|
|
|
518 |
* @throws DriverException
|
|
|
519 |
*/
|
|
|
520 |
protected function require_javascript(?string $message = null) {
|
|
|
521 |
return self::require_javascript_in_session($this->getSession(), $message);
|
|
|
522 |
}
|
|
|
523 |
|
|
|
524 |
/**
|
|
|
525 |
* Whether Javascript is available in the specified Session.
|
|
|
526 |
*
|
|
|
527 |
* @param Session $session
|
|
|
528 |
* @return boolean
|
|
|
529 |
*/
|
|
|
530 |
protected static function running_javascript_in_session(Session $session): bool {
|
|
|
531 |
return get_class($session->getDriver()) !== 'Behat\Mink\Driver\BrowserKitDriver';
|
|
|
532 |
}
|
|
|
533 |
|
|
|
534 |
/**
|
|
|
535 |
* Require that javascript be available for the specified Session.
|
|
|
536 |
*
|
|
|
537 |
* @param Session $session
|
|
|
538 |
* @param null|string $message An additional information message to show when JS is not available
|
|
|
539 |
* @throws DriverException
|
|
|
540 |
*/
|
|
|
541 |
protected static function require_javascript_in_session(Session $session, ?string $message = null): void {
|
|
|
542 |
if (self::running_javascript_in_session($session)) {
|
|
|
543 |
return;
|
|
|
544 |
}
|
|
|
545 |
|
|
|
546 |
$error = "Javascript is required for this step.";
|
|
|
547 |
if ($message) {
|
|
|
548 |
$error = "{$error} {$message}";
|
|
|
549 |
}
|
|
|
550 |
throw new DriverException($error);
|
|
|
551 |
}
|
|
|
552 |
|
|
|
553 |
/**
|
|
|
554 |
* Checks if the current page is part of the mobile app.
|
|
|
555 |
*
|
|
|
556 |
* @return bool True if it's in the app
|
|
|
557 |
*/
|
|
|
558 |
protected function is_in_app(): bool {
|
|
|
559 |
// Cannot be in the app if there's no @app tag on scenario.
|
|
|
560 |
if (!$this->has_tag('app')) {
|
|
|
561 |
return false;
|
|
|
562 |
}
|
|
|
563 |
|
|
|
564 |
// Check on page to see if it's an app page. Safest way is to look for added JavaScript.
|
|
|
565 |
return $this->evaluate_script('return typeof window.behat') === 'object';
|
|
|
566 |
}
|
|
|
567 |
|
|
|
568 |
/**
|
|
|
569 |
* Spins around an element until it exists
|
|
|
570 |
*
|
|
|
571 |
* @throws ExpectationException
|
|
|
572 |
* @param string $locator
|
|
|
573 |
* @param string $selectortype
|
|
|
574 |
* @return void
|
|
|
575 |
*/
|
|
|
576 |
protected function ensure_element_exists($locator, $selectortype) {
|
|
|
577 |
// Exception if it timesout and the element is still there.
|
|
|
578 |
$msg = "The '{$locator}' element does not exist and should";
|
|
|
579 |
$exception = new ExpectationException($msg, $this->getSession());
|
|
|
580 |
|
|
|
581 |
// Normalise the values in order to perform the search.
|
|
|
582 |
[
|
|
|
583 |
'selector' => $selector,
|
|
|
584 |
'locator' => $locator,
|
|
|
585 |
'container' => $container,
|
|
|
586 |
] = $this->normalise_selector($selectortype, $locator, $this->getSession()->getPage());
|
|
|
587 |
|
|
|
588 |
// It will stop spinning once the find() method returns true.
|
|
|
589 |
$this->spin(
|
|
|
590 |
function() use ($selector, $locator, $container) {
|
|
|
591 |
if ($container->find($selector, $locator)) {
|
|
|
592 |
return true;
|
|
|
593 |
}
|
|
|
594 |
return false;
|
|
|
595 |
},
|
|
|
596 |
[],
|
|
|
597 |
self::get_extended_timeout(),
|
|
|
598 |
$exception,
|
|
|
599 |
true
|
|
|
600 |
);
|
|
|
601 |
}
|
|
|
602 |
|
|
|
603 |
/**
|
|
|
604 |
* Spins until the element does not exist
|
|
|
605 |
*
|
|
|
606 |
* @throws ExpectationException
|
|
|
607 |
* @param string $locator
|
|
|
608 |
* @param string $selectortype
|
|
|
609 |
* @return void
|
|
|
610 |
*/
|
|
|
611 |
protected function ensure_element_does_not_exist($locator, $selectortype) {
|
|
|
612 |
// Exception if it timesout and the element is still there.
|
|
|
613 |
$msg = "The '{$locator}' element exists and should not exist";
|
|
|
614 |
$exception = new ExpectationException($msg, $this->getSession());
|
|
|
615 |
|
|
|
616 |
// Normalise the values in order to perform the search.
|
|
|
617 |
[
|
|
|
618 |
'selector' => $selector,
|
|
|
619 |
'locator' => $locator,
|
|
|
620 |
'container' => $container,
|
|
|
621 |
] = $this->normalise_selector($selectortype, $locator, $this->getSession()->getPage());
|
|
|
622 |
|
|
|
623 |
// It will stop spinning once the find() method returns false.
|
|
|
624 |
$this->spin(
|
|
|
625 |
function() use ($selector, $locator, $container) {
|
|
|
626 |
if ($container->find($selector, $locator)) {
|
|
|
627 |
return false;
|
|
|
628 |
}
|
|
|
629 |
return true;
|
|
|
630 |
},
|
|
|
631 |
// Note: We cannot use $this because the find will then be $this->find(), which leads us to a nested spin().
|
|
|
632 |
// We cannot nest spins because the outer spin times out before the inner spin completes.
|
|
|
633 |
[],
|
|
|
634 |
self::get_extended_timeout(),
|
|
|
635 |
$exception,
|
|
|
636 |
true
|
|
|
637 |
);
|
|
|
638 |
}
|
|
|
639 |
|
|
|
640 |
/**
|
|
|
641 |
* Ensures that the provided node is visible and we can interact with it.
|
|
|
642 |
*
|
|
|
643 |
* @throws ExpectationException
|
|
|
644 |
* @param NodeElement $node
|
|
|
645 |
* @return void Throws an exception if it times out without the element being visible
|
|
|
646 |
*/
|
|
|
647 |
protected function ensure_node_is_visible($node) {
|
|
|
648 |
if (!$this->running_javascript()) {
|
|
|
649 |
return;
|
|
|
650 |
}
|
|
|
651 |
|
|
|
652 |
// Exception if it timesout and the element is still there.
|
|
|
653 |
$msg = 'The "' . $node->getXPath() . '" xpath node is not visible and it should be visible';
|
|
|
654 |
$exception = new ExpectationException($msg, $this->getSession());
|
|
|
655 |
|
|
|
656 |
// It will stop spinning once the isVisible() method returns true.
|
|
|
657 |
$this->spin(
|
|
|
658 |
function($context, $args) {
|
|
|
659 |
if ($args->isVisible()) {
|
|
|
660 |
return true;
|
|
|
661 |
}
|
|
|
662 |
return false;
|
|
|
663 |
},
|
|
|
664 |
$node,
|
|
|
665 |
self::get_extended_timeout(),
|
|
|
666 |
$exception,
|
|
|
667 |
true
|
|
|
668 |
);
|
|
|
669 |
}
|
|
|
670 |
|
|
|
671 |
/**
|
|
|
672 |
* Ensures that the provided node has a attribute value set. This step can be used to check if specific
|
|
|
673 |
* JS has finished modifying the node.
|
|
|
674 |
*
|
|
|
675 |
* @throws ExpectationException
|
|
|
676 |
* @param NodeElement $node
|
|
|
677 |
* @param string $attribute attribute name
|
|
|
678 |
* @param string $attributevalue attribute value to check.
|
|
|
679 |
* @return void Throws an exception if it times out without the element being visible
|
|
|
680 |
*/
|
|
|
681 |
protected function ensure_node_attribute_is_set($node, $attribute, $attributevalue) {
|
|
|
682 |
|
|
|
683 |
if (!$this->running_javascript()) {
|
|
|
684 |
return;
|
|
|
685 |
}
|
|
|
686 |
|
|
|
687 |
// Exception if it timesout and the element is still there.
|
|
|
688 |
$msg = 'The "' . $node->getXPath() . '" xpath node is not visible and it should be visible';
|
|
|
689 |
$exception = new ExpectationException($msg, $this->getSession());
|
|
|
690 |
|
|
|
691 |
// It will stop spinning once the $args[1]) == $args[2], and method returns true.
|
|
|
692 |
$this->spin(
|
|
|
693 |
function($context, $args) {
|
|
|
694 |
if ($args[0]->getAttribute($args[1]) == $args[2]) {
|
|
|
695 |
return true;
|
|
|
696 |
}
|
|
|
697 |
return false;
|
|
|
698 |
},
|
|
|
699 |
array($node, $attribute, $attributevalue),
|
|
|
700 |
self::get_extended_timeout(),
|
|
|
701 |
$exception,
|
|
|
702 |
true
|
|
|
703 |
);
|
|
|
704 |
}
|
|
|
705 |
|
|
|
706 |
/**
|
|
|
707 |
* Ensures that the provided element is visible and we can interact with it.
|
|
|
708 |
*
|
|
|
709 |
* Returns the node in case other actions are interested in using it.
|
|
|
710 |
*
|
|
|
711 |
* @throws ExpectationException
|
|
|
712 |
* @param string $element
|
|
|
713 |
* @param string $selectortype
|
|
|
714 |
* @return NodeElement Throws an exception if it times out without being visible
|
|
|
715 |
*/
|
|
|
716 |
protected function ensure_element_is_visible($element, $selectortype) {
|
|
|
717 |
if (!$this->running_javascript()) {
|
|
|
718 |
return;
|
|
|
719 |
}
|
|
|
720 |
|
|
|
721 |
$node = $this->get_selected_node($selectortype, $element);
|
|
|
722 |
$this->ensure_node_is_visible($node);
|
|
|
723 |
|
|
|
724 |
return $node;
|
|
|
725 |
}
|
|
|
726 |
|
|
|
727 |
/**
|
|
|
728 |
* Checks if the current scenario, or its feature, has a specified tag.
|
|
|
729 |
*
|
|
|
730 |
* @param string $tag Tag to check
|
|
|
731 |
* @return bool True if the tag exists in scenario or feature
|
|
|
732 |
*/
|
|
|
733 |
public function has_tag(string $tag): bool {
|
|
|
734 |
return array_key_exists($tag, behat_hooks::get_tags_for_scenario());
|
|
|
735 |
}
|
|
|
736 |
|
|
|
737 |
/**
|
|
|
738 |
* Change browser window size.
|
|
|
739 |
* - mobile: 425x750
|
|
|
740 |
* - tablet: 768x1024
|
|
|
741 |
* - small: 1024x768
|
|
|
742 |
* - medium: 1366x768
|
|
|
743 |
* - large: 2560x1600
|
|
|
744 |
*
|
|
|
745 |
* @param string $windowsize size of window.
|
|
|
746 |
* @param bool $viewport If true, changes viewport rather than window size
|
|
|
747 |
* @throws ExpectationException
|
|
|
748 |
*/
|
|
|
749 |
protected function resize_window($windowsize, $viewport = false) {
|
|
|
750 |
global $CFG;
|
|
|
751 |
|
|
|
752 |
// Non JS don't support resize window.
|
|
|
753 |
if (!$this->running_javascript()) {
|
|
|
754 |
return;
|
|
|
755 |
}
|
|
|
756 |
|
|
|
757 |
switch ($windowsize) {
|
|
|
758 |
case "mobile":
|
|
|
759 |
$width = 425;
|
|
|
760 |
$height = 750;
|
|
|
761 |
break;
|
|
|
762 |
case "tablet":
|
|
|
763 |
$width = 768;
|
|
|
764 |
$height = 1024;
|
|
|
765 |
break;
|
|
|
766 |
case "small":
|
|
|
767 |
$width = 1024;
|
|
|
768 |
$height = 768;
|
|
|
769 |
break;
|
|
|
770 |
case "medium":
|
|
|
771 |
$width = 1366;
|
|
|
772 |
$height = 768;
|
|
|
773 |
break;
|
|
|
774 |
case "large":
|
|
|
775 |
$width = 2560;
|
|
|
776 |
$height = 1600;
|
|
|
777 |
break;
|
|
|
778 |
default:
|
|
|
779 |
preg_match('/^(\d+x\d+)$/', $windowsize, $matches);
|
|
|
780 |
if (empty($matches) || (count($matches) != 2)) {
|
|
|
781 |
throw new ExpectationException("Invalid screen size, can't resize", $this->getSession());
|
|
|
782 |
}
|
|
|
783 |
$size = explode('x', $windowsize);
|
|
|
784 |
$width = (int) $size[0];
|
|
|
785 |
$height = (int) $size[1];
|
|
|
786 |
}
|
|
|
787 |
|
|
|
788 |
if (isset($CFG->behat_window_size_modifier) && is_numeric($CFG->behat_window_size_modifier)) {
|
|
|
789 |
$width *= $CFG->behat_window_size_modifier;
|
|
|
790 |
$height *= $CFG->behat_window_size_modifier;
|
|
|
791 |
}
|
|
|
792 |
|
|
|
793 |
if ($viewport) {
|
|
|
794 |
// When setting viewport size, we set it so that the document width will be exactly
|
|
|
795 |
// as specified, assuming that there is a vertical scrollbar. (In cases where there is
|
|
|
796 |
// no scrollbar it will be slightly wider. We presume this is rare and predictable.)
|
|
|
797 |
// The window inner height will be as specified, which means the available viewport will
|
|
|
798 |
// actually be smaller if there is a horizontal scrollbar. We assume that horizontal
|
|
|
799 |
// scrollbars are rare so this doesn't matter.
|
|
|
800 |
$js = <<<EOF
|
|
|
801 |
return (function() {
|
|
|
802 |
var before = document.body.style.overflowY;
|
|
|
803 |
document.body.style.overflowY = "scroll";
|
|
|
804 |
var result = {};
|
|
|
805 |
result.x = window.outerWidth - document.body.offsetWidth;
|
|
|
806 |
result.y = window.outerHeight - window.innerHeight;
|
|
|
807 |
document.body.style.overflowY = before;
|
|
|
808 |
return result;
|
|
|
809 |
})();
|
|
|
810 |
EOF;
|
|
|
811 |
$offset = $this->evaluate_script($js);
|
|
|
812 |
$width += $offset['x'];
|
|
|
813 |
$height += $offset['y'];
|
|
|
814 |
}
|
|
|
815 |
|
|
|
816 |
$this->getSession()->getDriver()->resizeWindow($width, $height);
|
|
|
817 |
}
|
|
|
818 |
|
|
|
819 |
/**
|
|
|
820 |
* Waits for all the JS to be loaded.
|
|
|
821 |
*
|
|
|
822 |
* @return bool Whether any JS is still pending completion.
|
|
|
823 |
*/
|
|
|
824 |
public function wait_for_pending_js() {
|
|
|
825 |
return static::wait_for_pending_js_in_session($this->getSession());
|
|
|
826 |
}
|
|
|
827 |
|
|
|
828 |
/**
|
|
|
829 |
* Waits for all the JS to be loaded.
|
|
|
830 |
*
|
|
|
831 |
* @param Session $session The Mink Session where JS can be run
|
|
|
832 |
* @return bool Whether any JS is still pending completion.
|
|
|
833 |
*/
|
|
|
834 |
public static function wait_for_pending_js_in_session(Session $session) {
|
|
|
835 |
if (!self::running_javascript_in_session($session)) {
|
|
|
836 |
// JS is not available therefore there is nothing to wait for.
|
|
|
837 |
return false;
|
|
|
838 |
}
|
|
|
839 |
|
|
|
840 |
// We don't use behat_base::spin() here as we don't want to end up with an exception
|
|
|
841 |
// if the page & JSs don't finish loading properly.
|
|
|
842 |
for ($i = 0; $i < self::get_extended_timeout() * 10; $i++) {
|
|
|
843 |
$pending = '';
|
|
|
844 |
try {
|
|
|
845 |
$jscode = trim(preg_replace('/\s+/', ' ', '
|
|
|
846 |
return (function() {
|
|
|
847 |
if (document.readyState !== "complete") {
|
|
|
848 |
return "incomplete";
|
|
|
849 |
}
|
|
|
850 |
|
|
|
851 |
if (typeof M !== "object" || typeof M.util !== "object" || typeof M.util.pending_js === "undefined") {
|
|
|
852 |
return "";
|
|
|
853 |
}
|
|
|
854 |
|
|
|
855 |
return M.util.pending_js.join(":");
|
|
|
856 |
})()'));
|
|
|
857 |
$pending = self::evaluate_script_in_session($session, $jscode);
|
|
|
858 |
} catch (NoSuchWindowException $nsw) {
|
|
|
859 |
// We catch an exception here, in case we just closed the window we were interacting with.
|
|
|
860 |
// No javascript is running if there is no window right?
|
|
|
861 |
$pending = '';
|
|
|
862 |
} catch (UnknownError $e) {
|
|
|
863 |
// M is not defined when the window or the frame don't exist anymore.
|
|
|
864 |
if (strstr($e->getMessage(), 'M is not defined') != false) {
|
|
|
865 |
$pending = '';
|
|
|
866 |
}
|
|
|
867 |
}
|
|
|
868 |
|
|
|
869 |
// If there are no pending JS we stop waiting.
|
|
|
870 |
if ($pending === '') {
|
|
|
871 |
return true;
|
|
|
872 |
}
|
|
|
873 |
|
|
|
874 |
// 0.1 seconds.
|
|
|
875 |
usleep(100000);
|
|
|
876 |
}
|
|
|
877 |
|
|
|
878 |
// Timeout waiting for JS to complete. It will be caught and forwarded to behat_hooks::i_look_for_exceptions().
|
|
|
879 |
// It is unlikely that Javascript code of a page or an AJAX request needs more than get_extended_timeout() seconds
|
|
|
880 |
// to be loaded, although when pages contains Javascript errors M.util.js_complete() can not be executed, so the
|
|
|
881 |
// number of JS pending code and JS completed code will not match and we will reach this point.
|
|
|
882 |
throw new \Exception('Javascript code and/or AJAX requests are not ready after ' .
|
|
|
883 |
self::get_extended_timeout() .
|
|
|
884 |
' seconds. There is a Javascript error or the code is extremely slow (' . $pending .
|
|
|
885 |
'). If you are using a slow machine, consider setting $CFG->behat_increasetimeout.');
|
|
|
886 |
}
|
|
|
887 |
|
|
|
888 |
/**
|
|
|
889 |
* Internal step definition to find exceptions, debugging() messages and PHP debug messages.
|
|
|
890 |
*
|
|
|
891 |
* Part of behat_hooks class as is part of the testing framework, is auto-executed
|
|
|
892 |
* after each step so no features will splicitly use it.
|
|
|
893 |
*
|
|
|
894 |
* @throws Exception Unknown type, depending on what we caught in the hook or basic \Exception.
|
|
|
895 |
* @see Moodle\BehatExtension\Tester\MoodleStepTester
|
|
|
896 |
*/
|
|
|
897 |
public function look_for_exceptions() {
|
|
|
898 |
// Wrap in try in case we were interacting with a closed window.
|
|
|
899 |
try {
|
|
|
900 |
|
|
|
901 |
// Exceptions.
|
|
|
902 |
$exceptionsxpath = "//div[@data-rel='fatalerror']";
|
|
|
903 |
// Debugging messages.
|
|
|
904 |
$debuggingxpath = "//div[@data-rel='debugging']";
|
|
|
905 |
// PHP debug messages.
|
|
|
906 |
$phperrorxpath = "//div[@data-rel='phpdebugmessage']";
|
|
|
907 |
// Any other backtrace.
|
|
|
908 |
$othersxpath = "(//*[contains(., ': call to ')])[1]";
|
|
|
909 |
|
|
|
910 |
$xpaths = array($exceptionsxpath, $debuggingxpath, $phperrorxpath, $othersxpath);
|
|
|
911 |
$joinedxpath = implode(' | ', $xpaths);
|
|
|
912 |
|
|
|
913 |
// Joined xpath expression. Most of the time there will be no exceptions, so this pre-check
|
|
|
914 |
// is faster than to send the 4 xpath queries for each step.
|
|
|
915 |
if (!$this->getSession()->getDriver()->find($joinedxpath)) {
|
|
|
916 |
// Check if we have recorded any errors in driver process.
|
|
|
917 |
$phperrors = behat_get_shutdown_process_errors();
|
|
|
918 |
if (!empty($phperrors)) {
|
|
|
919 |
foreach ($phperrors as $error) {
|
|
|
920 |
$errnostring = behat_get_error_string($error['type']);
|
|
|
921 |
$msgs[] = $errnostring . ": " .$error['message'] . " at " . $error['file'] . ": " . $error['line'];
|
|
|
922 |
}
|
|
|
923 |
$msg = "PHP errors found:\n" . implode("\n", $msgs);
|
|
|
924 |
throw new \Exception(htmlentities($msg, ENT_COMPAT));
|
|
|
925 |
}
|
|
|
926 |
|
|
|
927 |
return;
|
|
|
928 |
}
|
|
|
929 |
|
|
|
930 |
// Exceptions.
|
|
|
931 |
if ($errormsg = $this->getSession()->getPage()->find('xpath', $exceptionsxpath)) {
|
|
|
932 |
|
|
|
933 |
// Getting the debugging info and the backtrace.
|
|
|
934 |
$errorinfoboxes = $this->getSession()->getPage()->findAll('css', 'div.alert-error');
|
|
|
935 |
// If errorinfoboxes is empty, try find alert-danger (bootstrap4) class.
|
|
|
936 |
if (empty($errorinfoboxes)) {
|
|
|
937 |
$errorinfoboxes = $this->getSession()->getPage()->findAll('css', 'div.alert-danger');
|
|
|
938 |
}
|
|
|
939 |
// If errorinfoboxes is empty, try find notifytiny (original) class.
|
|
|
940 |
if (empty($errorinfoboxes)) {
|
|
|
941 |
$errorinfoboxes = $this->getSession()->getPage()->findAll('css', 'div.notifytiny');
|
|
|
942 |
}
|
|
|
943 |
|
|
|
944 |
// If errorinfoboxes is empty, try find ajax/JS exception in dialogue.
|
|
|
945 |
if (empty($errorinfoboxes)) {
|
|
|
946 |
$errorinfoboxes = $this->getSession()->getPage()->findAll('css', 'div.moodle-exception-message');
|
|
|
947 |
|
|
|
948 |
// If ajax/JS exception.
|
|
|
949 |
if ($errorinfoboxes) {
|
|
|
950 |
$errorinfo = $this->get_debug_text($errorinfoboxes[0]->getHtml());
|
|
|
951 |
}
|
|
|
952 |
|
|
|
953 |
} else {
|
|
|
954 |
$errorinfo = implode("\n", [
|
|
|
955 |
$this->get_debug_text($errorinfoboxes[0]->getHtml()),
|
|
|
956 |
$this->get_debug_text($errorinfoboxes[1]->getHtml()),
|
|
|
957 |
html_to_text($errorinfoboxes[2]->find('css', 'ul')->getHtml()),
|
|
|
958 |
]);
|
|
|
959 |
}
|
|
|
960 |
|
|
|
961 |
$msg = "Moodle exception: " . $errormsg->getText() . "\n" . $errorinfo;
|
|
|
962 |
throw new \Exception(html_entity_decode($msg, ENT_COMPAT));
|
|
|
963 |
}
|
|
|
964 |
|
|
|
965 |
// Debugging messages.
|
|
|
966 |
if ($debuggingmessages = $this->getSession()->getPage()->findAll('xpath', $debuggingxpath)) {
|
|
|
967 |
$msgs = array();
|
|
|
968 |
foreach ($debuggingmessages as $debuggingmessage) {
|
|
|
969 |
$msgs[] = $this->get_debug_text($debuggingmessage->getHtml());
|
|
|
970 |
}
|
|
|
971 |
$msg = "debugging() message/s found:\n" . implode("\n", $msgs);
|
|
|
972 |
throw new \Exception(html_entity_decode($msg, ENT_COMPAT));
|
|
|
973 |
}
|
|
|
974 |
|
|
|
975 |
// PHP debug messages.
|
|
|
976 |
if ($phpmessages = $this->getSession()->getPage()->findAll('xpath', $phperrorxpath)) {
|
|
|
977 |
|
|
|
978 |
$msgs = array();
|
|
|
979 |
foreach ($phpmessages as $phpmessage) {
|
|
|
980 |
$msgs[] = $this->get_debug_text($phpmessage->getHtml());
|
|
|
981 |
}
|
|
|
982 |
$msg = "PHP debug message/s found:\n" . implode("\n", $msgs);
|
|
|
983 |
throw new \Exception(html_entity_decode($msg, ENT_COMPAT));
|
|
|
984 |
}
|
|
|
985 |
|
|
|
986 |
// Any other backtrace.
|
|
|
987 |
// First looking through xpath as it is faster than get and parse the whole page contents,
|
|
|
988 |
// we get the contents and look for matches once we found something to suspect that there is a backtrace.
|
|
|
989 |
if ($this->getSession()->getDriver()->find($othersxpath)) {
|
|
|
990 |
$backtracespattern = '/(line [0-9]* of [^:]*: call to [\->&;:a-zA-Z_\x7f-\xff][\->&;:a-zA-Z0-9_\x7f-\xff]*)/';
|
|
|
991 |
if (preg_match_all($backtracespattern, $this->getSession()->getPage()->getContent(), $backtraces)) {
|
|
|
992 |
$msgs = array();
|
|
|
993 |
foreach ($backtraces[0] as $backtrace) {
|
|
|
994 |
$msgs[] = $backtrace . '()';
|
|
|
995 |
}
|
|
|
996 |
$msg = "Other backtraces found:\n" . implode("\n", $msgs);
|
|
|
997 |
throw new \Exception(htmlentities($msg, ENT_COMPAT));
|
|
|
998 |
}
|
|
|
999 |
}
|
|
|
1000 |
|
|
|
1001 |
} catch (NoSuchWindowException $e) {
|
|
|
1002 |
// If we were interacting with a popup window it will not exists after closing it.
|
|
|
1003 |
} catch (DriverException $e) {
|
|
|
1004 |
// Same reason as above.
|
|
|
1005 |
}
|
|
|
1006 |
}
|
|
|
1007 |
|
|
|
1008 |
/**
|
|
|
1009 |
* Internal step definition to find deprecated styles.
|
|
|
1010 |
*
|
|
|
1011 |
* Part of behat_hooks class as is part of the testing framework, is auto-executed
|
|
|
1012 |
* after each step so no features will splicitly use it.
|
|
|
1013 |
*
|
|
|
1014 |
* @throws Exception Unknown type, depending on what we caught in the hook or basic \Exception.
|
|
|
1015 |
* @see Moodle\BehatExtension\Tester\MoodleStepTester
|
|
|
1016 |
*/
|
|
|
1017 |
public function look_for_deprecated_styles() {
|
|
|
1018 |
if (!behat_config_manager::get_behat_run_config_value('scss-deprecations')) {
|
|
|
1019 |
return;
|
|
|
1020 |
}
|
|
|
1021 |
|
|
|
1022 |
if (!$this->running_javascript()) {
|
|
|
1023 |
return;
|
|
|
1024 |
}
|
|
|
1025 |
|
|
|
1026 |
// Look for any DOM element with deprecated message in before pseudo-element.
|
|
|
1027 |
$js = <<<EOF
|
|
|
1028 |
[...document.querySelectorAll('*')].some(
|
|
|
1029 |
el => window.getComputedStyle(el, ':before').content === '"Deprecated style in use"'
|
|
|
1030 |
);
|
|
|
1031 |
EOF;
|
|
|
1032 |
if ($this->evaluate_script($js)) {
|
|
|
1033 |
throw new \Exception(html_entity_decode("Deprecated style in use", ENT_COMPAT));
|
|
|
1034 |
}
|
|
|
1035 |
}
|
|
|
1036 |
|
|
|
1037 |
/**
|
|
|
1038 |
* Converts HTML tags to line breaks to display the info in CLI
|
|
|
1039 |
*
|
|
|
1040 |
* @param string $html
|
|
|
1041 |
* @return string
|
|
|
1042 |
*/
|
|
|
1043 |
protected function get_debug_text($html) {
|
|
|
1044 |
|
|
|
1045 |
// Replacing HTML tags for new lines and keeping only the text.
|
|
|
1046 |
$notags = preg_replace('/<+\s*\/*\s*([A-Z][A-Z0-9]*)\b[^>]*\/*\s*>*/i', "\n", $html);
|
|
|
1047 |
return preg_replace("/(\n)+/s", "\n", $notags);
|
|
|
1048 |
}
|
|
|
1049 |
|
|
|
1050 |
/**
|
|
|
1051 |
* Helper function to execute api in a given context.
|
|
|
1052 |
*
|
|
|
1053 |
* @param string $contextapi context in which api is defined.
|
|
|
1054 |
* @param array|mixed $params list of params to pass or a single parameter
|
|
|
1055 |
* @throws Exception
|
|
|
1056 |
*/
|
|
|
1057 |
protected function execute($contextapi, $params = array()) {
|
|
|
1058 |
if (!is_array($params)) {
|
|
|
1059 |
$params = array($params);
|
|
|
1060 |
}
|
|
|
1061 |
|
|
|
1062 |
// Get required context and execute the api.
|
|
|
1063 |
$contextapi = explode("::", $contextapi);
|
|
|
1064 |
$context = behat_context_helper::get($contextapi[0]);
|
|
|
1065 |
call_user_func_array(array($context, $contextapi[1]), $params);
|
|
|
1066 |
|
|
|
1067 |
// NOTE: Wait for pending js and look for exception are not optional, as this might lead to unexpected results.
|
|
|
1068 |
// Don't make them optional for performance reasons.
|
|
|
1069 |
|
|
|
1070 |
// Wait for pending js.
|
|
|
1071 |
$this->wait_for_pending_js();
|
|
|
1072 |
|
|
|
1073 |
// Look for exceptions.
|
|
|
1074 |
$this->look_for_exceptions();
|
|
|
1075 |
|
|
|
1076 |
// Look for deprecated styles.
|
|
|
1077 |
$this->look_for_deprecated_styles();
|
|
|
1078 |
}
|
|
|
1079 |
|
|
|
1080 |
/**
|
|
|
1081 |
* Execute a function in a specific behat context.
|
|
|
1082 |
*
|
|
|
1083 |
* For example, to call the 'set_editor_value' function for all editors, you would call:
|
|
|
1084 |
*
|
|
|
1085 |
* behat_base::execute_in_matching_contexts('editor', 'set_editor_value', ['Some value']);
|
|
|
1086 |
*
|
|
|
1087 |
* This would find all behat contexts whose class name starts with 'behat_editor_' and
|
|
|
1088 |
* call the 'set_editor_value' function on that context.
|
|
|
1089 |
*
|
|
|
1090 |
* @param string $prefix
|
|
|
1091 |
* @param string $method
|
|
|
1092 |
* @param array $params
|
|
|
1093 |
*/
|
|
|
1094 |
public static function execute_in_matching_contexts(string $prefix, string $method, array $params): void {
|
|
|
1095 |
$contexts = behat_context_helper::get_prefixed_contexts("behat_{$prefix}_");
|
|
|
1096 |
foreach ($contexts as $context) {
|
|
|
1097 |
if (method_exists($context, $method) && is_callable([$context, $method])) {
|
|
|
1098 |
call_user_func_array([$context, $method], $params);
|
|
|
1099 |
}
|
|
|
1100 |
}
|
|
|
1101 |
}
|
|
|
1102 |
|
|
|
1103 |
/**
|
|
|
1104 |
* Get the actual user in the behat session (note $USER does not correspond to the behat session's user).
|
|
|
1105 |
* @return mixed
|
|
|
1106 |
* @throws coding_exception
|
|
|
1107 |
*/
|
|
|
1108 |
protected function get_session_user() {
|
|
|
1109 |
global $DB;
|
|
|
1110 |
|
|
|
1111 |
$sid = $this->getSession()->getCookie('MoodleSession');
|
|
|
1112 |
if (empty($sid)) {
|
|
|
1113 |
throw new coding_exception('failed to get moodle session');
|
|
|
1114 |
}
|
|
|
1115 |
$userid = $DB->get_field('sessions', 'userid', ['sid' => $sid]);
|
|
|
1116 |
if (empty($userid)) {
|
|
|
1117 |
throw new coding_exception('failed to get user from seession id '.$sid);
|
|
|
1118 |
}
|
|
|
1119 |
return $DB->get_record('user', ['id' => $userid]);
|
|
|
1120 |
}
|
|
|
1121 |
|
|
|
1122 |
/**
|
|
|
1123 |
* Set current $USER, reset access cache.
|
|
|
1124 |
*
|
|
|
1125 |
* In some cases, behat will execute the code as admin but in many cases we need to set an specific user as some
|
|
|
1126 |
* API's might rely on the logged user to take some action.
|
|
|
1127 |
*
|
|
|
1128 |
* @param null|int|stdClass $user user record, null or 0 means non-logged-in, positive integer means userid
|
|
|
1129 |
*/
|
|
|
1130 |
public static function set_user($user = null) {
|
|
|
1131 |
global $DB;
|
|
|
1132 |
|
|
|
1133 |
if (is_object($user)) {
|
|
|
1134 |
$user = clone($user);
|
|
|
1135 |
} else if (!$user) {
|
|
|
1136 |
// Assign valid data to admin user (some generator-related code needs a valid user).
|
|
|
1137 |
$user = $DB->get_record('user', array('username' => 'admin'));
|
|
|
1138 |
} else {
|
|
|
1139 |
$user = $DB->get_record('user', array('id' => $user));
|
|
|
1140 |
}
|
|
|
1141 |
unset($user->description);
|
|
|
1142 |
unset($user->access);
|
|
|
1143 |
unset($user->preference);
|
|
|
1144 |
|
|
|
1145 |
// Ensure session is empty, as it may contain caches and user specific info.
|
|
|
1146 |
\core\session\manager::init_empty_session();
|
|
|
1147 |
|
|
|
1148 |
\core\session\manager::set_user($user);
|
|
|
1149 |
}
|
|
|
1150 |
|
|
|
1151 |
/**
|
|
|
1152 |
* Gets the internal moodle context id from the context reference.
|
|
|
1153 |
*
|
|
|
1154 |
* The context reference changes depending on the context
|
|
|
1155 |
* level, it can be the system, a user, a category, a course or
|
|
|
1156 |
* a module.
|
|
|
1157 |
*
|
|
|
1158 |
* @throws Exception
|
|
|
1159 |
* @param string $levelname The context level string introduced by the test writer
|
|
|
1160 |
* @param string $contextref The context reference introduced by the test writer
|
|
|
1161 |
* @return context
|
|
|
1162 |
*/
|
|
|
1163 |
public static function get_context(string $levelname, string $contextref): context {
|
|
|
1164 |
$context = \core\context_helper::resolve_behat_reference($levelname, $contextref);
|
|
|
1165 |
if ($context) {
|
|
|
1166 |
return $context;
|
|
|
1167 |
}
|
|
|
1168 |
|
|
|
1169 |
throw new Exception("The specified context \"$levelname, $contextref\" does not exist");
|
|
|
1170 |
}
|
|
|
1171 |
|
|
|
1172 |
/**
|
|
|
1173 |
* Trigger click on node via javascript instead of actually clicking on it via pointer.
|
|
|
1174 |
*
|
|
|
1175 |
* This function resolves the issue of nested elements with click listeners or links - in these cases clicking via
|
|
|
1176 |
* the pointer may accidentally cause a click on the wrong element.
|
|
|
1177 |
* Example of issue: clicking to expand navigation nodes when the config value linkadmincategories is enabled.
|
|
|
1178 |
* @param NodeElement $node
|
|
|
1179 |
*/
|
|
|
1180 |
protected function js_trigger_click($node) {
|
|
|
1181 |
if (!$this->running_javascript()) {
|
|
|
1182 |
$node->click();
|
|
|
1183 |
}
|
|
|
1184 |
$driver = $this->getSession()->getDriver();
|
|
|
1185 |
if ($driver instanceof \Moodle\BehatExtension\Driver\WebDriver) {
|
|
|
1186 |
$this->execute_js_on_node($node, '{{ELEMENT}}.click();');
|
|
|
1187 |
} else {
|
|
|
1188 |
$this->ensure_node_is_visible($node); // Ensures hidden elements can't be clicked.
|
|
|
1189 |
$driver->click($node->getXpath());
|
|
|
1190 |
}
|
|
|
1191 |
}
|
|
|
1192 |
|
|
|
1193 |
/**
|
|
|
1194 |
* Execute JS on the specified NodeElement.
|
|
|
1195 |
*
|
|
|
1196 |
* @param NodeElement $node
|
|
|
1197 |
* @param string $script
|
|
|
1198 |
* @param bool $async
|
|
|
1199 |
*/
|
|
|
1200 |
protected function execute_js_on_node(NodeElement $node, string $script, bool $async = false): void {
|
|
|
1201 |
$driver = $this->getSession()->getDriver();
|
|
|
1202 |
if (!($driver instanceof \Moodle\BehatExtension\Driver\WebDriver)) {
|
|
|
1203 |
throw new \coding_exception('Unknown driver');
|
|
|
1204 |
}
|
|
|
1205 |
|
|
|
1206 |
if (preg_match('/^function[\s\(]/', $script)) {
|
|
|
1207 |
$script = preg_replace('/;$/', '', $script);
|
|
|
1208 |
$script = '(' . $script . ')';
|
|
|
1209 |
}
|
|
|
1210 |
|
|
|
1211 |
$script = str_replace('{{ELEMENT}}', 'arguments[0]', $script);
|
|
|
1212 |
|
|
|
1213 |
$webdriver = $driver->getWebDriver();
|
|
|
1214 |
|
|
|
1215 |
$element = $this->get_webdriver_element_from_node_element($node);
|
|
|
1216 |
if ($async) {
|
|
|
1217 |
try {
|
|
|
1218 |
$webdriver->executeAsyncScript($script, [$element]);
|
|
|
1219 |
} catch (ScriptTimeoutException $e) {
|
|
|
1220 |
throw new DriverException($e->getMessage(), $e->getCode(), $e);
|
|
|
1221 |
}
|
|
|
1222 |
} else {
|
|
|
1223 |
$webdriver->executeScript($script, [$element]);
|
|
|
1224 |
}
|
|
|
1225 |
}
|
|
|
1226 |
|
|
|
1227 |
/**
|
|
|
1228 |
* Translate a Mink NodeElement into a WebDriver Element.
|
|
|
1229 |
*
|
|
|
1230 |
* @param NodeElement $node
|
|
|
1231 |
* @return WebDriverElement
|
|
|
1232 |
*/
|
|
|
1233 |
protected function get_webdriver_element_from_node_element(NodeElement $node): WebDriverElement {
|
|
|
1234 |
return $this->getSession()
|
|
|
1235 |
->getDriver()
|
|
|
1236 |
->getWebDriver()
|
|
|
1237 |
->findElement(WebDriverBy::xpath($node->getXpath()));
|
|
|
1238 |
}
|
|
|
1239 |
|
|
|
1240 |
/**
|
|
|
1241 |
* Convert page names to URLs for steps like 'When I am on the "[page name]" page'.
|
|
|
1242 |
*
|
|
|
1243 |
* You should override this as appropriate for your plugin. The method
|
|
|
1244 |
* {@link behat_navigation::resolve_core_page_url()} is a good example.
|
|
|
1245 |
*
|
|
|
1246 |
* Your overridden method should document the recognised page types with
|
|
|
1247 |
* a table like this:
|
|
|
1248 |
*
|
|
|
1249 |
* Recognised page names are:
|
|
|
1250 |
* | Page | Description |
|
|
|
1251 |
*
|
|
|
1252 |
* @param string $page name of the page, with the component name removed e.g. 'Admin notification'.
|
|
|
1253 |
* @return moodle_url the corresponding URL.
|
|
|
1254 |
* @throws Exception with a meaningful error message if the specified page cannot be found.
|
|
|
1255 |
*/
|
|
|
1256 |
protected function resolve_page_url(string $page): moodle_url {
|
|
|
1257 |
throw new Exception('Component "' . get_class($this) .
|
|
|
1258 |
'" does not support the generic \'When I am on the "' . $page .
|
|
|
1259 |
'" page\' navigation step.');
|
|
|
1260 |
}
|
|
|
1261 |
|
|
|
1262 |
/**
|
|
|
1263 |
* Convert page names to URLs for steps like 'When I am on the "[identifier]" "[page type]" page'.
|
|
|
1264 |
*
|
|
|
1265 |
* A typical example might be:
|
|
|
1266 |
* When I am on the "Test quiz" "mod_quiz > Responses report" page
|
|
|
1267 |
* which would cause this method in behat_mod_quiz to be called with
|
|
|
1268 |
* arguments 'Responses report', 'Test quiz'.
|
|
|
1269 |
*
|
|
|
1270 |
* You should override this as appropriate for your plugin. The method
|
|
|
1271 |
* {@link behat_navigation::resolve_core_page_instance_url()} is a good example.
|
|
|
1272 |
*
|
|
|
1273 |
* Your overridden method should document the recognised page types with
|
|
|
1274 |
* a table like this:
|
|
|
1275 |
*
|
|
|
1276 |
* Recognised page names are:
|
|
|
1277 |
* | Type | identifier meaning | Description |
|
|
|
1278 |
*
|
|
|
1279 |
* @param string $type identifies which type of page this is, e.g. 'Attempt review'.
|
|
|
1280 |
* @param string $identifier identifies the particular page, e.g. 'Test quiz > student > Attempt 1'.
|
|
|
1281 |
* @return moodle_url the corresponding URL.
|
|
|
1282 |
* @throws Exception with a meaningful error message if the specified page cannot be found.
|
|
|
1283 |
*/
|
|
|
1284 |
protected function resolve_page_instance_url(string $type, string $identifier): moodle_url {
|
|
|
1285 |
throw new Exception('Component "' . get_class($this) .
|
|
|
1286 |
'" does not support the generic \'When I am on the "' . $identifier .
|
|
|
1287 |
'" "' . $type . '" page\' navigation step.');
|
|
|
1288 |
}
|
|
|
1289 |
|
|
|
1290 |
/**
|
|
|
1291 |
* Gets the required timeout in seconds.
|
|
|
1292 |
*
|
|
|
1293 |
* @param int $timeout One of the TIMEOUT constants
|
|
|
1294 |
* @return int Actual timeout (in seconds)
|
|
|
1295 |
*/
|
|
|
1296 |
protected static function get_real_timeout(int $timeout): int {
|
|
|
1297 |
global $CFG;
|
|
|
1298 |
if (!empty($CFG->behat_increasetimeout)) {
|
|
|
1299 |
return $timeout * $CFG->behat_increasetimeout;
|
|
|
1300 |
} else {
|
|
|
1301 |
return $timeout;
|
|
|
1302 |
}
|
|
|
1303 |
}
|
|
|
1304 |
|
|
|
1305 |
/**
|
|
|
1306 |
* Gets the default timeout.
|
|
|
1307 |
*
|
|
|
1308 |
* The timeout for each Behat step (load page, wait for an element to load...).
|
|
|
1309 |
*
|
|
|
1310 |
* @return int Timeout in seconds
|
|
|
1311 |
*/
|
|
|
1312 |
public static function get_timeout(): int {
|
|
|
1313 |
return self::get_real_timeout(6);
|
|
|
1314 |
}
|
|
|
1315 |
|
|
|
1316 |
/**
|
|
|
1317 |
* Gets the reduced timeout.
|
|
|
1318 |
*
|
|
|
1319 |
* A reduced timeout for cases where self::get_timeout() is too much
|
|
|
1320 |
* and a simple $this->getSession()->getPage()->find() could not
|
|
|
1321 |
* be enough.
|
|
|
1322 |
*
|
|
|
1323 |
* @return int Timeout in seconds
|
|
|
1324 |
*/
|
|
|
1325 |
public static function get_reduced_timeout(): int {
|
|
|
1326 |
return self::get_real_timeout(2);
|
|
|
1327 |
}
|
|
|
1328 |
|
|
|
1329 |
/**
|
|
|
1330 |
* Gets the extended timeout.
|
|
|
1331 |
*
|
|
|
1332 |
* A longer timeout for cases where the normal timeout is not enough.
|
|
|
1333 |
*
|
|
|
1334 |
* @return int Timeout in seconds
|
|
|
1335 |
*/
|
|
|
1336 |
public static function get_extended_timeout(): int {
|
|
|
1337 |
return self::get_real_timeout(10);
|
|
|
1338 |
}
|
|
|
1339 |
|
|
|
1340 |
/**
|
|
|
1341 |
* Return a list of the exact named selectors for the component.
|
|
|
1342 |
*
|
|
|
1343 |
* Named selectors are what make Behat steps like
|
|
|
1344 |
* Then I should see "Useful text" in the "General" "fieldset"
|
|
|
1345 |
* work. Here, "fieldset" is the named selector, and "General" is the locator.
|
|
|
1346 |
*
|
|
|
1347 |
* If you override this method in your plugin (e.g. mod_mymod), to define
|
|
|
1348 |
* new selectors specific to your plugin. For example, if you returned
|
|
|
1349 |
* new behat_component_named_selector('Thingy',
|
|
|
1350 |
* [".//some/xpath//img[contains(@alt, %locator%)]/.."])
|
|
|
1351 |
* then
|
|
|
1352 |
* Then I should see "Useful text" in the "Whatever" "mod_mymod > Thingy"
|
|
|
1353 |
* would work.
|
|
|
1354 |
*
|
|
|
1355 |
* This method should return a list of {@link behat_component_named_selector} and
|
|
|
1356 |
* the docs on that class explain how it works.
|
|
|
1357 |
*
|
|
|
1358 |
* @return behat_component_named_selector[]
|
|
|
1359 |
*/
|
|
|
1360 |
public static function get_exact_named_selectors(): array {
|
|
|
1361 |
return [];
|
|
|
1362 |
}
|
|
|
1363 |
|
|
|
1364 |
/**
|
|
|
1365 |
* Return a list of the partial named selectors for the component.
|
|
|
1366 |
*
|
|
|
1367 |
* Like the exact named selectors above, but the locator only
|
|
|
1368 |
* needs to match part of the text. For example, the standard
|
|
|
1369 |
* "button" is a partial selector, so:
|
|
|
1370 |
* When I click "Save" "button"
|
|
|
1371 |
* will activate "Save changes".
|
|
|
1372 |
*
|
|
|
1373 |
* @return behat_component_named_selector[]
|
|
|
1374 |
*/
|
|
|
1375 |
public static function get_partial_named_selectors(): array {
|
|
|
1376 |
return [];
|
|
|
1377 |
}
|
|
|
1378 |
|
|
|
1379 |
/**
|
|
|
1380 |
* Return a list of the Mink named replacements for the component.
|
|
|
1381 |
*
|
|
|
1382 |
* Named replacements allow you to define parts of an xpath that can be reused multiple times, or in multiple
|
|
|
1383 |
* xpaths.
|
|
|
1384 |
*
|
|
|
1385 |
* This method should return a list of {@link behat_component_named_replacement} and the docs on that class explain
|
|
|
1386 |
* how it works.
|
|
|
1387 |
*
|
|
|
1388 |
* @return behat_component_named_replacement[]
|
|
|
1389 |
*/
|
|
|
1390 |
public static function get_named_replacements(): array {
|
|
|
1391 |
return [];
|
|
|
1392 |
}
|
|
|
1393 |
|
|
|
1394 |
/**
|
|
|
1395 |
* Evaluate the supplied script in the current session, returning the result.
|
|
|
1396 |
*
|
|
|
1397 |
* @param string $script
|
|
|
1398 |
* @return mixed
|
|
|
1399 |
*/
|
|
|
1400 |
public function evaluate_script(string $script) {
|
|
|
1401 |
return self::evaluate_script_in_session($this->getSession(), $script);
|
|
|
1402 |
}
|
|
|
1403 |
|
|
|
1404 |
/**
|
|
|
1405 |
* Evaluate the supplied script in the specified session, returning the result.
|
|
|
1406 |
*
|
|
|
1407 |
* @param Session $session
|
|
|
1408 |
* @param string $script
|
|
|
1409 |
* @return mixed
|
|
|
1410 |
*/
|
|
|
1411 |
public static function evaluate_script_in_session(Session $session, string $script) {
|
|
|
1412 |
self::require_javascript_in_session($session);
|
|
|
1413 |
|
|
|
1414 |
return $session->evaluateScript($script);
|
|
|
1415 |
}
|
|
|
1416 |
|
|
|
1417 |
/**
|
|
|
1418 |
* Execute the supplied script in the current session.
|
|
|
1419 |
*
|
|
|
1420 |
* No result will be returned.
|
|
|
1421 |
*
|
|
|
1422 |
* @param string $script
|
|
|
1423 |
*/
|
|
|
1424 |
public function execute_script(string $script): void {
|
|
|
1425 |
self::execute_script_in_session($this->getSession(), $script);
|
|
|
1426 |
}
|
|
|
1427 |
|
|
|
1428 |
/**
|
|
|
1429 |
* Excecute the supplied script in the specified session.
|
|
|
1430 |
*
|
|
|
1431 |
* No result will be returned.
|
|
|
1432 |
*
|
|
|
1433 |
* @param Session $session
|
|
|
1434 |
* @param string $script
|
|
|
1435 |
*/
|
|
|
1436 |
public static function execute_script_in_session(Session $session, string $script): void {
|
|
|
1437 |
self::require_javascript_in_session($session);
|
|
|
1438 |
|
|
|
1439 |
$session->executeScript($script);
|
|
|
1440 |
}
|
|
|
1441 |
|
|
|
1442 |
/**
|
|
|
1443 |
* Get the session key for the current session via Javascript.
|
|
|
1444 |
*
|
|
|
1445 |
* @return string
|
|
|
1446 |
*/
|
|
|
1447 |
public function get_sesskey(): string {
|
|
|
1448 |
$script = <<<EOF
|
|
|
1449 |
return (function() {
|
|
|
1450 |
if (M && M.cfg && M.cfg.sesskey) {
|
|
|
1451 |
return M.cfg.sesskey;
|
|
|
1452 |
}
|
|
|
1453 |
return '';
|
|
|
1454 |
})()
|
|
|
1455 |
EOF;
|
|
|
1456 |
|
|
|
1457 |
return $this->evaluate_script($script);
|
|
|
1458 |
}
|
|
|
1459 |
|
|
|
1460 |
/**
|
|
|
1461 |
* Set the timeout factor for the remaining lifetime of the session.
|
|
|
1462 |
*
|
|
|
1463 |
* @param int $factor A multiplication factor to use when calculating the timeout
|
|
|
1464 |
*/
|
|
|
1465 |
public function set_test_timeout_factor(int $factor = 1): void {
|
|
|
1466 |
$driver = $this->getSession()->getDriver();
|
|
|
1467 |
|
|
|
1468 |
if (!$driver instanceof \OAndreyev\Mink\Driver\WebDriver) {
|
|
|
1469 |
// This is a feature of the OAndreyev MinkWebDriver.
|
|
|
1470 |
return;
|
|
|
1471 |
}
|
|
|
1472 |
|
|
|
1473 |
// The standard curl timeout is 30 seconds.
|
|
|
1474 |
// Use get_real_timeout and multiply by the timeout factor to get the final timeout.
|
|
|
1475 |
$timeout = self::get_real_timeout(30) * 1000 * $factor;
|
|
|
1476 |
$driver->getWebDriver()->getCommandExecutor()->setRequestTimeout($timeout);
|
|
|
1477 |
}
|
|
|
1478 |
|
|
|
1479 |
/**
|
|
|
1480 |
* Get the course category id from an identifier.
|
|
|
1481 |
*
|
|
|
1482 |
* The category idnumber, and name are checked.
|
|
|
1483 |
*
|
|
|
1484 |
* @param string $identifier
|
|
|
1485 |
* @return int|null
|
|
|
1486 |
*/
|
|
|
1487 |
protected function get_category_id(string $identifier): ?int {
|
|
|
1488 |
global $DB;
|
|
|
1489 |
|
|
|
1490 |
$sql = <<<EOF
|
|
|
1491 |
SELECT id
|
|
|
1492 |
FROM {course_categories}
|
|
|
1493 |
WHERE idnumber = :idnumber
|
|
|
1494 |
OR name = :name
|
|
|
1495 |
EOF;
|
|
|
1496 |
|
|
|
1497 |
$result = $DB->get_field_sql($sql, [
|
|
|
1498 |
'idnumber' => $identifier,
|
|
|
1499 |
'name' => $identifier,
|
|
|
1500 |
]);
|
|
|
1501 |
|
|
|
1502 |
return $result ?: null;
|
|
|
1503 |
}
|
|
|
1504 |
|
|
|
1505 |
/**
|
|
|
1506 |
* Get the course id from an identifier.
|
|
|
1507 |
*
|
|
|
1508 |
* The course idnumber, shortname, and fullname are checked.
|
|
|
1509 |
*
|
|
|
1510 |
* @param string $identifier
|
|
|
1511 |
* @return int|null
|
|
|
1512 |
*/
|
|
|
1513 |
protected function get_course_id(string $identifier): ?int {
|
|
|
1514 |
global $DB;
|
|
|
1515 |
|
|
|
1516 |
$sql = <<<EOF
|
|
|
1517 |
SELECT id
|
|
|
1518 |
FROM {course}
|
|
|
1519 |
WHERE idnumber = :idnumber
|
|
|
1520 |
OR shortname = :shortname
|
|
|
1521 |
OR fullname = :fullname
|
|
|
1522 |
EOF;
|
|
|
1523 |
|
|
|
1524 |
$result = $DB->get_field_sql($sql, [
|
|
|
1525 |
'idnumber' => $identifier,
|
|
|
1526 |
'shortname' => $identifier,
|
|
|
1527 |
'fullname' => $identifier,
|
|
|
1528 |
]);
|
|
|
1529 |
|
|
|
1530 |
return $result ?: null;
|
|
|
1531 |
}
|
|
|
1532 |
|
|
|
1533 |
/**
|
|
|
1534 |
* Get the activity course module id from its idnumber.
|
|
|
1535 |
*
|
|
|
1536 |
* Note: Only idnumber is supported here, not name at this time.
|
|
|
1537 |
*
|
|
|
1538 |
* @param string $identifier
|
|
|
1539 |
* @return cm_info|null
|
|
|
1540 |
*/
|
|
|
1541 |
protected function get_course_module_for_identifier(string $identifier): ?cm_info {
|
|
|
1542 |
global $DB;
|
|
|
1543 |
|
|
|
1544 |
$coursetable = new \core\dml\table('course', 'c', 'c');
|
|
|
1545 |
$courseselect = $coursetable->get_field_select();
|
|
|
1546 |
$coursefrom = $coursetable->get_from_sql();
|
|
|
1547 |
|
|
|
1548 |
$cmtable = new \core\dml\table('course_modules', 'cm', 'cm');
|
|
|
1549 |
$cmfrom = $cmtable->get_from_sql();
|
|
|
1550 |
|
|
|
1551 |
$sql = <<<EOF
|
|
|
1552 |
SELECT {$courseselect}, cm.id as cmid
|
|
|
1553 |
FROM {$cmfrom}
|
|
|
1554 |
INNER JOIN {$coursefrom} ON c.id = cm.course
|
|
|
1555 |
WHERE cm.idnumber = :idnumber
|
|
|
1556 |
EOF;
|
|
|
1557 |
|
|
|
1558 |
$result = $DB->get_record_sql($sql, [
|
|
|
1559 |
'idnumber' => $identifier,
|
|
|
1560 |
]);
|
|
|
1561 |
|
|
|
1562 |
if ($result) {
|
|
|
1563 |
$course = $coursetable->extract_from_result($result);
|
|
|
1564 |
return get_fast_modinfo($course)->get_cm($result->cmid);
|
|
|
1565 |
}
|
|
|
1566 |
|
|
|
1567 |
return null;
|
|
|
1568 |
}
|
|
|
1569 |
|
|
|
1570 |
/**
|
|
|
1571 |
* Get a coursemodule from an activity name or idnumber.
|
|
|
1572 |
*
|
|
|
1573 |
* @param string $activity
|
|
|
1574 |
* @param string $identifier
|
|
|
1575 |
* @return cm_info
|
|
|
1576 |
*/
|
|
|
1577 |
protected function get_cm_by_activity_name(string $activity, string $identifier): cm_info {
|
|
|
1578 |
global $DB;
|
|
|
1579 |
|
|
|
1580 |
$coursetable = new \core\dml\table('course', 'c', 'c');
|
|
|
1581 |
$courseselect = $coursetable->get_field_select();
|
|
|
1582 |
$coursefrom = $coursetable->get_from_sql();
|
|
|
1583 |
|
|
|
1584 |
$cmtable = new \core\dml\table('course_modules', 'cm', 'cm');
|
|
|
1585 |
$cmfrom = $cmtable->get_from_sql();
|
|
|
1586 |
|
|
|
1587 |
$acttable = new \core\dml\table($activity, 'a', 'a');
|
|
|
1588 |
$actselect = $acttable->get_field_select();
|
|
|
1589 |
$actfrom = $acttable->get_from_sql();
|
|
|
1590 |
|
|
|
1591 |
$sql = <<<EOF
|
|
|
1592 |
SELECT cm.id as cmid, {$courseselect}, {$actselect}
|
|
|
1593 |
FROM {$cmfrom}
|
|
|
1594 |
INNER JOIN {$coursefrom} ON c.id = cm.course
|
|
|
1595 |
INNER JOIN {modules} m ON m.id = cm.module AND m.name = :modname
|
|
|
1596 |
INNER JOIN {$actfrom} ON cm.instance = a.id
|
|
|
1597 |
WHERE cm.idnumber = :idnumber OR a.name = :name
|
|
|
1598 |
EOF;
|
|
|
1599 |
|
|
|
1600 |
$result = $DB->get_record_sql($sql, [
|
|
|
1601 |
'modname' => $activity,
|
|
|
1602 |
'idnumber' => $identifier,
|
|
|
1603 |
'name' => $identifier,
|
|
|
1604 |
], MUST_EXIST);
|
|
|
1605 |
|
|
|
1606 |
$course = $coursetable->extract_from_result($result);
|
|
|
1607 |
$instancedata = $acttable->extract_from_result($result);
|
|
|
1608 |
|
|
|
1609 |
return get_fast_modinfo($course)->get_cm($result->cmid);
|
|
|
1610 |
}
|
|
|
1611 |
|
|
|
1612 |
/**
|
|
|
1613 |
* Check whether any of the tags availble to the current scope match using the given callable.
|
|
|
1614 |
*
|
|
|
1615 |
* This function is typically called from within a Behat Hook, such as BeforeFeature, BeforeScenario, AfterStep, etc.
|
|
|
1616 |
*
|
|
|
1617 |
* The callable is used as the second argument to `array_filter()`, and is passed a single string argument for each of the
|
|
|
1618 |
* tags available in the scope.
|
|
|
1619 |
*
|
|
|
1620 |
* The tags passed will include:
|
|
|
1621 |
* - For a FeatureScope, the Feature tags only
|
|
|
1622 |
* - For a ScenarioScope, the Feature and Scenario tags
|
|
|
1623 |
* - For a StepScope, the Feature, Scenario, and Step tags
|
|
|
1624 |
*
|
|
|
1625 |
* An example usage may be:
|
|
|
1626 |
*
|
|
|
1627 |
* // Note: phpDoc beforeStep attribution not shown.
|
|
|
1628 |
* public function before_step(StepScope $scope) {
|
|
|
1629 |
* $callback = function (string $tag): bool {
|
|
|
1630 |
* return $tag === 'editor_atto' || substr($tag, 0, 5) === 'atto_';
|
|
|
1631 |
* };
|
|
|
1632 |
*
|
|
|
1633 |
* if (!self::scope_tags_match($scope, $callback)) {
|
|
|
1634 |
* return;
|
|
|
1635 |
* }
|
|
|
1636 |
*
|
|
|
1637 |
* // Do something here.
|
|
|
1638 |
* }
|
|
|
1639 |
*
|
|
|
1640 |
* @param HookScope $scope The scope to check
|
|
|
1641 |
* @param callable $callback The callable to use to check the scope
|
|
|
1642 |
* @return boolean Whether any of the scope tags match
|
|
|
1643 |
*/
|
|
|
1644 |
public static function scope_tags_match(HookScope $scope, callable $callback): bool {
|
|
|
1645 |
$tags = [];
|
|
|
1646 |
|
|
|
1647 |
if (is_subclass_of($scope, \Behat\Behat\Hook\Scope\FeatureScope::class)) {
|
|
|
1648 |
$tags = $scope->getFeature()->getTags();
|
|
|
1649 |
}
|
|
|
1650 |
|
|
|
1651 |
if (is_subclass_of($scope, \Behat\Behat\Hook\Scope\ScenarioScope::class)) {
|
|
|
1652 |
$tags = array_merge(
|
|
|
1653 |
$scope->getFeature()->getTags(),
|
|
|
1654 |
$scope->getScenario()->getTags()
|
|
|
1655 |
);
|
|
|
1656 |
}
|
|
|
1657 |
|
|
|
1658 |
if (is_subclass_of($scope, \Behat\Behat\Hook\Scope\StepScope::class)) {
|
|
|
1659 |
$tags = array_merge(
|
|
|
1660 |
$scope->getFeature()->getTags(),
|
|
|
1661 |
$scope->getScenario()->getTags(),
|
|
|
1662 |
$scope->getStep()->getTags()
|
|
|
1663 |
);
|
|
|
1664 |
}
|
|
|
1665 |
|
|
|
1666 |
$matches = array_filter($tags, $callback);
|
|
|
1667 |
|
|
|
1668 |
return !empty($matches);
|
|
|
1669 |
}
|
|
|
1670 |
|
|
|
1671 |
/**
|
|
|
1672 |
* Get the user id from an identifier.
|
|
|
1673 |
*
|
|
|
1674 |
* The user username and email fields are checked.
|
|
|
1675 |
*
|
|
|
1676 |
* @param string $identifier The user's username or email.
|
|
|
1677 |
* @return int|null The user id or null if not found.
|
|
|
1678 |
*/
|
|
|
1679 |
protected function get_user_id_by_identifier(string $identifier): ?int {
|
|
|
1680 |
global $DB;
|
|
|
1681 |
|
|
|
1682 |
$sql = <<<EOF
|
|
|
1683 |
SELECT id
|
|
|
1684 |
FROM {user}
|
|
|
1685 |
WHERE username = :username
|
|
|
1686 |
OR email = :email
|
|
|
1687 |
EOF;
|
|
|
1688 |
|
|
|
1689 |
$result = $DB->get_field_sql($sql, [
|
|
|
1690 |
'username' => $identifier,
|
|
|
1691 |
'email' => $identifier,
|
|
|
1692 |
]);
|
|
|
1693 |
|
|
|
1694 |
return $result ?: null;
|
|
|
1695 |
}
|
|
|
1696 |
}
|