Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

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