Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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
/**
18
 * Provides {@link testable_tool_installaddon_installer} class.
19
 *
20
 * @package     tool_installaddon
21
 * @subpackage  fixtures
22
 * @category    test
23
 * @copyright   2013, 2015 David Mudrak <david@moodle.com>
24
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 */
26
 
27
defined('MOODLE_INTERNAL') || die();
28
 
29
/**
30
 * Testable subclass of the tested class
31
 *
32
 * @copyright 2013 David Mudrak <david@moodle.com>
33
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
 */
35
class testable_tool_installaddon_installer extends tool_installaddon_installer {
36
 
37
    public function get_site_fullname() {
38
        return strip_tags('<h1 onmouseover="alert(\'Hello Moodle.org!\');">Nasty site</h1>');
39
    }
40
 
41
    public function get_site_url() {
42
        return 'file:///etc/passwd';
43
    }
44
 
45
    public function get_site_major_version() {
46
        return "2.5'; DROP TABLE mdl_user; --";
47
    }
48
 
49
    public function testable_decode_remote_request($request) {
50
        return parent::decode_remote_request($request);
51
    }
52
 
53
    protected function should_send_site_info() {
54
        return true;
55
    }
56
 
57
    public function testable_detect_plugin_component_from_versionphp($code) {
58
        return parent::detect_plugin_component_from_versionphp($code);
59
    }
60
}