weekly release 4.5dev
[moodle.git] / blocks / glossary_random / tests / glossary_random_test.php
blob50ef730b8f2a74a03d5a95085749105bac24453b
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.
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/>.
17 namespace block_glossary_random;
19 use advanced_testcase;
20 use block_glossary_random;
21 use context_course;
23 /**
24 * PHPUnit block_glossary_random tests
26 * @package block_glossary_random
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_glossary_random
32 class glossary_random_test extends advanced_testcase {
33 public static function setUpBeforeClass(): void {
34 require_once(__DIR__ . '/../../moodleblock.class.php');
35 require_once(__DIR__ . '/../block_glossary_random.php');
36 parent::setUpBeforeClass();
39 /**
40 * Test the behaviour of can_block_be_added() method.
42 * @covers ::can_block_be_added
44 public function test_can_block_be_added(): void {
45 $this->resetAfterTest();
46 $this->setAdminUser();
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');
54 $block = new block_glossary_random();
55 $pluginclass = \core_plugin_manager::resolve_plugininfo_class('mod');
57 // If glossary module is enabled, the method should return true.
58 $pluginclass::enable_plugin('glossary', 1);
59 $this->assertTrue($block->can_block_be_added($page));
61 // However, if the glossary module is disabled, the method should return false.
62 $pluginclass::enable_plugin('glossary', 0);
63 $this->assertFalse($block->can_block_be_added($page));