1441 |
ariadna |
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 |
require_once(__DIR__ . '/../../../../lib/behat/behat_base.php');
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* Step definition for report_log behat tests.
|
|
|
21 |
*
|
|
|
22 |
* @package report_log
|
|
|
23 |
* @category test
|
|
|
24 |
* @copyright 2025 Laurent David <laurent.david@moodle.com>
|
|
|
25 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
26 |
*/
|
|
|
27 |
class behat_report_log extends behat_base {
|
|
|
28 |
/**
|
|
|
29 |
* Convert page names to URLs for steps like 'When I am on the "[identifier]" "[page type]" page'.
|
|
|
30 |
*
|
|
|
31 |
* Recognised page names are:
|
|
|
32 |
* | pagetype | name meaning | description |
|
|
|
33 |
* | logs | Course name | The course report logs page |
|
|
|
34 |
*
|
|
|
35 |
* @param string $page identifies which type of page this is, e.g. 'Logs'.
|
|
|
36 |
* @param string $identifier identifies the particular page, e.g. 'C1'.
|
|
|
37 |
* @return moodle_url the corresponding URL.
|
|
|
38 |
* @throws Exception with a meaningful error message if the specified page cannot be found.
|
|
|
39 |
*/
|
|
|
40 |
protected function resolve_page_instance_url(string $page, string $identifier): moodle_url {
|
|
|
41 |
switch (strtolower($page)) {
|
|
|
42 |
case 'logs':
|
|
|
43 |
$courseid = $this->get_course_id($identifier);
|
|
|
44 |
return new moodle_url('/report/log/index.php', [
|
|
|
45 |
'id' => $courseid,
|
|
|
46 |
]);
|
|
|
47 |
default:
|
|
|
48 |
throw new Exception("Unrecognised page type '{$page}'");
|
|
|
49 |
}
|
|
|
50 |
}
|
|
|
51 |
}
|