Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

< /** < * Events tests. < * < * @package core < * @category test < * @copyright 2016 Stephen Bourget < * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later < */ <
namespace core_my\event;
> use context_system; /** > use context_user; * Unit tests for the dashboard events. >
*
> * @package core * @copyright 2016 Stephen Bourget > * @category test
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class events_test extends \advanced_testcase { /** @var user cobject */ protected $user; /** * Setup often used objects for the following tests. */ protected function setUp(): void { global $USER; $this->resetAfterTest(); // The user we are going to test this on. $this->setAdminUser(); $this->user = $USER; } /** * Test the dashboard viewed event. * * There is no external API for viewing the dashboard, so the unit test will simply * create and trigger the event and ensure data is returned as expected. */ public function test_dashboard_viewed() { $user = $this->user; // Trigger an event: dashboard viewed. $eventparams = array( 'context' => $context = \context_user::instance($user->id) ); $event = \core\event\dashboard_viewed::create($eventparams); // Trigger and capture the event. $sink = $this->redirectEvents(); $event->trigger(); $events = $sink->get_events(); $event = reset($events); // Check that the event data is valid. $this->assertInstanceOf('\core\event\dashboard_viewed', $event); $this->assertEquals($user->id, $event->userid); $this->assertDebuggingNotCalled(); } /** * Test the dashboard reset event. * * We will reset the user dashboard to * trigger the event and ensure data is returned as expected.
> * */ > * @covers ::my_reset_page
public function test_dashboard_reset() {
< global $CFG;
> global $CFG, $DB;
require_once($CFG->dirroot . '/my/lib.php');
>
$user = $this->user;
< $sink = $this->redirectEvents();
> $usercontext = context_user::instance($this->user->id); > > // Create at least one dashboard. > my_copy_page($this->user->id); > $this->assertNotEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PRIVATE, > 'name' => MY_PAGE_DEFAULT])); > $this->assertNotEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id]));
// Reset the dashboard.
> $sink = $this->redirectEvents();
my_reset_page($user->id);
> // Assert that the page and all th blocks were deleted. // Trigger and capture the event. > $this->assertEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PRIVATE, $events = $sink->get_events(); > 'name' => MY_PAGE_DEFAULT])); $event = reset($events); > $this->assertEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id])); >
// Check that the event data is valid.
> $sink->close();
$this->assertInstanceOf('\core\event\dashboard_reset', $event); $this->assertEquals($user->id, $event->userid); $this->assertEquals(MY_PAGE_PRIVATE, $event->other['private']); $this->assertEquals('my-index', $event->other['pagetype']); $this->assertDebuggingNotCalled(); // Reset the dashboard with private parameter is set to MY_PAGE_PUBLIC and pagetype set to 'user-profile'.
> $systempage = $DB->get_record('my_pages', ['userid' => null, 'name' => MY_PAGE_DEFAULT, 'private' => MY_PAGE_PUBLIC]); $sink = $this->redirectEvents(); > $this->getDataGenerator()->create_block('online_users', [ my_reset_page($user->id, MY_PAGE_PUBLIC, 'user-profile'); > 'parentcontextid' => context_system::instance()->id, > 'pagetypepattern' => 'user-profile', // Trigger and capture the event. > 'subpagepattern' => $systempage->id, $events = $sink->get_events(); > ]); $event = reset($events); > $this->assertEquals(MY_PAGE_PUBLIC, $event->other['private']); > my_copy_page($this->user->id, MY_PAGE_PUBLIC, 'user-profile'); $this->assertEquals('user-profile', $event->other['pagetype']); > $this->assertNotEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PUBLIC, } > 'name' => MY_PAGE_DEFAULT])); > $this->assertNotEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id])); /** >
* Test the dashboards reset event.
> $this->assertEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PUBLIC, * > 'name' => MY_PAGE_DEFAULT])); * We will reset all user dashboards to > $this->assertEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id]));
* trigger the event and ensure data is returned as expected.
> $sink->close(); */ >
public function test_dashboards_reset() {
> * global $CFG, $USER; > * @covers ::my_reset_page_for_all_users
< global $CFG, $USER;
> global $CFG, $USER, $DB;
< $sink = $this->redirectEvents();
> $usercontext = context_user::instance($this->user->id); > > // Create at least one dashboard. > my_copy_page($this->user->id); > $this->assertNotEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PRIVATE, > 'name' => MY_PAGE_DEFAULT])); > $this->assertNotEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id]));
// Reset all dashbaords.
> $sink = $this->redirectEvents();
my_reset_page_for_all_users();
> // Assert that the page and all th blocks were deleted. // Trigger and capture the event. > $this->assertEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PRIVATE, $events = $sink->get_events(); > 'name' => MY_PAGE_DEFAULT])); $event = reset($events); > $this->assertEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id])); >
// Check that the event data is valid.
> $sink->close();
$this->assertInstanceOf('\core\event\dashboards_reset', $event); $this->assertEquals($USER->id, $event->userid); $this->assertEquals(MY_PAGE_PRIVATE, $event->other['private']); $this->assertEquals('my-index', $event->other['pagetype']); $this->assertDebuggingNotCalled(); // Reset the dashboards with private parameter is set to MY_PAGE_PUBLIC and pagetype set to 'user-profile'.
> $systempage = $DB->get_record('my_pages', ['userid' => null, 'name' => MY_PAGE_DEFAULT, 'private' => MY_PAGE_PUBLIC]); $sink = $this->redirectEvents(); > $this->getDataGenerator()->create_block('online_users', [ my_reset_page_for_all_users(MY_PAGE_PUBLIC, 'user-profile'); > 'parentcontextid' => context_system::instance()->id, > 'pagetypepattern' => 'user-profile', // Trigger and capture the event. > 'subpagepattern' => $systempage->id, $events = $sink->get_events(); > ]); $event = reset($events); > $this->assertEquals(MY_PAGE_PUBLIC, $event->other['private']); > my_copy_page($this->user->id, MY_PAGE_PUBLIC, 'user-profile'); $this->assertEquals('user-profile', $event->other['pagetype']); > $this->assertNotEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PUBLIC, } > 'name' => MY_PAGE_DEFAULT])); } > $this->assertNotEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id])); >
> $this->assertEmpty($DB->get_records('my_pages', ['userid' => $this->user->id, 'private' => MY_PAGE_PUBLIC, > 'name' => MY_PAGE_DEFAULT])); > $this->assertEmpty($DB->get_records('block_instances', ['parentcontextid' => $usercontext->id]));
> $sink->close(); >