2 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
18 * Steps definitions related with administration.
22 * @copyright 2013 David Monllaó
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
28 require_once(__DIR__ . '/../../../lib/behat/behat_base.php');
29 require_once(__DIR__ . '/../../../lib/behat/behat_field_manager.php');
31 use Behat\Gherkin\Node\TableNode as TableNode,
32 Behat\Mink\Exception\ElementNotFoundException as ElementNotFoundException;
35 * Site administration level steps definitions.
39 * @copyright 2013 David Monllaó
40 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
42 class behat_admin extends behat_base {
45 * Sets the specified site settings. A table with | Setting label | value | is expected.
47 * @Given /^I set the following administration settings values:$/
48 * @param TableNode $table
50 public function i_set_the_following_administration_settings_values(TableNode $table) {
52 if (!$data = $table->getRowsHash()) {
56 foreach ($data as $label => $value) {
58 // We expect admin block to be visible, otherwise go to homepage.
59 if (!$this->getSession()->getPage()->find('css', '.block_settings')) {
60 $this->getSession()->visit($this->locate_path('/'));
61 $this->wait(self::TIMEOUT * 1000, self::PAGE_READY_JS);
65 $searchbox = $this->find_field(get_string('searchinsettings', 'admin'));
66 $searchbox->setValue($label);
67 $submitsearch = $this->find('css', 'form.adminsearchform input[type=submit]');
68 $submitsearch->press();
70 $this->wait(self::TIMEOUT * 1000, self::PAGE_READY_JS);
72 // Admin settings does not use the same DOM structure than other moodle forms
73 // but we also need to use lib/behat/form_field/* to deal with the different moodle form elements.
74 $exception = new ElementNotFoundException($this->getSession(), '"' . $label . '" administration setting ');
76 // The argument should be converted to an xpath literal.
77 $label = behat_context_helper::escape($label);
79 // Single element settings.
81 $fieldxpath = "//*[self::input | self::textarea | self::select][not(./@type = 'submit' or ./@type = 'image' or ./@type = 'hidden')]" .
82 "[@id=//label[contains(normalize-space(.), $label)]/@for or " .
83 "@id=//span[contains(normalize-space(.), $label)]/preceding-sibling::label[1]/@for]";
84 $fieldnode = $this->find('xpath', $fieldxpath, $exception);
86 $formfieldtypenode = $this->find('xpath', $fieldxpath . "/ancestor::div[@class='form-setting']" .
87 "/child::div[contains(concat(' ', @class, ' '), ' form-')]/child::*/parent::div");
89 } catch (ElementNotFoundException $e) {
91 // Multi element settings, interacting only the first one.
92 $fieldxpath = "//*[label[normalize-space(.)= $label]|span[normalize-space(.)= $label]]/" .
93 "ancestor::div[contains(concat(' ', normalize-space(@class), ' '), ' form-item ')]" .
94 "/descendant::div[@class='form-group']/descendant::*[self::input | self::textarea | self::select]" .
95 "[not(./@type = 'submit' or ./@type = 'image' or ./@type = 'hidden')]";
96 $fieldnode = $this->find('xpath', $fieldxpath);
98 // It is the same one that contains the type.
99 $formfieldtypenode = $fieldnode;
102 // Getting the class which contains the field type.
103 $classes = explode(' ', $formfieldtypenode->getAttribute('class'));
104 foreach ($classes as $class) {
105 if (substr($class, 0, 5) == 'form-') {
106 $type = substr($class, 5);
110 // Instantiating the appropiate field type.
111 $field = behat_field_manager::get_field_instance($type, $fieldnode, $this->getSession());
112 $field->set_value($value);
114 $this->find_button(get_string('savechanges'))->press();
119 * Sets the specified site settings. A table with | config | value | (optional)plugin | is expected.
121 * @Given /^the following config values are set as admin:$/
122 * @param TableNode $table
124 public function the_following_config_values_are_set_as_admin(TableNode $table) {
126 if (!$data = $table->getRowsHash()) {
130 foreach ($data as $config => $value) {
131 // Default plugin value is null.
134 if (is_array($value)) {
138 set_config($config, $value, $plugin);
143 * Waits with the provided params if we are running a JS session.
145 * @param int $timeout
146 * @param string $javascript
149 protected function wait($timeout, $javascript = false) {
150 if ($this->running_javascript()) {
151 $this->getSession()->wait($timeout, $javascript);