Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 400 and 402] [Versions 400 and 403]

   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 tool_admin_presets\event;
  18  
  19  /**
  20   * Tests for the preset_reverted event class.
  21   *
  22   * @package    tool_admin_presets
  23   * @category   test
  24   * @copyright  2021 Sara Arjona (sara@moodle.com)
  25   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  26   * @covers     \tool_admin_presets\event\preset_reverted
  27   */
  28  class preset_reverted_test extends \advanced_testcase {
  29  
  30      /**
  31       * Test preset_reverted event.
  32       */
  33      public function test_preset_reverted_event() {
  34          $this->resetAfterTest();
  35          $this->setAdminUser();
  36  
  37          // Create a preset.
  38          $generator = $this->getDataGenerator()->get_plugin_generator('core_adminpresets');
  39          $presetid = $generator->create_preset();
  40  
  41          $params = [
  42              'context' => \context_system::instance(),
  43              'objectid' => $presetid,
  44          ];
  45          $event = preset_reverted::create($params);
  46  
  47          // Triggering and capturing the event.
  48          $sink = $this->redirectEvents();
  49          $event->trigger();
  50          $events = $sink->get_events();
  51          $this->assertCount(1, $events);
  52          $event = reset($events);
  53  
  54          // Checking that the event contains the expected values.
  55          $this->assertInstanceOf('\tool_admin_presets\event\preset_reverted', $event);
  56          $this->assertEquals(\context_system::instance(), $event->get_context());
  57          $this->assertEquals($presetid, $event->objectid);
  58          $expected = [0, 'tool_admin_presets', 'rollback', '', $presetid, 0];
  59          $this->assertEventLegacyLogData($expected, $event);
  60      }
  61  }