You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.6 KiB
105 lines
3.6 KiB
<?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 editpdf-related steps definitions.
|
|
*
|
|
* @package assignfeedback_editpdf
|
|
* @category test
|
|
* @copyright 2013 Jerome Mouneyrac
|
|
* @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');
|
|
|
|
/**
|
|
* Steps definitions related with the editpdf.
|
|
*
|
|
* @package assignfeedback_editpdf
|
|
* @category test
|
|
* @copyright 2013 Jerome Mouneyrac
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class behat_assignfeedback_editpdf extends behat_base {
|
|
|
|
/**
|
|
* Checks that Ghostscript is installed.
|
|
*
|
|
* @Given /^ghostscript is installed$/
|
|
*/
|
|
public function ghostscript_is_installed() {
|
|
$testpath = assignfeedback_editpdf\pdf::test_gs_path();
|
|
if (!extension_loaded('zlib') or
|
|
$testpath->status !== assignfeedback_editpdf\pdf::GSPATH_OK) {
|
|
throw new \Moodle\BehatExtension\Exception\SkippedException;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Draw on the pdf.
|
|
*
|
|
* @When /^I draw on the pdf$/
|
|
*/
|
|
public function i_draw_on_the_pdf() {
|
|
$js = ' (function() {
|
|
var instance = M.assignfeedback_editpdf.instance;
|
|
var event = { clientX: 100, clientY: 250, preventDefault: function() {} };
|
|
instance.edit_start(event);
|
|
}()); ';
|
|
$this->getSession()->executeScript($js);
|
|
sleep(1);
|
|
$js = ' (function() {
|
|
var instance = M.assignfeedback_editpdf.instance;
|
|
var event = { clientX: 150, clientY: 275, preventDefault: function() {} };
|
|
instance.edit_move(event);
|
|
}()); ';
|
|
$this->getSession()->executeScript($js);
|
|
sleep(1);
|
|
$js = ' (function() {
|
|
var instance = M.assignfeedback_editpdf.instance;
|
|
var event = { clientX: 200, clientY: 300, preventDefault: function() {} };
|
|
instance.edit_end(event);
|
|
}()); ';
|
|
$this->getSession()->executeScript($js);
|
|
sleep(1);
|
|
}
|
|
|
|
/**
|
|
* I wait for all pages in the PDF document to be converted to images and loaded.
|
|
*
|
|
* @Given /^I wait for the complete PDF to load$/
|
|
*/
|
|
public function i_wait_for_all_editpdf_pages_to_load() {
|
|
// No need to wait if not running JS.
|
|
if (!$this->running_javascript()) {
|
|
return;
|
|
}
|
|
|
|
// Ensure that the document is ready, and all pages are loaded.
|
|
$conditions = [
|
|
'typeof M !== "undefined"',
|
|
'typeof M.assignfeedback_editpdf !== "undefined"',
|
|
'typeof M.assignfeedback_editpdf.instance !== "undefined"',
|
|
'M.assignfeedback_editpdf.instance.documentstatus === 2',
|
|
'M.assignfeedback_editpdf.instance.pagecount === M.assignfeedback_editpdf.instance.pages.length',
|
|
];
|
|
$js = implode(' && ', $conditions);
|
|
|
|
$this->getSession()->wait(self::get_timeout() * 1000, "({$js})");
|
|
}
|
|
}
|
|
|