Skip to content

Commit

Permalink
MDL-79338 core: add primary navigation hook tests
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Sep 14, 2023
1 parent b2a2d3d commit f94ad6f
Showing 1 changed file with 123 additions and 0 deletions.
123 changes: 123 additions & 0 deletions lib/tests/hook/navigation/primary_extend_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,127 @@ public function test_stop_propagation() {
$hook->stop_propagation();
$this->assertTrue($hook->isPropagationStopped());
}

/**
* Test hook is triggered when initialising primary navigation menu.
* @covers \core\navigation\views\primary::initialise
*/
public function test_trigggering() {
global $PAGE;
$this->resetAfterTest();

$PAGE = new \moodle_page();
$PAGE->set_url('/');

$count = 0;
$receivedhook = null;
$testcallback = function(primary_extend $hook) use (&$receivedhook, &$count): void {
$count++;
$receivedhook = $hook;
};
$this->redirectHook(primary_extend::class, $testcallback);

$primarynav = new \core\navigation\views\primary($PAGE);
$this->assertSame(0, $count);
$this->assertNull($receivedhook);

$primarynav->initialise();
$this->assertSame(1, $count);
$this->assertInstanceOf(primary_extend::class, $receivedhook);
}

/**
* Verify that nothing except this hook modifies the primary menu.
* @covers \core\navigation\views\primary::initialise
*/
public function test_unsupported_hacks() {
global $PAGE;
$this->resetAfterTest();

$PAGE = new \moodle_page();
$PAGE->set_url('/');

$testcallback = function(primary_extend $hook): void {
// Nothing to do, propagation is stopped by hook redirection.
};
$this->redirectHook(primary_extend::class, $testcallback);

$primarynav = new \core\navigation\views\primary($PAGE);
$primarynav->initialise();
$this->assertSame(['home'], $primarynav->get_children_key_list(),
'Unsupported primary menu modification detected, use new primary_extend hook instead.');

$this->setAdminUser();
$primarynav = new \core\navigation\views\primary($PAGE);
$primarynav->initialise();
$this->assertSame(['home', 'myhome', 'mycourses'], $primarynav->get_children_key_list(),
'Unsupported primary menu modification detected, use new primary_extend hook instead.');
}

/**
* Test adding of primary menu items via hook.
* @covers \core\navigation\views\primary::initialise
*/
public function test_primary_menu_extending() {
global $PAGE;
$this->resetAfterTest();

$PAGE = new \moodle_page();
$PAGE->set_url('/');

$testcallback = function(primary_extend $hook): void {
$primaryview = $hook->get_primaryview();
$primaryview->add('Pokus', null);
};
$this->redirectHook(primary_extend::class, $testcallback);

$primarynav = new \core\navigation\views\primary($PAGE);
$primarynav->initialise();
$keys = $primarynav->get_children_key_list();
$this->assertCount(2, $keys);
$firstkey = array_shift($keys);
$this->assertSame('home', $firstkey);
$secondkey = array_shift($keys);
/** @var \navigation_node $pokus */
$pokus = $primarynav->get($secondkey);
$this->assertInstanceOf(\navigation_node::class, $pokus);
$this->assertSame('Pokus', $pokus->text);
}

/**
* Test replacing of the whole primary menu.
* @covers \core\navigation\views\primary::initialise
*/
public function test_primary_menu_replacing() {
global $PAGE;
$this->resetAfterTest();

$PAGE = new \moodle_page();
$PAGE->set_url('/');

$testcallback = function(primary_extend $hook): void {
$primaryview = $hook->get_primaryview();
$keys = $primaryview->get_children_key_list();
foreach ($keys as $key) {
$item = $primaryview->get($key);
$item->remove();
}
$primaryview->add('Pokus', null);
// Technically we do not need to stop because observers are overridden,
// but this can be used as an example for plugin that wants to stop
// adding of primary menu items from plugins.
$hook->stop_propagation();
};
$this->redirectHook(primary_extend::class, $testcallback);

$primarynav = new \core\navigation\views\primary($PAGE);
$primarynav->initialise();
$keys = $primarynav->get_children_key_list();
$this->assertCount(1, $keys);
$firstkey = array_shift($keys);
/** @var \navigation_node $pokus */
$pokus = $primarynav->get($firstkey);
$this->assertInstanceOf(\navigation_node::class, $pokus);
$this->assertSame('Pokus', $pokus->text);
}
}

0 comments on commit f94ad6f

Please sign in to comment.