| 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_glossary_random;
  | 
        
        
            | 
            | 
           18 | 
              | 
        
        
            | 
            | 
           19 | 
           use advanced_testcase;
  | 
        
        
            | 
            | 
           20 | 
           use block_glossary_random;
  | 
        
        
            | 
            | 
           21 | 
           use context_course;
  | 
        
        
            | 
            | 
           22 | 
              | 
        
        
            | 
            | 
           23 | 
           /**
  | 
        
        
            | 
            | 
           24 | 
            * PHPUnit block_glossary_random tests
  | 
        
        
            | 
            | 
           25 | 
            *
  | 
        
        
            | 
            | 
           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
  | 
        
        
            | 
            | 
           31 | 
            */
  | 
        
        
           | 1441 | 
           ariadna | 
           32 | 
           final class glossary_random_test extends advanced_testcase {
  | 
        
        
           | 1 | 
           efrain | 
           33 | 
               public static function setUpBeforeClass(): void {
  | 
        
        
            | 
            | 
           34 | 
                   require_once(__DIR__ . '/../../moodleblock.class.php');
  | 
        
        
            | 
            | 
           35 | 
                   require_once(__DIR__ . '/../block_glossary_random.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_glossary_random();
  | 
        
        
            | 
            | 
           55 | 
                   $pluginclass = \core_plugin_manager::resolve_plugininfo_class('mod');
  | 
        
        
            | 
            | 
           56 | 
              | 
        
        
            | 
            | 
           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));
  | 
        
        
            | 
            | 
           60 | 
              | 
        
        
            | 
            | 
           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));
  | 
        
        
            | 
            | 
           64 | 
               }
  | 
        
        
            | 
            | 
           65 | 
           }
  |