2015-06-03 12:31:40 +05:30
|
|
|
<?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/>.
|
|
|
|
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
namespace core;
|
2015-06-03 12:31:40 +05:30
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->dirroot . '/lib/myprofilelib.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for myprofilelib apis.
|
|
|
|
*
|
|
|
|
* @package core
|
|
|
|
* @copyright 2015 onwards Ankit agarwal <ankit.agrr@gmail.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
|
|
|
|
*/
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
class myprofilelib_test extends \advanced_testcase {
|
2015-06-03 12:31:40 +05:30
|
|
|
|
|
|
|
/**
|
2015-12-22 14:46:02 +08:00
|
|
|
* @var stdClass The user.
|
2015-06-03 12:31:40 +05:30
|
|
|
*/
|
2015-12-22 14:46:02 +08:00
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var stdClass The course.
|
|
|
|
*/
|
|
|
|
private $course;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \core_user\output\myprofile\tree The navigation tree.
|
|
|
|
*/
|
|
|
|
private $tree;
|
2020-08-02 10:59:12 +02:00
|
|
|
public function setUp(): void {
|
2015-12-22 14:46:02 +08:00
|
|
|
// Set the $PAGE->url value so core_myprofile_navigation() doesn't complain.
|
|
|
|
global $PAGE;
|
|
|
|
$PAGE->set_url('/test');
|
2015-06-03 12:31:40 +05:30
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->user = $this->getDataGenerator()->create_user();
|
|
|
|
$this->course = $this->getDataGenerator()->create_course();
|
|
|
|
$this->tree = new \core_user\output\myprofile\tree();
|
2015-06-03 12:31:40 +05:30
|
|
|
$this->resetAfterTest();
|
2015-12-22 14:46:02 +08:00
|
|
|
}
|
2015-06-03 12:31:40 +05:30
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as an admin viewing a user's course profile.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_as_admin() {
|
|
|
|
$this->setAdminUser();
|
2015-06-03 12:31:40 +05:30
|
|
|
$iscurrentuser = false;
|
|
|
|
|
|
|
|
// Test tree as admin user.
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$categories = $reflector->getProperty('categories');
|
|
|
|
$cats = $categories->getValue($this->tree);
|
2015-06-03 12:31:40 +05:30
|
|
|
$this->assertArrayHasKey('contact', $cats);
|
|
|
|
$this->assertArrayHasKey('coursedetails', $cats);
|
|
|
|
$this->assertArrayHasKey('miscellaneous', $cats);
|
|
|
|
$this->assertArrayHasKey('reports', $cats);
|
|
|
|
$this->assertArrayHasKey('administration', $cats);
|
|
|
|
$this->assertArrayHasKey('loginactivity', $cats);
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayHasKey('fullprofile', $nodes->getValue($this->tree));
|
|
|
|
}
|
2015-06-03 12:31:40 +05:30
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as a user without permission to view the full
|
|
|
|
* profile of another another user.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_course_without_permission() {
|
2023-05-09 11:09:40 +07:00
|
|
|
// User without permission.
|
|
|
|
$this->setUser($this->getDataGenerator()->create_user());
|
2015-12-22 14:46:02 +08:00
|
|
|
$iscurrentuser = false;
|
|
|
|
|
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayNotHasKey('fullprofile', $nodes->getValue($this->tree));
|
|
|
|
}
|
2015-06-03 12:31:40 +05:30
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as the currently logged in user.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_profile_link_as_current_user() {
|
|
|
|
$this->setUser($this->user);
|
2015-06-03 12:31:40 +05:30
|
|
|
$iscurrentuser = true;
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayHasKey('editprofile', $nodes->getValue($this->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as the admin viewing another user.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_profile_link_as_admin() {
|
2015-06-03 12:31:40 +05:30
|
|
|
$this->setAdminUser();
|
|
|
|
$iscurrentuser = false;
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayHasKey('editprofile', $nodes->getValue($this->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function when viewing the preference page as an admin.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_preference_as_admin() {
|
2015-06-03 12:31:40 +05:30
|
|
|
$this->setAdminUser();
|
|
|
|
$iscurrentuser = false;
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayHasKey('preferences', $nodes->getValue($this->tree));
|
|
|
|
$this->assertArrayHasKey('loginas', $nodes->getValue($this->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function when viewing the preference
|
|
|
|
* page as another user without the ability to use the 'loginas' functionality.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_preference_without_permission() {
|
|
|
|
// Login as link for a user who doesn't have the capability to login as.
|
2023-05-09 11:09:40 +07:00
|
|
|
$this->setUser($this->getDataGenerator()->create_user());
|
2015-06-03 12:31:40 +05:30
|
|
|
$iscurrentuser = false;
|
2015-12-22 14:46:02 +08:00
|
|
|
|
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayNotHasKey('loginas', $nodes->getValue($this->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as an admin viewing another user's contact details.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_contact_fields_as_admin() {
|
|
|
|
global $CFG;
|
2015-06-03 12:31:40 +05:30
|
|
|
|
|
|
|
// User contact fields.
|
MDL-28452 core_user: migrate social profile fields
Create a new profile field type, move all existing content of the fields
'icq', 'skype', 'aim', 'yahoo', 'msn' and 'url' in the mdl_user table to
theses new profile fields if needed.
AMOS BEGIN
MOV [aimid,core],[aimid,courseimage,profilefield_social]
MOV [yahooid,core],[yahooid,profilefield_social]
MOV [skypeid,core],[skypeid,profilefield_social]
MOV [icqnumber,core],[icqnumber,profilefield_social]
MOV [msnid,core],[msnid,profilefield_social]
MOV [webpage,core],[webpage,profilefield_social]
AMOS END
2020-11-17 19:43:49 +01:00
|
|
|
set_config("hiddenuserfields", "country,city");
|
2015-06-03 12:31:40 +05:30
|
|
|
set_config("showuseridentity", "email,address,phone1,phone2,institution,department,idnumber");
|
|
|
|
$hiddenfields = explode(',', $CFG->hiddenuserfields);
|
|
|
|
$identityfields = explode(',', $CFG->showuseridentity);
|
|
|
|
$this->setAdminUser();
|
|
|
|
$iscurrentuser = false;
|
|
|
|
|
|
|
|
// Make sure fields are not empty.
|
|
|
|
$fields = array(
|
|
|
|
'country' => 'AU',
|
|
|
|
'city' => 'Silent hill',
|
|
|
|
'email' => 'Rulelikeaboss@example.com',
|
|
|
|
'address' => 'Didn\'t I mention silent hill already ?',
|
|
|
|
'phone1' => '123',
|
|
|
|
'phone2' => '234',
|
|
|
|
'institution' => 'strange land',
|
|
|
|
'department' => 'video game/movie',
|
|
|
|
'idnumber' => 'SLHL'
|
|
|
|
);
|
|
|
|
foreach ($fields as $field => $value) {
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->user->$field = $value;
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// User with proper permissions.
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
2015-06-03 12:31:40 +05:30
|
|
|
foreach ($hiddenfields as $field) {
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->assertArrayHasKey($field, $nodes->getValue($this->tree));
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
|
|
|
foreach ($identityfields as $field) {
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->assertArrayHasKey($field, $nodes->getValue($this->tree));
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
2015-12-22 14:46:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as a user viewing another user's profile
|
|
|
|
* ensuring that the contact details are not shown.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_contact_field_without_permission() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$iscurrentuser = false;
|
|
|
|
$hiddenfields = explode(',', $CFG->hiddenuserfields);
|
|
|
|
$identityfields = explode(',', $CFG->showuseridentity);
|
2015-06-03 12:31:40 +05:30
|
|
|
|
|
|
|
// User without permission.
|
2023-05-09 11:09:40 +07:00
|
|
|
$this->setUser($this->getDataGenerator()->create_user());
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
2015-06-03 12:31:40 +05:30
|
|
|
foreach ($hiddenfields as $field) {
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->assertArrayNotHasKey($field, $nodes->getValue($this->tree));
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
|
|
|
foreach ($identityfields as $field) {
|
2015-12-22 14:46:02 +08:00
|
|
|
$this->assertArrayNotHasKey($field, $nodes->getValue($this->tree));
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
2015-12-22 14:46:02 +08:00
|
|
|
}
|
2015-06-03 12:31:40 +05:30
|
|
|
|
2021-09-14 09:41:58 +01:00
|
|
|
/**
|
|
|
|
* Data provider for {@see test_core_myprofile_navigation_contact_timezone}
|
|
|
|
*
|
|
|
|
* @return array[]
|
|
|
|
*/
|
|
|
|
public function core_myprofile_navigation_contact_timezone_provider(): array {
|
|
|
|
return [
|
|
|
|
'Hidden field' => ['timezone', '99', '99', null],
|
|
|
|
'Forced timezone' => ['', 'Europe/London', 'Pacific/Tahiti', 'Europe/London'],
|
|
|
|
'User timezone (default)' => ['', '99', '99', 'Australia/Perth'],
|
|
|
|
'User timezone (selected)' => ['', '99', 'Pacific/Tahiti', 'Pacific/Tahiti'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test timezone node added to user profile navigation
|
|
|
|
*
|
|
|
|
* @param string $hiddenuserfields
|
|
|
|
* @param string $forcetimezone Timezone identifier or '99' (User can choose their own)
|
|
|
|
* @param string $usertimezone Timezone identifier or '99' (Use server default)
|
|
|
|
* @param string|null $expectresult
|
|
|
|
* @return bool
|
|
|
|
*
|
|
|
|
* @dataProvider core_myprofile_navigation_contact_timezone_provider
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_contact_timezone(string $hiddenuserfields, string $forcetimezone,
|
|
|
|
string $usertimezone, ?string $expectresult = null): void {
|
|
|
|
|
|
|
|
set_config('hiddenuserfields', $hiddenuserfields);
|
|
|
|
set_config('forcetimezone', $forcetimezone);
|
|
|
|
|
|
|
|
// Set the timezone of our test user, and load their navigation tree.
|
|
|
|
$this->user->timezone = $usertimezone;
|
|
|
|
$this->setUser($this->user);
|
|
|
|
|
|
|
|
core_myprofile_navigation($this->tree, $this->user, true, null);
|
|
|
|
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2021-09-14 09:41:58 +01:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
|
|
|
|
/** @var \core_user\output\myprofile\node[] $tree */
|
|
|
|
$tree = $nodes->getValue($this->tree);
|
|
|
|
if ($expectresult !== null) {
|
|
|
|
$this->assertArrayHasKey('timezone', $tree);
|
|
|
|
$this->assertEquals($expectresult, $tree['timezone']->content);
|
|
|
|
} else {
|
|
|
|
$this->assertArrayNotHasKey('timezone', $tree);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as an admin viewing another user's
|
|
|
|
* profile ensuring the login activity links are shown.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigation_login_activity() {
|
2015-06-03 12:31:40 +05:30
|
|
|
// First access, last access, last ip.
|
|
|
|
$this->setAdminUser();
|
|
|
|
$iscurrentuser = false;
|
|
|
|
|
2015-12-22 14:46:02 +08:00
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayHasKey('firstaccess', $nodes->getValue($this->tree));
|
|
|
|
$this->assertArrayHasKey('lastaccess', $nodes->getValue($this->tree));
|
|
|
|
$this->assertArrayHasKey('lastip', $nodes->getValue($this->tree));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the core_myprofile_navigation() function as a user viewing another user's profile
|
|
|
|
* ensuring the login activity links are not shown.
|
|
|
|
*/
|
|
|
|
public function test_core_myprofile_navigationn_login_activity_without_permission() {
|
2015-06-03 12:31:40 +05:30
|
|
|
// User without permission.
|
|
|
|
set_config("hiddenuserfields", "firstaccess,lastaccess,lastip");
|
2023-05-09 11:09:40 +07:00
|
|
|
$this->setUser($this->getDataGenerator()->create_user());
|
2015-06-03 12:31:40 +05:30
|
|
|
$iscurrentuser = false;
|
2015-12-22 14:46:02 +08:00
|
|
|
|
|
|
|
core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null);
|
MDL-75111 phpunit: Move tests to use correct names and ns (take#4)
Applied the following changes to various testcase classes:
- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
Special mention to:
- The following task tests have been moved within the level2 directory:
- \core\adhoc_task_test => \core\task\adhoc_task_test
- \core\scheduled_task_test => \core\task\scheduled_task_test
- \core\calendar_cron_task_test => \core\task\calendar_cron_task_test
- \core\h5p_get_content_types_task_test => \core\task\h5p_get_content_types_task_test
- \core\task_database_logger_test => \core\task\database_logger_test
- \core\task_logging_test => \core\task\logging_test
- The following event tests have been moved within level2 directory:
- \core\event_context_locked_test => \core\event\context_locked_test
- \core\event_deprecated_test => \core\event\deprecated_test
- \core\event_grade_deleted_test => \core\event\grade_deleted_test
- \core\event_profile_field_test => \core\event\profile_field_test
- \core\event_unknown_logged_test => \core\event\unknown_logged_test
- \core\event_user_graded_test => \core\event\user_graded_test
- \core\event_user_password_updated_test => \core\event\user_password_updated_test
- The following output tests have been moved within level2 directory:
- \core\mustache_template_finder_test => \core\output\mustache_template_finder_test
- \core\mustache_template_source_loader_test => \core\output\mustache_template_source_loader_test
- \core\output_mustache_helper_collection_test => \core\output\mustache_helper_collection_test
- The following tests have been moved to their correct tests directories:
- lib/tests/time_splittings_test.php => analytics/tests/time_splittings_test.php
- All the classes and tests under lib/filebrowser and lib/filestorage
belong to core, not to core_files. Some day we should move
them to their correct subsystem.
- All the classes and tests under lib/grade belong to core, not
to core_grades. Some day we should move them to their correct
subsystem.
- The core_grades_external class and its \core\grades_external_test
unit test should belong to the grades subsystem or, alternatively,
to \core\external, they both should be moved together.
- The core_grading_external class and its \core\grading_external_test
unit test should belong to the grading subsystem or, alternatively,
to \core\external, they both should be moved together.
- The \core\message\message and \core\message\inbound (may be others)
classes, and their associated tests should go to the core_message
subsystem.
- The core_user class, and its associated tests should go to the
core_user subsystem.
- The \core\update namespace is plain wrong (update is not valid API)
and needs action 1) create it or 2) move elsewhere.
2022-07-01 16:43:34 +02:00
|
|
|
$reflector = new \ReflectionObject($this->tree);
|
2015-12-22 14:46:02 +08:00
|
|
|
$nodes = $reflector->getProperty('nodes');
|
|
|
|
$this->assertArrayNotHasKey('firstaccess', $nodes->getValue($this->tree));
|
|
|
|
$this->assertArrayNotHasKey('lastaccess', $nodes->getValue($this->tree));
|
|
|
|
$this->assertArrayNotHasKey('lastip', $nodes->getValue($this->tree));
|
2015-06-03 12:31:40 +05:30
|
|
|
}
|
|
|
|
}
|