Rev 1 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
require_once(__DIR__ . '/../../../../../lib/behat/behat_base.php');
/**
* Behat step definitions for the grader report
*
* @package gradereport_grader
* @category test
* @copyright 2015 Oakland University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class behat_gradereport_grader extends behat_base {
/**
* Gets the user id from its name.
*
* @throws Exception
* @param string $name
* @return int
*/
protected function get_user_id($name) {
global $DB;
$names = explode(' ', $name);
if (!$id = $DB->get_field('user', 'id', array('firstname' => $names[0], 'lastname' => $names[1]))) {
throw new Exception('The specified user with username "' . $name . '" does not exist');
}
return $id;
}
/**
* @deprecated since 4.2
*/
#[\core\attribute\deprecated('behat_grades::get_grade_item_id', since: '4.2', mdl: 'MDL-77033', final: true)]
protected function get_grade_item_id() {
\core\deprecation::emit_deprecation([self::class, __FUNCTION__]);
}
/**
* Clicks on given user menu.
*
* @Given /^I click on user menu "([^"]*)"$/
* @param string $student
*/
public function i_click_on_user_menu(string $student) {
$xpath = $this->get_user_selector($student);
$this->execute("behat_general::i_click_on", array($this->escape($xpath), "xpath_element"));
}
/**
* Gets unique xpath selector for a user.
*
* @throws Exception
* @param string $student
* @return string
*/
protected function get_user_selector(string $student): string {
$userid = $this->get_user_id($student);
return "//table[@id='user-grades']//*[@data-type='user'][@data-id='" . $userid . "']";
}
/**
* Clicks on given user profile field menu.
*
* @Given /^I click on user profile field menu "([^"]*)"$/
* @param string $field
*/
public function i_click_on_user_profile_field_menu(string $field) {
$xpath = "//table[@id='user-grades']//*[@data-type='" . mb_strtolower($field) . "']";
$this->execute("behat_general::i_click_on", array($this->escape($xpath), "xpath_element"));
}
/**
* Return the list of partial named selectors.
*
* @return array
*/
public static function get_partial_named_selectors(): array {
return [
new behat_component_named_selector(
'collapse search',
[".//*[contains(concat(' ', @class, ' '), ' collapsecolumndropdown ')]"]
),
];
}
}