芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/user/tests/behat/behat_user.php
. /** * User steps definition. * * @package core_user * @category test * @copyright 2017 Damyon Wiese * @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__ . '/../../../lib/behat/behat_base.php'); use Behat\Mink\Exception\ExpectationException as ExpectationException; /** * Steps definitions for users. * * @package core_user * @category test * @copyright 2017 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class behat_user extends behat_base { /** * Choose from the bulk action menu. * * @Given /^I choose "(?P
(?:[^"]|\\")*)" from the participants page bulk action menu$/ * @param string $nodetext The menu item to select. */ public function i_choose_from_the_participants_page_bulk_action_menu($nodetext) { $this->execute("behat_forms::i_set_the_field_to", [ "With selected users...", $this->escape($nodetext) ]); } /** * The input field should have autocomplete set to this value. * * @Then /^the field "(?P
(?:[^"]|\\")*)" should have purpose "(?P
(?:[^"]|\\")*)"$/ * @param string $field The field to select. * @param string $purpose The expected purpose. */ public function the_field_should_have_purpose($field, $purpose) { $fld = behat_field_manager::get_form_field_from_label($field, $this); $value = $fld->get_attribute('autocomplete'); if ($value != $purpose) { $reason = 'The "' . $field . '" field does not have purpose "' . $purpose . '"'; throw new ExpectationException($reason, $this->getSession()); } } /** * The input field should not have autocomplete set to this value. * * @Then /^the field "(?P
(?:[^"]|\\")*)" should not have purpose "(?P
(?:[^"]|\\")*)"$/ * @param string $field The field to select. * @param string $purpose The expected purpose we do not want. */ public function the_field_should_not_have_purpose($field, $purpose) { $fld = behat_field_manager::get_form_field_from_label($field, $this); $value = $fld->get_attribute('autocomplete'); if ($value == $purpose) { throw new ExpectationException('The "' . $field . '" field does have purpose "' . $purpose . '"', $this->getSession()); } } }