MDL-74925 course: use the correct 'remove' action
[moodle.git] / grade / tests / behat / behat_grade.php
blobb44ea5562a6088ffba514322efab6142931c94bb
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.
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/>.
17 /**
18 * Behat grade related steps definitions.
20 * @package core_grades
21 * @category test
22 * @copyright 2014 Mark Nelson <markn@moodle.com>
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');
30 use Behat\Gherkin\Node\TableNode as TableNode;
32 class behat_grade extends behat_base {
34 /**
35 * Enters a grade via the gradebook for a specific grade item and user when viewing the 'Grader report' with editing mode turned on.
37 * @Given /^I give the grade "(?P<grade_number>(?:[^"]|\\")*)" to the user "(?P<username_string>(?:[^"]|\\")*)" for the grade item "(?P<grade_activity_string>(?:[^"]|\\")*)"$/
38 * @param int $grade
39 * @param string $userfullname the user's fullname as returned by fullname()
40 * @param string $itemname
42 public function i_give_the_grade($grade, $userfullname, $itemname) {
43 $gradelabel = $userfullname . ' ' . $itemname;
44 $fieldstr = get_string('useractivitygrade', 'gradereport_grader', $gradelabel);
46 $this->execute('behat_forms::i_set_the_field_to', array($this->escape($fieldstr), $grade));
49 /**
50 * Enters a quick feedback via the gradebook for a specific grade item and user when viewing
51 * the 'Grader report' with editing mode turned on.
53 * @Given /^I give the feedback "(?P<grade_number>(?:[^"]|\\")*)" to the user "(?P<username_string>(?:[^"]|\\")*)" for the grade item "(?P<grade_activity_string>(?:[^"]|\\")*)"$/
54 * @param string $feedback
55 * @param string $userfullname the user's fullname as returned by fullname()
56 * @param string $itemname
58 public function i_give_the_feedback($feedback, $userfullname, $itemname) {
59 $gradelabel = $userfullname . ' ' . $itemname;
60 $fieldstr = get_string('useractivityfeedback', 'gradereport_grader', $gradelabel);
62 $this->execute('behat_forms::i_set_the_field_to', array($this->escape($fieldstr), $this->escape($feedback)));
65 /**
66 * Changes the settings of a grade item or category or the course.
68 * Teacher must be either on the grade setup page or on the Grader report page with editing mode turned on.
70 * @Given /^I set the following settings for grade item "(?P<grade_item_string>(?:[^"]|\\")*)":$/
71 * @param string $gradeitem
72 * @param TableNode $data
74 public function i_set_the_following_settings_for_grade_item($gradeitem, TableNode $data) {
76 $gradeitem = behat_context_helper::escape($gradeitem);
78 if ($this->running_javascript()) {
79 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]";
80 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
81 $this->execute("behat_action_menu::i_open_the_action_menu_in",
82 array("//tr[contains(.,$gradeitem)]",
83 "xpath_element"));
87 $savechanges = get_string('savechanges', 'grades');
88 $edit = behat_context_helper::escape(get_string('edit') . ' ');
89 $linkxpath = "//a[./*[contains(concat(' ', normalize-space(@class), ' '), ' icon ') " .
90 "and starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
92 $this->execute("behat_general::i_click_on", array($this->escape($linkxpath), "xpath_element"));
93 $this->execute("behat_forms::i_set_the_following_fields_to_these_values", $data);
94 $this->execute('behat_forms::press_button', $this->escape($savechanges));
97 /**
98 * Hids a grade item or category.
100 * Teacher must be on the grade setup page.
102 * @Given /^I hide the grade item "(?P<grade_item_string>(?:[^"]|\\")*)"$/
103 * @param string $gradeitem
105 public function i_hide_the_grade_item($gradeitem) {
107 $gradeitem = behat_context_helper::escape($gradeitem);
109 if ($this->running_javascript()) {
110 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]//a[contains(@class,'toggle-display')]";
111 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
112 $this->execute("behat_general::i_click_on", array($this->escape($xpath), "xpath_element"));
116 $this->execute("behat_general::i_click_on_in_the", array(get_string('hide'), 'link',
117 "//tr[descendant::*[text() = " . $this->escape($gradeitem) . "]]", 'xpath_element'));
121 * Duplicates a grade item or category.
123 * Teacher must be on the grade setup page.
125 * @Given /^I duplicate the grade item "(?P<grade_item_string>(?:[^"]|\\")*)"$/
126 * @param string $gradeitem
128 public function i_duplicate_the_grade_item($gradeitem) {
130 $gradeitem = behat_context_helper::escape($gradeitem);
132 if ($this->running_javascript()) {
133 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]//a[contains(@class,'toggle-display')]";
134 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
135 $this->execute("behat_general::i_click_on", array($this->escape($xpath), "xpath_element"));
139 $this->execute("behat_general::i_click_on_in_the", array(get_string('duplicate'), 'link',
140 "//tr[descendant::*[text() = " . $this->escape($gradeitem) . "]]", 'xpath_element'));
144 * Sets a calculated manual grade item. Needs a table with item name - idnumber relation.
145 * The step requires you to be in the 'Gradebook setup' page.
147 * @Given /^I set "(?P<calculation_string>(?:[^"]|\\")*)" calculation for grade item "(?P<grade_item_string>(?:[^"]|\\")*)" with idnumbers:$/
148 * @param string $calculation The calculation.
149 * @param string $gradeitem The grade item name.
150 * @param TableNode $TableNode The grade item name - idnumbers relation.
152 public function i_set_calculation_for_grade_item_with_idnumbers($calculation, $gradeitem, TableNode $data) {
154 $gradeitem = behat_context_helper::escape($gradeitem);
156 if ($this->running_javascript()) {
157 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]";
158 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
159 $this->execute("behat_action_menu::i_open_the_action_menu_in",
160 array("//tr[contains(.,$gradeitem)]",
161 "xpath_element"));
165 // Going to edit calculation.
166 $savechanges = get_string('savechanges', 'grades');
167 $edit = behat_context_helper::escape(get_string('editcalculation', 'grades'));
168 $linkxpath = "//a[./*[contains(concat(' ', normalize-space(@class), ' '), ' icon ') " .
169 "and starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
170 $this->execute("behat_general::i_click_on", array($this->escape($linkxpath), "xpath_element"));
172 // Mapping names to idnumbers.
173 $datahash = $data->getRowsHash();
174 foreach ($datahash as $gradeitem => $idnumber) {
175 // This xpath looks for course, categories and items with the provided name.
176 // Grrr, we can't equal in categoryitem and courseitem because there is a line jump...
177 $inputxpath = "//input[@class='idnumber'][" .
178 "parent::li[@class='item'][text()='" . $gradeitem . "']" .
179 " or " .
180 "parent::li[@class='categoryitem' or @class='courseitem']" .
181 "/parent::ul/parent::li[starts-with(text(),'" . $gradeitem . "')]" .
182 "]";
183 $this->execute('behat_forms::i_set_the_field_with_xpath_to', array($inputxpath, $idnumber));
186 $this->execute('behat_forms::press_button', get_string('addidnumbers', 'grades'));
187 $this->execute('behat_forms::i_set_the_field_to', array(get_string('calculation', 'grades'), $calculation));
188 $this->execute('behat_forms::press_button', $savechanges);
193 * Sets a calculated manual grade category total. Needs a table with item name - idnumber relation.
194 * The step requires you to be in the 'Gradebook setup' page.
196 * @Given /^I set "(?P<calculation_string>(?:[^"]|\\")*)" calculation for grade category "(?P<grade_item_string>(?:[^"]|\\")*)" with idnumbers:$/
197 * @param string $calculation The calculation.
198 * @param string $gradeitem The grade item name.
199 * @param TableNode $data The grade item name - idnumbers relation.
201 public function i_set_calculation_for_grade_category_with_idnumbers($calculation, $gradeitem, TableNode $data) {
203 $gradecategorytotal = behat_context_helper::escape($gradeitem . ' total');
204 $gradeitem = behat_context_helper::escape($gradeitem);
206 if ($this->running_javascript()) {
207 $xpath = "//tr[contains(.,$gradecategorytotal)]//*[contains(@class,'moodle-actionmenu')]";
208 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
209 $xpath = "//tr[contains(.,$gradecategorytotal)]";
210 $this->execute("behat_action_menu::i_open_the_action_menu_in", array($xpath, "xpath_element"));
214 // Going to edit calculation.
215 $savechanges = get_string('savechanges', 'grades');
216 $edit = behat_context_helper::escape(get_string('editcalculation', 'grades'));
217 $linkxpath = "//a[./*[contains(concat(' ', normalize-space(@class), ' '), ' icon ') " .
218 "and starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
219 $this->execute("behat_general::i_click_on", array($this->escape($linkxpath), "xpath_element"));
221 // Mapping names to idnumbers.
222 $datahash = $data->getRowsHash();
223 foreach ($datahash as $gradeitem => $idnumber) {
224 // This xpath looks for course, categories and items with the provided name.
225 // Grrr, we can't equal in categoryitem and courseitem because there is a line jump...
226 $inputxpath = "//input[@class='idnumber'][" .
227 "parent::li[@class='item'][text()='" . $gradeitem . "']" .
228 " | " .
229 "parent::li[@class='categoryitem' or @class='courseitem']" .
230 "/parent::ul/parent::li[starts-with(text(),'" . $gradeitem . "')]" .
231 "]";
232 $this->execute('behat_forms::i_set_the_field_with_xpath_to', array($inputxpath, $idnumber));
235 $this->execute('behat_forms::press_button', get_string('addidnumbers', 'grades'));
237 $this->execute('behat_forms::i_set_the_field_to', array(get_string('calculation', 'grades'), $calculation));
238 $this->execute('behat_forms::press_button', $savechanges);
242 * Resets the weights for the grade category
244 * Teacher must be on the grade setup page.
246 * @Given /^I reset weights for grade category "(?P<grade_item_string>(?:[^"]|\\")*)"$/
247 * @param $gradeitem
249 public function i_reset_weights_for_grade_category($gradeitem) {
251 $steps = array();
253 if ($this->running_javascript()) {
254 $gradeitemliteral = behat_context_helper::escape($gradeitem);
255 $xpath = "//tr[contains(.,$gradeitemliteral)]//*[contains(@class,'moodle-actionmenu')]";
256 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
257 $xpath = "//tr[contains(.,$gradeitemliteral)]";
258 $this->execute("behat_action_menu::i_open_the_action_menu_in", array($xpath, "xpath_element"));
262 $linktext = get_string('resetweights', 'grades', (object)array('itemname' => $gradeitem));
263 $this->execute("behat_general::i_click_on", array($this->escape($linktext), "link"));
267 * Step allowing to test before-the-fix behaviour of the gradebook
269 * @Given /^gradebook calculations for the course "(?P<coursename_string>(?:[^"]|\\")*)" are frozen at version "(?P<version_string>(?:[^"]|\\")*)"$/
270 * @param string $coursename
271 * @param string $version
273 public function gradebook_calculations_for_the_course_are_frozen_at_version($coursename, $version) {
274 global $DB;
275 $courseid = $DB->get_field('course', 'id', array('shortname' => $coursename), MUST_EXIST);
276 set_config('gradebook_calculations_freeze_' . $courseid, $version);
280 * Select the tab in the gradebook. We must be on one of the gradebook pages already.
282 * @deprecated since 4.0 - use select_in_gradebook_navigation_selector() instead.
283 * @param string $gradepath examples: "View > User report", "Letters > View", "Scales"
285 protected function select_in_gradebook_tabs($gradepath) {
286 debugging('The function select_in_gradebook_tabs() is deprecated, please use ' .
287 'select_in_gradebook_navigation_selector() instead.', DEBUG_DEVELOPER);
289 $gradepath = preg_split('/\s*>\s*/', trim($gradepath));
290 if (count($gradepath) > 2) {
291 throw new coding_exception('Grade path is too long (must have no more than two items separated with ">")');
294 $xpath = '//div[contains(@class,\'grade-navigation\')]';
296 // If the first row of the grade-navigation tabs does not have $gradepath[0] as active tab, click on it.
297 $link = '\'' . $this->escape($gradepath[0]) . '\'';
298 $xpathrow1 = $xpath . '//ul[1]//*[contains(@class,\'active\') and contains(normalize-space(.), ' . $link . ')]';
299 if (!$this->getSession()->getPage()->findAll('xpath', $xpathrow1)) {
300 $this->find('xpath', $xpath . '//ul[1]/li/a[text()=' . $link . ']')->click();
301 $this->wait_for_pending_js();
304 if (isset($gradepath[1])) {
305 // If the second row of the grade-navigation tabs does not have $gradepath[1] as active tab, click on it.
306 $link = '\'' . $this->escape($gradepath[1]) . '\'';
307 $xpathrow2 = $xpath . '//ul[2]//*[contains(@class,\'active\') and contains(normalize-space(.), ' . $link . ')]';
308 if (!$this->getSession()->getPage()->findAll('xpath', $xpathrow2)) {
309 $this->find('xpath', $xpath . '//ul[2]/li/a[text()=' . $link . ']')->click();
310 $this->wait_for_pending_js();
316 * Navigates to the course gradebook and selects the specified item from the general grade navigation selector.
318 * Examples:
319 * - I navigate to "Setup > Gradebook setup" in the course gradebook
320 * - I navigate to "Scales" in the course gradebook
321 * - I navigate to "More > Grade letters" in the course gradebook
323 * @Given /^I navigate to "(?P<gradepath_string>(?:[^"]|\\")*)" in the course gradebook$/
324 * @param string $gradepath The path string. If the path has two items (ex. "More > Grade letters"), the first item
325 * ("More") will be used to identify an option group in the navigation selector, while the
326 * second ("Grade letters") will be used to identify an option within that option group.
327 * Otherwise, a single item in a path (ex. "Scales") will be used to identify an option in
328 * the navigation selector regardless of the option group.
330 public function i_navigate_to_in_the_course_gradebook($gradepath) {
331 // If we are not on one of the gradebook pages already, follow "Grades" link in the navigation drawer.
332 $xpath = '//div[contains(@class,\'grade-navigation\')]';
333 if (!$this->getSession()->getPage()->findAll('xpath', $xpath)) {
334 $this->execute('behat_navigation::i_select_from_secondary_navigation', get_string('grades'));
337 $this->select_in_gradebook_navigation_selector($gradepath, 'gradesactionselect');
341 * Navigates to the imports page in the course gradebook and selects the specified import type from the grade
342 * imports navigation selector.
344 * Examples:
345 * - I navigate to "CSV file" import page in the course gradebook
347 * @Given /^I navigate to "(?P<importoption_string>(?:[^"]|\\")*)" import page in the course gradebook$/
348 * @param string $gradeimportoption The name of an existing grade import option.
350 public function i_navigate_to_import_page_in_the_course_gradebook($gradeimportoption) {
351 $this->i_navigate_to_in_the_course_gradebook("More > Import");
352 $this->select_in_gradebook_navigation_selector($gradeimportoption, 'gradesimportactionselect');
356 * Navigates to the exports page in the course gradebook and selects the specified export type from the grade
357 * exports navigation selector.
359 * Examples:
360 * - I navigate to "XML file" export page in the course gradebook
362 * @Given /^I navigate to "(?P<exportoption_string>(?:[^"]|\\")*)" export page in the course gradebook$/
363 * @param string $gradeexportoption The name of an existing grade export option.
365 public function i_navigate_to_export_page_in_the_course_gradebook($gradeexportoption) {
366 $this->i_navigate_to_in_the_course_gradebook("More > Export");
367 $this->select_in_gradebook_navigation_selector($gradeexportoption, 'gradesexportactionselect');
371 * Select a given option from a navigation URL selector in the gradebook. We must be on one of the gradebook pages
372 * already.
374 * @param string $path The string path that is used to identify an item within the navigation selector. If the path
375 * has two items (ex. "More > Grade letters"), the first item ("More") will be used to identify
376 * an option group in the navigation selector, while the second ("Grade letters") will be used to
377 * identify an option within that option group. Otherwise, a single item in a path (ex. "Scales")
378 * will be used to identify an option in the navigation selector regardless of the option group.
379 * @param string $formid The ID of the form element which contains the navigation URL selector element.
381 protected function select_in_gradebook_navigation_selector(string $path, string $formid) {
382 // Split the path string by ">".
383 $path = preg_split('/\s*>\s*/', trim($path));
385 // Make sure that the path does not have more than two items separated with ">".
386 if (count($path) > 2) {
387 throw new coding_exception('The path is too long (must have no more than two items separated with ">")');
390 // Get the select element.
391 $selectxpath = "//form[contains(@id,'{$formid}')]//select";
392 $select = $this->find('xpath', $selectxpath);
394 // Define the xpath to the option element depending on the provided path.
395 // If two items are provided in the path, the first item will be considered as an identifier of an existing
396 // option group in the select select element, while the second item will identify an existing option within
397 // that option group.
398 // If one item is provided in the path, this item will identify any existing option in the select element
399 // regardless of the option group. Also, this is useful when option elements are not a part of an option group
400 // which is possible.
401 if (count($path) === 2) {
402 $optionxpath = $selectxpath . '/optgroup[@label="' . $this->escape($path[0]) . '"]' .
403 '/option[contains(.,"' . $this->escape($path[1]) . '")]';
404 } else {
405 $optionxpath = $selectxpath . '//option[contains(.,"' . $this->escape($path[0]) . '")]';
408 // Get the option element that we are looking to select.
409 $option = $this->find('xpath', $optionxpath);
411 // Select the given option in the select element.
412 $field = behat_field_manager::get_field_instance('select', $select, $this->getSession());
413 $field->set_value($this->escape($option->getValue()));
415 if (!$this->running_javascript()) {
416 $this->execute('behat_general::i_click_on_in_the', [get_string('go'), 'button',
417 "#{$formid}", 'css_element']);