芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/cepali/mod/assign/feedback/editpdf/tests/behat/behat_assignfeedback_editpdf.php
. /** * 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})"); } }