Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | 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
namespace block_globalsearch;
18
 
19
use advanced_testcase;
20
use block_globalsearch;
21
use context_course;
22
 
23
/**
24
 * PHPUnit block_globalsearch tests
25
 *
26
 * @package    block_globalsearch
27
 * @category   test
28
 * @copyright  2021 Sara Arjona (sara@moodle.com)
29
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30
 * @coversDefaultClass \block_globalsearch
31
 */
1441 ariadna 32
final class globalsearch_test extends advanced_testcase {
1 efrain 33
    public static function setUpBeforeClass(): void {
34
        require_once(__DIR__ . '/../../moodleblock.class.php');
35
        require_once(__DIR__ . '/../block_globalsearch.php');
1441 ariadna 36
        parent::setUpBeforeClass();
1 efrain 37
    }
38
 
39
    /**
40
     * Test the behaviour of can_block_be_added() method.
41
     *
42
     * @covers ::can_block_be_added
43
     */
44
    public function test_can_block_be_added(): void {
45
        $this->resetAfterTest();
46
        $this->setAdminUser();
47
 
48
        // Create a course and prepare the page where the block will be added.
49
        $course = $this->getDataGenerator()->create_course();
50
        $page = new \moodle_page();
51
        $page->set_context(context_course::instance($course->id));
52
        $page->set_pagelayout('course');
53
 
54
        $block = new block_globalsearch();
55
 
56
        // If global search advanced feature is enabled, the method should return true.
57
        set_config('enableglobalsearch', true);
58
        $this->assertTrue($block->can_block_be_added($page));
59
 
60
        // However, if the global search advanced feature is disabled, the method should return false.
61
        set_config('enableglobalsearch', false);
62
        $this->assertFalse($block->can_block_be_added($page));
63
    }
64
}