. /** * Files interactions with behat. * * Note that steps definitions files can not extend other steps definitions files, so * steps definitions which makes use of file attachments or filepicker should * extend behat_files instead of behat_base. * * @package core * @category test * @copyright 2013 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_base.php'); use Behat\Mink\Exception\ExpectationException as ExpectationException; /** * Files-related actions. * * Steps definitions related with filepicker or repositories should extend * this class instead of behat_base as it provides useful methods to deal * with the common filepicker issues. * * @package core * @category test * @copyright 2013 David MonllaĆ³ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class behat_files extends behat_base { /** * Gets the filepicker NodeElement. * * The filepicker field label is pointing to a hidden input which is * not recognized as a named selector, as it is hidden... * * @throws ExpectationException Thrown by behat_base::find * @param string $filepickerelement The filepicker form field label * @return NodeElement The hidden element node. */ protected function get_filepicker_node($filepickerelement) { // More info about the problem (in case there is a problem). $exception = new ExpectationException('"' . $filepickerelement . '" filepicker can not be found', $this->getSession()); // Gets the ffilemanager node specified by the locator which contains the filepicker container. $filepickercontainer = $this->find( 'xpath', "//input[./@id = //label[contains(normalize-space(string(.)), '" . $filepickerelement . "')]/@for] //ancestor::div[contains(concat(' ', normalize-space(@class), ' '), ' ffilemanager ') or contains(concat(' ', normalize-space(@class), ' '), ' ffilepicker ')]", $exception ); return $filepickercontainer; } /** * Performs $action on a filepicker container element (file or folder). * * It works together with open_element_contextual_menu * as this method needs the contextual menu to be opened. * * @throws ExpectationException Thrown by behat_base::find * @param string $action * @param ExpectationException $exception * @return void */ protected function perform_on_element($action, ExpectationException $exception) { // Finds the button inside the DOM, is a modal window, so should be unique. $classname = 'fp-file-' . $action; $button = $this->find('css', '.yui3-panel-focused button.' . $classname, $exception); $button->click(); } /** * Opens the contextual menu of a folder or a file. * * Works both in filepicker elements and when dealing with repository * elements inside modal windows. * * @throws ExpectationException Thrown by behat_base::find * @param string $name The name of the folder/file * @param string $filepickerelement The filepicker locator, the whole DOM if false * @return void */ protected function open_element_contextual_menu($name, $filepickerelement = false) { // If a filepicker is specified we restrict the search to the filepicker descendants. $containernode = false; $exceptionmsg = '"'.$name.'" element can not be found'; if ($filepickerelement) { $containernode = $this->get_filepicker_node($filepickerelement); $exceptionmsg = 'The "'.$filepickerelement.'" filepicker ' . $exceptionmsg; } $exception = new ExpectationException($exceptionmsg, $this->getSession()); // Get a filepicker element (folder or file). try { // First we look at the folder as we need to click on the contextual menu otherwise it would be opened. $node = $this->find( 'xpath', "//div[@class='fp-content'] //descendant::*[self::div | self::a][contains(concat(' ', normalize-space(@class), ' '), ' fp-file ')] [contains(concat(' ', normalize-space(@class), ' '), ' fp-folder ')][contains(normalize-space(string(.)), '" . $name . "')] //descendant::a[contains(concat(' ', normalize-space(@class), ' '), ' fp-contextmenu ')] ", $exception, $containernode ); } catch (ExpectationException $e) { // Here the contextual menu is hidden, we click on the thumbnail. $node = $this->find( 'xpath', "//div[@class='fp-content'] //descendant::*[self::div | self::a][contains(concat(' ', normalize-space(@class), ' '), ' fp-file ')][contains(normalize-space(string(.)), '" . $name . "')] //descendant::div[contains(concat(' ', normalize-space(@class), ' '), ' fp-thumbnail ')] ", false, $containernode ); } // Click opens the contextual menu when clicking on files. $node->click(); } /** * Opens the 'add file' modal window and selects the repository. * * @throws ExpectationException Thrown by behat_base::find * @param NodeElement $filepickernode The filepicker DOM node. * @param mixed $repositoryname The repo name. * @return void */ protected function open_add_file_window($filepickernode, $repositoryname) { $exception = new ExpectationException('No files can be added to the specified filepicker', $this->getSession()); // We should deal with single-file and multiple-file filepickers, // catching the exception thrown by behat_base::find() in case is not multiple try { // Looking for the add button inside the specified filepicker. $add = $this->find('css', 'div.fp-btn-add a', $exception, $filepickernode); } catch (Exception $e) { // Otherwise should be a single-file filepicker. $add = $this->find('css', 'input.fp-btn-choose', $exception, $filepickernode); } $add->click(); // Getting the repository link and opening it. $repoexception = new ExpectationException('The "' . $repositoryname . '" repository has not been found', $this->getSession()); // Here we don't need to look inside the selected filepicker because there can only be one modal window. $repositorylink = $this->find( 'xpath', "//div[contains(concat(' ', normalize-space(@class), ' '), ' fp-repo-area ')] //descendant::span[contains(concat(' ', normalize-space(@class), ' '), ' fp-repo-name ')] [contains(normalize-space(string(.)), '" . $repositoryname . "')]", $repoexception ); // Selecting the repo. $repositorylink->click(); } }