4092397794
Also required modifications in the affected steps definitions
117 lines
4.2 KiB
PHP
117 lines
4.2 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Behat tool renderer
|
|
*
|
|
* @package tool_behat
|
|
* @copyright 2012 David Monllaó
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
require_once($CFG->libdir . '/behat/classes/behat_command.php');
|
|
|
|
/**
|
|
* Renderer for behat tool web features
|
|
*
|
|
* @package tool_behat
|
|
* @copyright 2012 David Monllaó
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class tool_behat_renderer extends plugin_renderer_base {
|
|
|
|
/**
|
|
* Renders the list of available steps according to the submitted filters.
|
|
*
|
|
* @param mixed $stepsdefinitions Available steps array.
|
|
* @param moodleform $form
|
|
* @return string HTML code
|
|
*/
|
|
public function render_stepsdefinitions($stepsdefinitions, $form) {
|
|
|
|
$title = get_string('pluginname', 'tool_behat');
|
|
|
|
// Header.
|
|
$html = $this->output->header();
|
|
$html .= $this->output->heading($title);
|
|
|
|
// Info.
|
|
$installurl = behat_command::DOCS_URL . '#Installation';
|
|
$installlink = html_writer::tag('a', $installurl, array('href' => $installurl, 'target' => '_blank'));
|
|
$writetestsurl = behat_command::DOCS_URL . '#Writting_features';
|
|
$writetestslink = html_writer::tag('a', $writetestsurl, array('href' => $writetestsurl, 'target' => '_blank'));
|
|
$writestepsurl = behat_command::DOCS_URL . '#Adding_steps_definitions';
|
|
$writestepslink = html_writer::tag('a', $writestepsurl, array('href' => $writestepsurl, 'target' => '_blank'));
|
|
$infos = array(
|
|
get_string('installinfo', 'tool_behat', $installlink),
|
|
get_string('newtestsinfo', 'tool_behat', $writetestslink),
|
|
get_string('newstepsinfo', 'tool_behat', $writestepslink)
|
|
);
|
|
|
|
// List of steps
|
|
$html .= $this->output->box_start();
|
|
$html .= html_writer::tag('h1', 'Info');
|
|
$html .= html_writer::empty_tag('div');
|
|
$html .= html_writer::empty_tag('ul');
|
|
$html .= html_writer::empty_tag('li');
|
|
$html .= implode(html_writer::end_tag('li') . html_writer::empty_tag('li'), $infos);
|
|
$html .= html_writer::end_tag('li');
|
|
$html .= html_writer::end_tag('ul');
|
|
$html .= html_writer::end_tag('div');
|
|
$html .= $this->output->box_end();
|
|
|
|
// Form.
|
|
ob_start();
|
|
$form->display();
|
|
$html .= ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
if (empty($stepsdefinitions)) {
|
|
$stepsdefinitions = get_string('nostepsdefinitions', 'tool_behat');
|
|
} else {
|
|
|
|
$stepsdefinitions = implode('', $stepsdefinitions);
|
|
|
|
// Replace text selector type arguments with a user-friendly select.
|
|
$stepsdefinitions = preg_replace_callback('/(TEXT_SELECTOR_STRING)/',
|
|
function ($matches) {
|
|
return html_writer::select(behat_command::$allowedtextselectors, uniqid());
|
|
},
|
|
$stepsdefinitions
|
|
);
|
|
|
|
// Replace selector type arguments with a user-friendly select.
|
|
$stepsdefinitions = preg_replace_callback('/(SELECTOR_STRING)/',
|
|
function ($matches) {
|
|
return html_writer::select(behat_command::$allowedselectors, uniqid());
|
|
},
|
|
$stepsdefinitions
|
|
);
|
|
|
|
}
|
|
|
|
// Steps definitions.
|
|
$html .= html_writer::tag('div', $stepsdefinitions, array('class' => 'steps-definitions'));
|
|
|
|
$html .= $this->output->footer();
|
|
|
|
return $html;
|
|
}
|
|
}
|