[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/admin/tests/behat/ -> behat_admin.php (source)

   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.
  13  //
  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/>.
  16  
  17  /**
  18   * Steps definitions related with administration.
  19   *
  20   * @package   core_admin
  21   * @category  test
  22   * @copyright 2013 David Monllaó
  23   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
  27  
  28  require_once (__DIR__ . '/../../../lib/behat/behat_base.php');
  29  require_once (__DIR__ . '/../../../lib/behat/behat_field_manager.php');
  30  
  31  use Behat\Gherkin\Node\TableNode as TableNode,
  32      Behat\Mink\Exception\ElementNotFoundException as ElementNotFoundException;
  33  
  34  /**
  35   * Site administration level steps definitions.
  36   *
  37   * @package    core_admin
  38   * @category   test
  39   * @copyright  2013 David Monllaó
  40   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  41   */
  42  class behat_admin extends behat_base {
  43  
  44      /**
  45       * Sets the specified site settings. A table with | Setting label | value | is expected.
  46       *
  47       * @Given /^I set the following administration settings values:$/
  48       * @param TableNode $table
  49       */
  50      public function i_set_the_following_administration_settings_values(TableNode $table) {
  51  
  52          if (!$data = $table->getRowsHash()) {
  53              return;
  54          }
  55  
  56          foreach ($data as $label => $value) {
  57  
  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);
  62              }
  63  
  64              // Search by label.
  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();
  69  
  70              $this->wait(self::TIMEOUT * 1000, self::PAGE_READY_JS);
  71  
  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 ');
  75  
  76              // The argument should be converted to an xpath literal.
  77              $label = behat_context_helper::escape($label);
  78  
  79              // Single element settings.
  80              try {
  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);
  85  
  86                  $formfieldtypenode = $this->find('xpath', $fieldxpath . "/ancestor::div[@class='form-setting']" .
  87                      "/child::div[contains(concat(' ', @class, ' '),  ' form-')]/child::*/parent::div");
  88  
  89              } catch (ElementNotFoundException $e) {
  90  
  91                  // Multi element settings, interacting only the first one.
  92                  $fieldxpath = "//*[label[.= $label]|span[.= $label]]/ancestor::div[contains(concat(' ', normalize-space(@class), ' '), ' form-item ')]" .
  93                      "/descendant::div[@class='form-group']/descendant::*[self::input | self::textarea | self::select][not(./@type = 'submit' or ./@type = 'image' or ./@type = 'hidden')]";
  94                  $fieldnode = $this->find('xpath', $fieldxpath);
  95  
  96                  // It is the same one that contains the type.
  97                  $formfieldtypenode = $fieldnode;
  98              }
  99  
 100              // Getting the class which contains the field type.
 101              $classes = explode(' ', $formfieldtypenode->getAttribute('class'));
 102              foreach ($classes as $class) {
 103                  if (substr($class, 0, 5) == 'form-') {
 104                      $type = substr($class, 5);
 105                  }
 106              }
 107  
 108              // Instantiating the appropiate field type.
 109              $field = behat_field_manager::get_field_instance($type, $fieldnode, $this->getSession());
 110              $field->set_value($value);
 111  
 112              $this->find_button(get_string('savechanges'))->press();
 113          }
 114      }
 115  
 116      /**
 117       * Sets the specified site settings. A table with | config | value | (optional)plugin | is expected.
 118       *
 119       * @Given /^the following config values are set as admin:$/
 120       * @param TableNode $table
 121       */
 122      public function the_following_config_values_are_set_as_admin(TableNode $table) {
 123  
 124          if (!$data = $table->getRowsHash()) {
 125              return;
 126          }
 127  
 128          foreach ($data as $config => $value) {
 129              // Default plugin value is null.
 130              $plugin = null;
 131  
 132              if (is_array($value)) {
 133                  $plugin = $value[1];
 134                  $value = $value[0];
 135              }
 136              set_config($config, $value, $plugin);
 137          }
 138      }
 139  
 140      /**
 141       * Waits with the provided params if we are running a JS session.
 142       *
 143       * @param int $timeout
 144       * @param string $javascript
 145       * @return void
 146       */
 147      protected function wait($timeout, $javascript = false) {
 148          if ($this->running_javascript()) {
 149              $this->getSession()->wait($timeout, $javascript);
 150          }
 151      }
 152  }


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1