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 * Behat grade related steps definitions.
20 * @package core_grades
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\Behat\Context\Step\Given as Given,
31 Behat\Gherkin\Node\TableNode as TableNode;
33 class behat_grade extends behat_base {
36 * Enters a grade via the gradebook for a specific grade item and user when viewing the 'Grader report' with editing mode turned on.
38 * @Given /^I give the grade "(?P<grade_number>(?:[^"]|\\")*)" to the user "(?P<username_string>(?:[^"]|\\")*)" for the grade item "(?P<grade_activity_string>(?:[^"]|\\")*)"$/
40 * @param string $userfullname the user's fullname as returned by fullname()
41 * @param string $itemname
44 public function i_give_the_grade($grade, $userfullname, $itemname) {
45 $gradelabel = $userfullname . ' ' . $itemname;
46 $fieldstr = get_string('useractivitygrade', 'gradereport_grader', $gradelabel);
48 return new Given('I set the field "' . $this->escape($fieldstr) . '" to "' . $grade . '"');
52 * Enters a quick feedback via the gradebook for a specific grade item and user when viewing
53 * the 'Grader report' with editing mode turned on.
55 * @Given /^I give the feedback "(?P<grade_number>(?:[^"]|\\")*)" to the user "(?P<username_string>(?:[^"]|\\")*)" for the grade item "(?P<grade_activity_string>(?:[^"]|\\")*)"$/
56 * @param string $feedback
57 * @param string $userfullname the user's fullname as returned by fullname()
58 * @param string $itemname
61 public function i_give_the_feedback($feedback, $userfullname, $itemname) {
62 $gradelabel = $userfullname . ' ' . $itemname;
63 $fieldstr = get_string('useractivityfeedback', 'gradereport_grader', $gradelabel);
65 return new Given('I set the field "' . $this->escape($fieldstr) . '" to "' . $this->escape($feedback) . '"');
69 * Changes the settings of a grade item or category or the course.
71 * Teacher must be either on the grade setup page or on the Grader report page with editing mode turned on.
73 * @Given /^I set the following settings for grade item "(?P<grade_item_string>(?:[^"]|\\")*)":$/
74 * @param string $gradeitem
75 * @param TableNode $data
78 public function i_set_the_following_settings_for_grade_item($gradeitem, TableNode $data) {
81 $gradeitem = $this->getSession()->getSelectorsHandler()->xpathLiteral($gradeitem);
83 if ($this->running_javascript()) {
84 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]//a[contains(@class,'toggle-display')]";
85 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
86 $steps[] = new Given('I click on "' . $this->escape($xpath) . '" "xpath_element"');
90 $savechanges = get_string('savechanges', 'grades');
91 $edit = $this->getSession()->getSelectorsHandler()->xpathLiteral(get_string('edit') . ' ');
92 $linkxpath = "//a[./img[starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
93 $steps[] = new Given('I click on "' . $this->escape($linkxpath) . '" "xpath_element"');
94 $steps[] = new Given('I set the following fields to these values:', $data);
95 $steps[] = new Given('I press "' . $this->escape($savechanges) . '"');
100 * Sets a calculated manual grade item. Needs a table with item name - idnumber relation.
101 * The step requires you to be in the 'Gradebook setup' page.
103 * @Given /^I set "(?P<calculation_string>(?:[^"]|\\")*)" calculation for grade item "(?P<grade_item_string>(?:[^"]|\\")*)" with idnumbers:$/
104 * @param string $calculation The calculation.
105 * @param string $gradeitem The grade item name.
106 * @param TableNode $TableNode The grade item name - idnumbers relation.
109 public function i_set_calculation_for_grade_item_with_idnumbers($calculation, $gradeitem, TableNode $data) {
112 $gradeitem = $this->getSession()->getSelectorsHandler()->xpathLiteral($gradeitem);
114 if ($this->running_javascript()) {
115 $xpath = "//tr[contains(.,$gradeitem)]//*[contains(@class,'moodle-actionmenu')]//a[contains(@class,'toggle-display')]";
116 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
117 $steps[] = new Given('I click on "' . $this->escape($xpath) . '" "xpath_element"');
121 // Going to edit calculation.
122 $savechanges = get_string('savechanges', 'grades');
123 $edit = $this->getSession()->getSelectorsHandler()->xpathLiteral(get_string('editcalculation', 'grades'));
124 $linkxpath = "//a[./img[starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
125 $steps[] = new Given('I click on "' . $this->escape($linkxpath) . '" "xpath_element"');
127 // After adding id numbers we should wait until the page is reloaded.
128 if ($this->running_javascript()) {
129 $steps[] = new Given('I wait until the page is ready');
132 // Mapping names to idnumbers.
133 $datahash = $data->getRowsHash();
134 foreach ($datahash as $gradeitem => $idnumber) {
135 // This xpath looks for course, categories and items with the provided name.
136 // Grrr, we can't equal in categoryitem and courseitem because there is a line jump...
137 $inputxpath ="//input[@class='idnumber'][" .
138 "parent::li[@class='item'][text()='" . $gradeitem . "']" .
140 "parent::li[@class='categoryitem' or @class='courseitem']/parent::ul/parent::li[starts-with(text(),'" . $gradeitem . "')]" .
142 $steps[] = new Given('I set the field with xpath "' . $inputxpath . '" to "' . $idnumber . '"');
145 $steps[] = new Given('I press "' . get_string('addidnumbers', 'grades') . '"');
147 // After adding id numbers we should wait until the page is reloaded.
148 if ($this->running_javascript()) {
149 $steps[] = new Given('I wait until the page is ready');
152 $steps[] = new Given('I set the field "' . get_string('calculation', 'grades') . '" to "' . $calculation . '"');
153 $steps[] = new Given('I press "' . $savechanges . '"');
159 * Sets a calculated manual grade category total. Needs a table with item name - idnumber relation.
160 * The step requires you to be in the 'Gradebook setup' page.
162 * @Given /^I set "(?P<calculation_string>(?:[^"]|\\")*)" calculation for grade category "(?P<grade_item_string>(?:[^"]|\\")*)" with idnumbers:$/
163 * @param string $calculation The calculation.
164 * @param string $gradeitem The grade item name.
165 * @param TableNode $data The grade item name - idnumbers relation.
168 public function i_set_calculation_for_grade_category_with_idnumbers($calculation, $gradeitem, TableNode $data) {
171 $gradecategorytotal = $this->getSession()->getSelectorsHandler()->xpathLiteral($gradeitem . ' total');
172 $gradeitem = $this->getSession()->getSelectorsHandler()->xpathLiteral($gradeitem);
174 if ($this->running_javascript()) {
175 $xpath = "//tr[contains(.,$gradecategorytotal)]//*[contains(@class,'moodle-actionmenu')]" .
176 "//a[contains(@class,'toggle-display')]";
177 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
178 $steps[] = new Given('I click on "' . $this->escape($xpath) . '" "xpath_element"');
182 // Going to edit calculation.
183 $savechanges = get_string('savechanges', 'grades');
184 $edit = $this->getSession()->getSelectorsHandler()->xpathLiteral(get_string('editcalculation', 'grades'));
185 $linkxpath = "//a[./img[starts-with(@title,$edit) and contains(@title,$gradeitem)]]";
186 $steps[] = new Given('I click on "' . $this->escape($linkxpath) . '" "xpath_element"');
188 // After adding id numbers we should wait until the page is reloaded.
189 $steps[] = new Given('I wait until the page is ready');
191 // Mapping names to idnumbers.
192 $datahash = $data->getRowsHash();
193 foreach ($datahash as $gradeitem => $idnumber) {
194 // This xpath looks for course, categories and items with the provided name.
195 // Grrr, we can't equal in categoryitem and courseitem because there is a line jump...
196 $inputxpath = "//input[@class='idnumber'][" .
197 "parent::li[@class='item'][text()='" . $gradeitem . "']" .
199 "parent::li[@class='categoryitem' | @class='courseitem']" .
200 "/parent::ul/parent::li[starts-with(text(),'" . $gradeitem . "')]" .
202 $steps[] = new Given('I set the field with xpath "' . $inputxpath . '" to "' . $idnumber . '"');
205 $steps[] = new Given('I press "' . get_string('addidnumbers', 'grades') . '"');
207 // After adding id numbers we should wait until the page is reloaded.
208 $steps[] = new Given('I wait until the page is ready');
210 $steps[] = new Given('I set the field "' . get_string('calculation', 'grades') . '" to "' . $calculation . '"');
211 $steps[] = new Given('I press "' . $savechanges . '"');
217 * Resets the weights for the grade category
219 * Teacher must be on the grade setup page.
221 * @Given /^I reset weights for grade category "(?P<grade_item_string>(?:[^"]|\\")*)"$/
225 public function i_reset_weights_for_grade_category($gradeitem) {
229 if ($this->running_javascript()) {
230 $gradeitemliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($gradeitem);
231 $xpath = "//tr[contains(.,$gradeitemliteral)]//*[contains(@class,'moodle-actionmenu')]//a[contains(@class,'toggle-display')]";
232 if ($this->getSession()->getPage()->findAll('xpath', $xpath)) {
233 $steps[] = new Given('I click on "' . $this->escape($xpath) . '" "xpath_element"');
237 $linktext = get_string('resetweights', 'grades', (object)array('itemname' => $gradeitem));
238 $steps[] = new Given('I click on "' . $this->escape($linktext) . '" "link"');
243 * Step allowing to test before-the-fix behaviour of the gradebook
245 * @Given /^gradebook calculations for the course "(?P<coursename_string>(?:[^"]|\\")*)" are frozen at version "(?P<version_string>(?:[^"]|\\")*)"$/
246 * @param string $coursename
247 * @param string $version
250 public function gradebook_calculations_for_the_course_are_frozen_at_version($coursename, $version) {
252 $courseid = $DB->get_field('course', 'id', array('shortname' => $coursename), MUST_EXIST);
253 set_config('gradebook_calculations_freeze_' . $courseid, $version);