__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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/>.
namespace core;
use action_link;
use global_navigation;
use navbar;
use navigation_cache;
use navigation_node;
use navigation_node_collection;
use pix_icon;
use popup_action;
use settings_navigation;
defined('MOODLE_INTERNAL') || die();
global $CFG;
require_once($CFG->libdir . '/navigationlib.php');
/**
* Unit tests for lib/navigationlib.php
*
* @package core
* @category test
* @copyright 2009 Sam Hemelryk
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later (5)
*/
final class navigationlib_test extends \advanced_testcase {
/**
* @var navigation_node
*/
public $node;
protected function setup_node() {
global $PAGE, $SITE;
$PAGE->set_url('/');
$PAGE->set_course($SITE);
$activeurl = $PAGE->url;
$inactiveurl = new \moodle_url('http://www.moodle.com/');
navigation_node::override_active_url($PAGE->url);
$this->node = new navigation_node('Test Node');
$this->node->type = navigation_node::TYPE_SYSTEM;
// We add the first child without key. This way we make sure all keys search by comparison is performed using ===.
$this->node->add('first child without key', null, navigation_node::TYPE_CUSTOM);
$demo1 = $this->node->add('demo1', $inactiveurl, navigation_node::TYPE_COURSE, null, 'demo1', new pix_icon('i/course', ''));
$demo2 = $this->node->add('demo2', $inactiveurl, navigation_node::TYPE_COURSE, null, 'demo2', new pix_icon('i/course', ''));
$demo3 = $this->node->add('demo3', $inactiveurl, navigation_node::TYPE_CATEGORY, null, 'demo3', new pix_icon('i/course', ''));
$demo4 = $demo3->add('demo4', $inactiveurl, navigation_node::TYPE_COURSE, null, 'demo4', new pix_icon('i/course', ''));
$demo5 = $demo3->add('demo5', $activeurl, navigation_node::TYPE_COURSE, null, 'demo5', new pix_icon('i/course', ''));
$demo5->add('activity1', null, navigation_node::TYPE_ACTIVITY, null, 'activity1')->make_active();
$demo6 = $demo3->add('demo6', null, navigation_node::TYPE_CONTAINER, 'container node test', 'demo6');
$hiddendemo1 = $this->node->add('hiddendemo1', $inactiveurl, navigation_node::TYPE_CATEGORY, null, 'hiddendemo1', new pix_icon('i/course', ''));
$hiddendemo1->hidden = true;
$hiddendemo1->add('hiddendemo2', $inactiveurl, navigation_node::TYPE_COURSE, null, 'hiddendemo2', new pix_icon('i/course', ''))->helpbutton = 'Here is a help button';
$hiddendemo1->add('hiddendemo3', $inactiveurl, navigation_node::TYPE_COURSE, null, 'hiddendemo3', new pix_icon('i/course', ''))->display = false;
}
public function test_node__construct(): void {
$this->setup_node();
$fakeproperties = array(
'text' => 'text',
'shorttext' => 'A very silly extra long short text string, more than 25 characters',
'key' => 'key',
'type' => 'navigation_node::TYPE_COURSE',
'action' => new \moodle_url('http://www.moodle.org/'));
$node = new navigation_node($fakeproperties);
$this->assertSame($fakeproperties['text'], $node->text);
$this->assertTrue(strpos($fakeproperties['shorttext'], substr($node->shorttext, 0, -3)) === 0);
$this->assertSame($fakeproperties['key'], $node->key);
$this->assertSame($fakeproperties['type'], $node->type);
$this->assertSame($fakeproperties['action'], $node->action);
}
public function test_node_add(): void {
$this->setup_node();
// Add a node with all args set.
$node1 = $this->node->add('test_add_1', 'http://www.moodle.org/', navigation_node::TYPE_COURSE, 'testadd1', 'key', new pix_icon('i/course', ''));
// Add a node with the minimum args required.
$node2 = $this->node->add('test_add_2', null, navigation_node::TYPE_CUSTOM, 'testadd2');
$node3 = $this->node->add(str_repeat('moodle ', 15), str_repeat('moodle', 15));
$this->assertInstanceOf('navigation_node', $node1);
$this->assertInstanceOf('navigation_node', $node2);
$this->assertInstanceOf('navigation_node', $node3);
$ref = $this->node->get('key');
$this->assertSame($node1, $ref);
$ref = $this->node->get($node2->key);
$this->assertSame($node2, $ref);
$ref = $this->node->get($node2->key, $node2->type);
$this->assertSame($node2, $ref);
$ref = $this->node->get($node3->key, $node3->type);
$this->assertSame($node3, $ref);
}
public function test_node_add_before(): void {
$this->setup_node();
// Create 3 nodes.
$node1 = navigation_node::create('test_add_1', null, navigation_node::TYPE_CUSTOM,
'test 1', 'testadd1');
$node2 = navigation_node::create('test_add_2', null, navigation_node::TYPE_CUSTOM,
'test 2', 'testadd2');
$node3 = navigation_node::create('test_add_3', null, navigation_node::TYPE_CUSTOM,
'test 3', 'testadd3');
// Add node 2, then node 1 before 2, then node 3 at end.
$this->node->add_node($node2);
$this->node->add_node($node1, 'testadd2');
$this->node->add_node($node3);
// Check the last 3 nodes are in 1, 2, 3 order and have those indexes.
foreach ($this->node->children as $child) {
$keys[] = $child->key;
}
$this->assertSame('testadd1', $keys[count($keys)-3]);
$this->assertSame('testadd2', $keys[count($keys)-2]);
$this->assertSame('testadd3', $keys[count($keys)-1]);
}
public function test_node_add_class(): void {
$this->setup_node();
$node = $this->node->get('demo1');
$this->assertInstanceOf('navigation_node', $node);
if ($node !== false) {
$node->add_class('myclass');
$classes = $node->classes;
$this->assertContains('myclass', $classes);
}
}
/**
* Test the add_attribute method.
* @covers \navigation_node::add_attribute
*/
public function test_node_add_attribute(): void {
$this->setup_node();
$node = $this->node->get('demo1');
$this->assertInstanceOf('navigation_node', $node);
if ($node !== false) {
$node->add_attribute('data-foo', 'bar');
$attribute = reset($node->attributes);
$this->assertEqualsCanonicalizing(['name' => 'data-foo', 'value' => 'bar'], $attribute);
}
}
public function test_node_check_if_active(): void {
$this->setup_node();
// First test the string urls
// Demo1 -> action is http://www.moodle.org/, thus should be true.
$demo5 = $this->node->find('demo5', navigation_node::TYPE_COURSE);
if ($this->assertInstanceOf('navigation_node', $demo5)) {
$this->assertTrue($demo5->check_if_active());
}
// Demo2 -> action is http://www.moodle.com/, thus should be false.
$demo2 = $this->node->get('demo2');
if ($this->assertInstanceOf('navigation_node', $demo2)) {
$this->assertFalse($demo2->check_if_active());
}
}
public function test_node_contains_active_node(): void {
$this->setup_node();
// Demo5, and activity1 were set to active during setup.
// Should be true as it contains all nodes.
$this->assertTrue($this->node->contains_active_node());
// Should be true as demo5 is a child of demo3.
$this->assertTrue($this->node->get('demo3')->contains_active_node());
// Obviously duff.
$this->assertFalse($this->node->get('demo1')->contains_active_node());
// Should be true as demo5 contains activity1.
$this->assertTrue($this->node->get('demo3')->get('demo5')->contains_active_node());
// Should be true activity1 is the active node.
$this->assertTrue($this->node->get('demo3')->get('demo5')->get('activity1')->contains_active_node());
// Obviously duff.
$this->assertFalse($this->node->get('demo3')->get('demo4')->contains_active_node());
}
public function test_node_find_active_node(): void {
$this->setup_node();
$activenode1 = $this->node->find_active_node();
$activenode2 = $this->node->get('demo1')->find_active_node();
if ($this->assertInstanceOf('navigation_node', $activenode1)) {
$ref = $this->node->get('demo3')->get('demo5')->get('activity1');
$this->assertSame($activenode1, $ref);
}
$this->assertNotInstanceOf('navigation_node', $activenode2);
}
public function test_node_find(): void {
$this->setup_node();
$node1 = $this->node->find('demo1', navigation_node::TYPE_COURSE);
$node2 = $this->node->find('demo5', navigation_node::TYPE_COURSE);
$node3 = $this->node->find('demo5', navigation_node::TYPE_CATEGORY);
$node4 = $this->node->find('demo0', navigation_node::TYPE_COURSE);
$this->assertInstanceOf('navigation_node', $node1);
$this->assertInstanceOf('navigation_node', $node2);
$this->assertNotInstanceOf('navigation_node', $node3);
$this->assertNotInstanceOf('navigation_node', $node4);
}
public function test_node_find_expandable(): void {
$this->setup_node();
$expandable = array();
$this->node->find_expandable($expandable);
$this->assertCount(0, $expandable);
if (count($expandable) === 4) {
$name = $expandable[0]['key'];
$name .= $expandable[1]['key'];
$name .= $expandable[2]['key'];
$name .= $expandable[3]['key'];
$this->assertSame('demo1demo2demo4hiddendemo2', $name);
}
}
public function test_node_get(): void {
$this->setup_node();
$node1 = $this->node->get('demo1'); // Exists.
$node2 = $this->node->get('demo4'); // Doesn't exist for this node.
$node3 = $this->node->get('demo0'); // Doesn't exist at all.
$node4 = $this->node->get(false); // Sometimes occurs in nature code.
$this->assertInstanceOf('navigation_node', $node1);
$this->assertFalse($node2);
$this->assertFalse($node3);
$this->assertFalse($node4);
}
public function test_node_get_css_type(): void {
$this->setup_node();
$csstype1 = $this->node->get('demo3')->get_css_type();
$csstype2 = $this->node->get('demo3')->get('demo5')->get_css_type();
$this->node->get('demo3')->get('demo5')->type = 1000;
$csstype3 = $this->node->get('demo3')->get('demo5')->get_css_type();
$csstype4 = $this->node->get('demo3')->get('demo6')->get_css_type();
$this->assertSame('type_category', $csstype1);
$this->assertSame('type_course', $csstype2);
$this->assertSame('type_unknown', $csstype3);
$this->assertSame('type_container', $csstype4);
}
public function test_node_make_active(): void {
global $CFG;
$this->setup_node();
$node1 = $this->node->add('active node 1', null, navigation_node::TYPE_CUSTOM, null, 'anode1');
$node2 = $this->node->add('active node 2', new \moodle_url($CFG->wwwroot), navigation_node::TYPE_COURSE, null, 'anode2');
$node1->make_active();
$this->node->get('anode2')->make_active();
$this->assertTrue($node1->isactive);
$this->assertTrue($this->node->get('anode2')->isactive);
}
public function test_node_remove(): void {
$this->setup_node();
$remove1 = $this->node->add('child to remove 1', null, navigation_node::TYPE_CUSTOM, null, 'remove1');
$remove2 = $this->node->add('child to remove 2', null, navigation_node::TYPE_CUSTOM, null, 'remove2');
$remove3 = $remove2->add('child to remove 3', null, navigation_node::TYPE_CUSTOM, null, 'remove3');
$this->assertInstanceOf('navigation_node', $remove1);
$this->assertInstanceOf('navigation_node', $remove2);
$this->assertInstanceOf('navigation_node', $remove3);
$this->assertInstanceOf('navigation_node', $this->node->get('remove1'));
$this->assertInstanceOf('navigation_node', $this->node->get('remove2'));
$this->assertInstanceOf('navigation_node', $remove2->get('remove3'));
// Remove element and make sure this is no longer a child.
$this->assertTrue($remove1->remove());
$this->assertFalse($this->node->get('remove1'));
$this->assertFalse(in_array('remove1', $this->node->get_children_key_list(), true));
// Make sure that we can insert element after removal.
$insertelement = navigation_node::create('extra element 4', null, navigation_node::TYPE_CUSTOM, null, 'element4');
$this->node->add_node($insertelement, 'remove2');
$this->assertNotEmpty($this->node->get('element4'));
// Remove more elements.
$this->assertTrue($this->node->get('remove2')->remove());
$this->assertFalse($this->node->get('remove2'));
// Make sure that we can add element after removal.
$this->node->add('extra element 5', null, navigation_node::TYPE_CUSTOM, null, 'element5');
$this->assertNotEmpty($this->node->get('element5'));
$this->assertTrue($remove2->get('remove3')->remove());
$this->assertFalse($this->node->get('remove1'));
$this->assertFalse($this->node->get('remove2'));
}
public function test_node_remove_class(): void {
$this->setup_node();
$this->node->add_class('testclass');
$this->assertTrue($this->node->remove_class('testclass'));
$this->assertNotContains('testclass', $this->node->classes);
}
public function test_module_extends_navigation(): void {
$node = new exposed_global_navigation();
// Create an initial tree structure to work with.
$cat1 = $node->add('category 1', null, navigation_node::TYPE_CATEGORY, null, 'cat1');
$cat2 = $node->add('category 2', null, navigation_node::TYPE_CATEGORY, null, 'cat2');
$cat3 = $node->add('category 3', null, navigation_node::TYPE_CATEGORY, null, 'cat3');
$sub1 = $cat2->add('sub category 1', null, navigation_node::TYPE_CATEGORY, null, 'sub1');
$sub2 = $cat2->add('sub category 2', null, navigation_node::TYPE_CATEGORY, null, 'sub2');
$sub3 = $cat2->add('sub category 3', null, navigation_node::TYPE_CATEGORY, null, 'sub3');
$course1 = $sub2->add('course 1', null, navigation_node::TYPE_COURSE, null, 'course1');
$course2 = $sub2->add('course 2', null, navigation_node::TYPE_COURSE, null, 'course2');
$course3 = $sub2->add('course 3', null, navigation_node::TYPE_COURSE, null, 'course3');
$section1 = $course2->add('section 1', null, navigation_node::TYPE_SECTION, null, 'sec1');
$section2 = $course2->add('section 2', null, navigation_node::TYPE_SECTION, null, 'sec2');
$section3 = $course2->add('section 3', null, navigation_node::TYPE_SECTION, null, 'sec3');
$act1 = $section2->add('activity 1', null, navigation_node::TYPE_ACTIVITY, null, 'act1');
$act2 = $section2->add('activity 2', null, navigation_node::TYPE_ACTIVITY, null, 'act2');
$act3 = $section2->add('activity 3', null, navigation_node::TYPE_ACTIVITY, null, 'act3');
$res1 = $section2->add('resource 1', null, navigation_node::TYPE_RESOURCE, null, 'res1');
$res2 = $section2->add('resource 2', null, navigation_node::TYPE_RESOURCE, null, 'res2');
$res3 = $section2->add('resource 3', null, navigation_node::TYPE_RESOURCE, null, 'res3');
$this->assertTrue($node->exposed_module_extends_navigation('data'));
$this->assertFalse($node->exposed_module_extends_navigation('test1'));
}
public function test_navbar_prepend_and_add(): \moodle_page {
global $PAGE;
// Unfortunate hack needed because people use global $PAGE around the place.
$PAGE->set_url('/');
// We need to reset after this test because we using the generator.
$this->resetAfterTest();
$generator = self::getDataGenerator();
$cat1 = $generator->create_category();
$cat2 = $generator->create_category(array('parent' => $cat1->id));
$course = $generator->create_course(array('category' => $cat2->id));
$page = new \moodle_page();
$page->set_course($course);
$page->set_url(new \moodle_url('/course/view.php', array('id' => $course->id)));
$page->navbar->prepend('test 1');
$page->navbar->prepend('test 2');
$page->navbar->add('test 3');
$page->navbar->add('test 4');
$items = $page->navbar->get_items();
foreach ($items as $item) {
$this->assertInstanceOf('navigation_node', $item);
}
$i = 0;
$this->assertSame('test 1', $items[$i++]->text);
$this->assertSame('test 2', $items[$i++]->text);
$this->assertSame('home', $items[$i++]->key);
$this->assertSame('courses', $items[$i++]->key);
$this->assertSame($cat1->id, $items[$i++]->key);
$this->assertSame($cat2->id, $items[$i++]->key);
$this->assertSame($course->id, $items[$i++]->key);
$this->assertSame('test 3', $items[$i++]->text);
$this->assertSame('test 4', $items[$i++]->text);
return $page;
}
/**
* @depends test_navbar_prepend_and_add
* @param $node
*/
public function test_navbar_has_items(\moodle_page $page): void {
$this->resetAfterTest();
$this->assertTrue($page->navbar->has_items());
}
public function test_cache__get(): void {
$cache = new navigation_cache('unittest_nav');
$cache->anysetvariable = true;
$this->assertTrue($cache->anysetvariable);
$this->assertEquals($cache->notasetvariable, null);
}
public function test_cache__set(): void {
$cache = new navigation_cache('unittest_nav');
$cache->anysetvariable = true;
$cache->myname = 'Sam Hemelryk';
$this->assertTrue($cache->cached('myname'));
$this->assertSame('Sam Hemelryk', $cache->myname);
}
public function test_cache_cached(): void {
$cache = new navigation_cache('unittest_nav');
$cache->anysetvariable = true;
$this->assertTrue($cache->cached('anysetvariable'));
$this->assertFalse($cache->cached('notasetvariable'));
}
public function test_cache_clear(): void {
$cache = new navigation_cache('unittest_nav');
$cache->anysetvariable = true;
$cache = clone($cache);
$this->assertTrue($cache->cached('anysetvariable'));
$cache->clear();
$this->assertFalse($cache->cached('anysetvariable'));
}
public function test_cache_set(): void {
$cache = new navigation_cache('unittest_nav');
$cache->anysetvariable = true;
$cache->set('software', 'Moodle');
$this->assertTrue($cache->cached('software'));
$this->assertEquals($cache->software, 'Moodle');
}
public function test_setting___construct(): settings_navigation {
global $PAGE, $SITE;
$this->resetAfterTest(false);
$PAGE->set_url('/');
$PAGE->set_course($SITE);
$node = new exposed_settings_navigation();
return $node;
}
/**
* @depends test_setting___construct
* @param mixed $node
* @return mixed
*/
public function test_setting__initialise($node): settings_navigation {
$this->resetAfterTest(false);
$node->initialise();
$this->assertEquals($node->id, 'settingsnav');
return $node;
}
/**
* Test that users with the correct permissions can view the preferences page.
*/
public function test_can_view_user_preferences(): void {
global $PAGE, $DB, $SITE;
$this->resetAfterTest();
$persontoview = $this->getDataGenerator()->create_user();
$persondoingtheviewing = $this->getDataGenerator()->create_user();
$PAGE->set_url('/');
$PAGE->set_course($SITE);
// Check that a standard user can not view the preferences page.
$studentrole = $DB->get_record('role', array('shortname' => 'student'));
$this->getDataGenerator()->role_assign($studentrole->id, $persondoingtheviewing->id);
$this->setUser($persondoingtheviewing);
$settingsnav = new exposed_settings_navigation();
$settingsnav->initialise();
$settingsnav->extend_for_user($persontoview->id);
$this->assertFalse($settingsnav->can_view_user_preferences($persontoview->id));
// Set persondoingtheviewing as a manager.
$managerrole = $DB->get_record('role', array('shortname' => 'manager'));
$this->getDataGenerator()->role_assign($managerrole->id, $persondoingtheviewing->id);
$settingsnav = new exposed_settings_navigation();
$settingsnav->initialise();
$settingsnav->extend_for_user($persontoview->id);
$this->assertTrue($settingsnav->can_view_user_preferences($persontoview->id));
// Check that the admin can view the preferences page.
$this->setAdminUser();
$settingsnav = new exposed_settings_navigation();
$settingsnav->initialise();
$settingsnav->extend_for_user($persontoview->id);
$preferencenode = $settingsnav->find('userviewingsettings' . $persontoview->id, null);
$this->assertTrue($settingsnav->can_view_user_preferences($persontoview->id));
}
/**
* @depends test_setting__initialise
* @param mixed $node
* @return mixed
*/
public function test_setting_in_alternative_role($node): void {
$this->resetAfterTest();
$this->assertFalse($node->exposed_in_alternative_role());
}
public function test_navigation_node_collection_remove_with_no_type(): void {
$navigationnodecollection = new navigation_node_collection();
$this->setup_node();
$this->node->key = 100;
// Test it's empty
$this->assertEquals(0, count($navigationnodecollection->get_key_list()));
// Add a node
$navigationnodecollection->add($this->node);
// Test it's not empty
$this->assertEquals(1, count($navigationnodecollection->get_key_list()));
// Remove a node - passing key only!
$this->assertTrue($navigationnodecollection->remove(100));
// Test it's empty again!
$this->assertEquals(0, count($navigationnodecollection->get_key_list()));
}
public function test_navigation_node_collection_remove_with_type(): void {
$navigationnodecollection = new navigation_node_collection();
$this->setup_node();
$this->node->key = 100;
// Test it's empty
$this->assertEquals(0, count($navigationnodecollection->get_key_list()));
// Add a node
$navigationnodecollection->add($this->node);
// Test it's not empty
$this->assertEquals(1, count($navigationnodecollection->get_key_list()));
// Remove a node - passing type
$this->assertTrue($navigationnodecollection->remove(100, 1));
// Test it's empty again!
$this->assertEquals(0, count($navigationnodecollection->get_key_list()));
}
/**
* Test the set_force_into_more_menu method.
*
* @param bool $haschildren Whether the navigation node has children nodes
* @param bool $forceintomoremenu Whether to force the navigation node and its children into the "more" menu
* @dataProvider set_force_into_more_menu_provider
*/
public function test_set_force_into_more_menu(bool $haschildren, bool $forceintomoremenu): void {
// Create a navigation node.
$node = new navigation_node(['text' => 'Navigation node', 'key' => 'navnode']);
// If required, add some children nodes to the navigation node.
if ($haschildren) {
for ($i = 1; $i <= 3; $i++) {
$node->add("Child navigation node {$i}");
}
}
$node->set_force_into_more_menu($forceintomoremenu);
// Assert that the expected value has been assigned to the 'forceintomoremenu' property
// in the navigation node and its children.
$this->assertEquals($forceintomoremenu, $node->forceintomoremenu);
foreach ($node->children as $child) {
$this->assertEquals($forceintomoremenu, $child->forceintomoremenu);
}
}
/**
* Data provider for the test_set_force_into_more_menu function.
*
* @return array
*/
public static function set_force_into_more_menu_provider(): array {
return [
'Navigation node without any children nodes; Force into "more" menu => true.' =>
[
false,
true,
],
'Navigation node with children nodes; Force into "more" menu => true.' =>
[
true,
true,
],
'Navigation node with children nodes; Force into "more" menu => false.' =>
[
true,
false,
],
];
}
/**
* Test the is_action_link method.
*
* @param navigation_node $node The sample navigation node
* @param bool $expected Whether the navigation node contains an action link
* @dataProvider is_action_link_provider
* @covers navigation_node::is_action_link
*/
public function test_is_action_link(navigation_node $node, bool $expected): void {
$this->assertEquals($node->is_action_link(), $expected);
}
/**
* Data provider for the test_is_action_link function.
*
* @return array
*/
public static function is_action_link_provider(): array {
return [
'The navigation node has an action link.' =>
[
navigation_node::create('Node', new action_link(new \moodle_url('/'), '',
new popup_action('click', new \moodle_url('/'))), navigation_node::TYPE_SETTING),
true
],
'The navigation node does not have an action link.' =>
[
navigation_node::create('Node', new \moodle_url('/'), navigation_node::TYPE_SETTING),
false
],
];
}
/**
* Test the action_link_actions method.
*
* @param navigation_node $node The sample navigation node
* @dataProvider action_link_actions_provider
* @covers navigation_node::action_link_actions
*/
public function test_action_link_actions(navigation_node $node): void {
// Get the formatted array of action link actions.
$data = $node->action_link_actions();
// The navigation node has an action link.
if ($node->action instanceof action_link) {
if (!empty($node->action->actions)) { // There are actions added to the action link.
$this->assertArrayHasKey('actions', $data);
$this->assertCount(1, $data['actions']);
$expected = (object)[
'id' => $node->action->attributes['id'],
'event' => $node->action->actions[0]->event,
'jsfunction' => $node->action->actions[0]->jsfunction,
'jsfunctionargs' => json_encode($node->action->actions[0]->jsfunctionargs)
];
$this->assertEquals($expected, $data['actions'][0]);
} else { // There are no actions added to the action link.
$this->assertArrayHasKey('actions', $data);
$this->assertEmpty($data['actions']);
}
} else { // The navigation node does not have an action link.
$this->assertEmpty($data);
}
}
/**
* Data provider for the test_action_link_actions function.
*
* @return array
*/
public static function action_link_actions_provider(): array {
return [
'The navigation node has an action link with an action attached.' =>
[
navigation_node::create('Node', new action_link(new \moodle_url('/'), '',
new popup_action('click', new \moodle_url('/'))), navigation_node::TYPE_SETTING),
],
'The navigation node has an action link without an action.' =>
[
navigation_node::create('Node', new action_link(new \moodle_url('/'), '', null),
navigation_node::TYPE_SETTING),
],
'The navigation node does not have an action link.' =>
[
navigation_node::create('Node', new \moodle_url('/'), navigation_node::TYPE_SETTING),
],
];
}
}
/**
* This is a dummy object that allows us to call protected methods within the
* global navigation class by prefixing the methods with `exposed_`
*/
class exposed_global_navigation extends global_navigation {
protected $exposedkey = 'exposed_';
public function __construct(?\moodle_page $page=null) {
global $PAGE;
if ($page === null) {
$page = $PAGE;
}
parent::__construct($page);
}
public function __call($method, $arguments) {
if (strpos($method, $this->exposedkey) !== false) {
$method = substr($method, strlen($this->exposedkey));
}
if (method_exists($this, $method)) {
return call_user_func_array(array($this, $method), $arguments);
}
throw new \coding_exception('You have attempted to access a method that does not exist for the given object '.$method, DEBUG_DEVELOPER);
}
public function set_initialised() {
$this->initialised = true;
}
}
class mock_initialise_global_navigation extends global_navigation {
protected static $count = 1;
public function load_for_category() {
$this->add('load_for_category', null, null, null, 'initcall'.self::$count);
self::$count++;
return 0;
}
public function load_for_course() {
$this->add('load_for_course', null, null, null, 'initcall'.self::$count);
self::$count++;
return 0;
}
public function load_for_activity() {
$this->add('load_for_activity', null, null, null, 'initcall'.self::$count);
self::$count++;
return 0;
}
public function load_for_user($user=null, $forceforcontext=false) {
$this->add('load_for_user', null, null, null, 'initcall'.self::$count);
self::$count++;
return 0;
}
}
/**
* This is a dummy object that allows us to call protected methods within the
* global navigation class by prefixing the methods with `exposed_`.
*/
class exposed_navbar extends navbar {
protected $exposedkey = 'exposed_';
public function __construct(\moodle_page $page) {
parent::__construct($page);
}
public function __call($method, $arguments) {
if (strpos($method, $this->exposedkey) !== false) {
$method = substr($method, strlen($this->exposedkey));
}
if (method_exists($this, $method)) {
return call_user_func_array(array($this, $method), $arguments);
}
throw new \coding_exception('You have attempted to access a method that does not exist for the given object '.$method, DEBUG_DEVELOPER);
}
}
class navigation_exposed_moodle_page extends \moodle_page {
public function set_navigation(navigation_node $node) {
$this->_navigation = $node;
}
}
/**
* This is a dummy object that allows us to call protected methods within the
* global navigation class by prefixing the methods with `exposed_`.
*/
class exposed_settings_navigation extends settings_navigation {
protected $exposedkey = 'exposed_';
public function __construct() {
global $PAGE;
parent::__construct($PAGE);
}
public function __call($method, $arguments) {
if (strpos($method, $this->exposedkey) !== false) {
$method = substr($method, strlen($this->exposedkey));
}
if (method_exists($this, $method)) {
return call_user_func_array(array($this, $method), $arguments);
}
throw new \coding_exception('You have attempted to access a method that does not exist for the given object '.$method, DEBUG_DEVELOPER);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| analytics | Folder | 0777 |
|
|
| behat | Folder | 0777 |
|
|
| classes | Folder | 0777 |
|
|
| content | Folder | 0777 |
|
|
| context | Folder | 0777 |
|
|
| db | Folder | 0777 |
|
|
| event | Folder | 0777 |
|
|
| external | Folder | 0777 |
|
|
| fixtures | Folder | 0777 |
|
|
| hook | Folder | 0777 |
|
|
| hub | Folder | 0777 |
|
|
| lock | Folder | 0777 |
|
|
| moodlenet | Folder | 0777 |
|
|
| navigation | Folder | 0777 |
|
|
| oauth2 | Folder | 0777 |
|
|
| other | Folder | 0777 |
|
|
| output | Folder | 0777 |
|
|
| performance | Folder | 0777 |
|
|
| plugininfo | Folder | 0777 |
|
|
| privacy | Folder | 0777 |
|
|
| route | Folder | 0777 |
|
|
| router | Folder | 0777 |
|
|
| session | Folder | 0777 |
|
|
| task | Folder | 0777 |
|
|
| accesslib_has_capability_test.php | File | 29.76 KB | 0777 |
|
| accesslib_test.php | File | 245.63 KB | 0777 |
|
| adminlib_test.php | File | 7.42 KB | 0777 |
|
| admintree_test.php | File | 18.08 KB | 0777 |
|
| ajaxlib_test.php | File | 4.45 KB | 0777 |
|
| analysers_test.php | File | 12.71 KB | 0777 |
|
| antivirus_test.php | File | 11.98 KB | 0777 |
|
| attribute_helper_test.php | File | 8.41 KB | 0777 |
|
| authlib_test.php | File | 22.97 KB | 0777 |
|
| behat_lib_test.php | File | 3.3 KB | 0777 |
|
| blocklib_test.php | File | 36.31 KB | 0777 |
|
| check_test.php | File | 2.31 KB | 0777 |
|
| client_test.php | File | 4.32 KB | 0777 |
|
| collator_test.php | File | 12.1 KB | 0777 |
|
| completionlib_test.php | File | 92.46 KB | 0777 |
|
| component_test.php | File | 49.28 KB | 0777 |
|
| componentlib_test.php | File | 6.93 KB | 0777 |
|
| configonlylib_test.php | File | 8.95 KB | 0777 |
|
| content_test.php | File | 4.79 KB | 0777 |
|
| context_block_test.php | File | 4.17 KB | 0777 |
|
| context_helper_test.php | File | 22.28 KB | 0777 |
|
| context_test.php | File | 3.42 KB | 0777 |
|
| core_media_player_native_test.php | File | 6.44 KB | 0777 |
|
| core_renderer_template_exploit_test.php | File | 16.54 KB | 0777 |
|
| core_renderer_test.php | File | 7.57 KB | 0777 |
|
| core_userfeedback_test.php | File | 2.3 KB | 0777 |
|
| coverage.php | File | 3.27 KB | 0777 |
|
| cron_test.php | File | 6.82 KB | 0777 |
|
| csvclass_test.php | File | 5.66 KB | 0777 |
|
| curl_security_helper_test.php | File | 14.88 KB | 0777 |
|
| customcontext_test.php | File | 4.67 KB | 0777 |
|
| dataformat_test.php | File | 4.18 KB | 0777 |
|
| datalib_test.php | File | 48.97 KB | 0777 |
|
| datalib_update_with_unique_index_test.php | File | 6.12 KB | 0777 |
|
| date_legacy_test.php | File | 13.67 KB | 0777 |
|
| date_test.php | File | 30.4 KB | 0777 |
|
| deprecation_test.php | File | 15.78 KB | 0777 |
|
| di_test.php | File | 5.33 KB | 0777 |
|
| editorlib_test.php | File | 1.96 KB | 0777 |
|
| emoticon_manager_test.php | File | 4.2 KB | 0777 |
|
| encryption_test.php | File | 9.48 KB | 0777 |
|
| environment_test.php | File | 9.12 KB | 0777 |
|
| exporter_test.php | File | 16.83 KB | 0777 |
|
| externallib_test.php | File | 2.03 KB | 0777 |
|
| filelib_test.php | File | 83.89 KB | 0777 |
|
| filestorage_zip_archive_test.php | File | 2.54 KB | 0777 |
|
| filetypes_test.php | File | 10.09 KB | 0777 |
|
| filter_manager_test.php | File | 3.33 KB | 0777 |
|
| filterlib_test.php | File | 37.09 KB | 0777 |
|
| formatting_test.php | File | 26.09 KB | 0777 |
|
| formslib_test.php | File | 40.1 KB | 0777 |
|
| gdlib_test.php | File | 5.73 KB | 0777 |
|
| googlelib_test.php | File | 1.62 KB | 0777 |
|
| gradelib_test.php | File | 12.01 KB | 0777 |
|
| grades_external_test.php | File | 11.22 KB | 0777 |
|
| grading_external_test.php | File | 26.55 KB | 0777 |
|
| graphlib_test.php | File | 7.14 KB | 0777 |
|
| grouplib_test.php | File | 110.79 KB | 0777 |
|
| h5p_clean_orphaned_records_task_test.php | File | 3.17 KB | 0777 |
|
| html2text_test.php | File | 8.82 KB | 0777 |
|
| htmlpurifier_test.php | File | 23.11 KB | 0777 |
|
| http_client_test.php | File | 14.67 KB | 0777 |
|
| ip_utils_test.php | File | 19.55 KB | 0777 |
|
| jquery_test.php | File | 1.59 KB | 0777 |
|
| ldaplib_test.php | File | 17.77 KB | 0777 |
|
| licenselib_test.php | File | 11.84 KB | 0777 |
|
| locale_test.php | File | 4.96 KB | 0777 |
|
| lock_config_test.php | File | 3.48 KB | 0777 |
|
| lock_test.php | File | 5.34 KB | 0777 |
|
| markdown_test.php | File | 2.27 KB | 0777 |
|
| mathslib_test.php | File | 13.51 KB | 0777 |
|
| medialib_test.php | File | 19.68 KB | 0777 |
|
| message_test.php | File | 16.43 KB | 0777 |
|
| messagelib_test.php | File | 56.44 KB | 0777 |
|
| minify_test.php | File | 3.15 KB | 0777 |
|
| modinfolib_test.php | File | 99.71 KB | 0777 |
|
| moodle_page_test.php | File | 34.62 KB | 0777 |
|
| moodlelib_current_language_test.php | File | 7.68 KB | 0777 |
|
| moodlelib_partial_test.php | File | 4.48 KB | 0777 |
|
| moodlelib_test.php | File | 239.56 KB | 0777 |
|
| myprofilelib_test.php | File | 12.2 KB | 0777 |
|
| navigationlib_test.php | File | 32.56 KB | 0777 |
|
| notification_test.php | File | 4.37 KB | 0777 |
|
| oauth2_test.php | File | 23.16 KB | 0777 |
|
| outputcomponents_test.php | File | 34.31 KB | 0777 |
|
| outputfactories_test.php | File | 6.83 KB | 0777 |
|
| outputrenderers_test.php | File | 1.63 KB | 0777 |
|
| outputrequirementslib_test.php | File | 15.72 KB | 0777 |
|
| param_test.php | File | 4.11 KB | 0777 |
|
| pdflib_test.php | File | 3.21 KB | 0777 |
|
| persistent_test.php | File | 30.68 KB | 0777 |
|
| phpxmlrpc_test.php | File | 2.05 KB | 0777 |
|
| plugin_manager_test.php | File | 31.47 KB | 0777 |
|
| portfoliolib_test.php | File | 8.41 KB | 0777 |
|
| progress_display_test.php | File | 3.76 KB | 0777 |
|
| progress_test.php | File | 14.53 KB | 0777 |
|
| qrcode_test.php | File | 1.69 KB | 0777 |
|
| questionlib_test.php | File | 108.63 KB | 0777 |
|
| regex_test.php | File | 1.56 KB | 0777 |
|
| report_helper_test.php | File | 7 KB | 0777 |
|
| requirejs_test.php | File | 2.23 KB | 0777 |
|
| router_test.php | File | 3.85 KB | 0777 |
|
| rsslib_test.php | File | 7.41 KB | 0777 |
|
| rtlcss_test.php | File | 57.07 KB | 0777 |
|
| sample_questions.ser | File | 141.76 KB | 0777 |
|
| sample_questions.xml | File | 102.62 KB | 0777 |
|
| sample_questions_with_old_image_tag.ser | File | 4.85 KB | 0777 |
|
| sample_questions_with_old_image_tag.xml | File | 4.08 KB | 0777 |
|
| sample_questions_wrong.xml | File | 102.57 KB | 0777 |
|
| scss_test.php | File | 4.31 KB | 0777 |
|
| session_redis_cluster_test.php | File | 4.17 KB | 0777 |
|
| sessionlib_test.php | File | 12.37 KB | 0777 |
|
| setuplib_test.php | File | 20.21 KB | 0777 |
|
| statslib_test.php | File | 26.82 KB | 0777 |
|
| stored_progress_bar_test.php | File | 7.17 KB | 0777 |
|
| string_manager_standard_test.php | File | 10.23 KB | 0777 |
|
| system_clock_test.php | File | 2.42 KB | 0777 |
|
| text_test.php | File | 26.68 KB | 0777 |
|
| theme_config_test.php | File | 7.25 KB | 0777 |
|
| update_api_test.php | File | 6.65 KB | 0777 |
|
| update_checker_test.php | File | 10.91 KB | 0777 |
|
| update_code_manager_test.php | File | 9.12 KB | 0777 |
|
| update_validator_test.php | File | 18.32 KB | 0777 |
|
| upgrade_util_test.php | File | 5.36 KB | 0777 |
|
| upgradelib_test.php | File | 75.43 KB | 0777 |
|
| url_test.php | File | 25.48 KB | 0777 |
|
| user_menu_test.php | File | 3.83 KB | 0777 |
|
| user_test.php | File | 42.3 KB | 0777 |
|
| useragent_test.php | File | 67.06 KB | 0777 |
|
| weblib_format_text_test.php | File | 14.21 KB | 0777 |
|
| weblib_test.php | File | 42.12 KB | 0777 |
|
| xhprof_test.php | File | 10.05 KB | 0777 |
|
| xmlize_test.php | File | 2.57 KB | 0777 |
|
| xsendfilelib_test.php | File | 5 KB | 0777 |
|