2013-01-03 23:29:43 +01:00
|
|
|
<?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;
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
/**
|
|
|
|
* Authentication related tests.
|
|
|
|
*
|
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
|
|
|
* @package core
|
|
|
|
* @category test
|
2013-01-03 23:29:43 +01:00
|
|
|
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2024-06-17 18:07:47 +02:00
|
|
|
* @covers \auth_plugin_base
|
2013-01-03 23:29:43 +01:00
|
|
|
*/
|
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 authlib_test extends \advanced_testcase {
|
2024-05-30 09:37:38 +02:00
|
|
|
public function test_lockout(): void {
|
2013-01-03 23:29:43 +01:00
|
|
|
global $CFG;
|
|
|
|
require_once("$CFG->libdir/authlib.php");
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
2013-10-16 07:19:38 +02:00
|
|
|
$oldlog = ini_get('error_log');
|
|
|
|
ini_set('error_log', "$CFG->dataroot/testlog.log"); // Prevent standard logging.
|
|
|
|
|
2013-10-09 23:19:46 +02:00
|
|
|
unset_config('noemailever');
|
2013-01-03 23:29:43 +01:00
|
|
|
|
|
|
|
set_config('lockoutthreshold', 0);
|
|
|
|
set_config('lockoutwindow', 60*20);
|
|
|
|
set_config('lockoutduration', 60*30);
|
|
|
|
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
|
|
|
|
|
|
// Test lockout is disabled when threshold not set.
|
|
|
|
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test lockout threshold works.
|
|
|
|
|
|
|
|
set_config('lockoutthreshold', 3);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
2013-10-09 23:19:46 +02:00
|
|
|
$sink = $this->redirectEmails();
|
2013-01-03 23:29:43 +01:00
|
|
|
login_attempt_failed($user);
|
2013-10-09 23:19:46 +02:00
|
|
|
$this->assertCount(1, $sink->get_messages());
|
|
|
|
$sink->close();
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertTrue(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test unlock works.
|
|
|
|
|
|
|
|
login_unlock_account($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test lockout window works.
|
|
|
|
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
set_user_preference('login_failed_last', time()-60*20-10, $user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test valid login resets window.
|
|
|
|
|
|
|
|
login_attempt_valid($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test lock duration works.
|
|
|
|
|
2013-10-09 23:19:46 +02:00
|
|
|
$sink = $this->redirectEmails();
|
2013-01-03 23:29:43 +01:00
|
|
|
login_attempt_failed($user);
|
2013-10-09 23:19:46 +02:00
|
|
|
$this->assertCount(1, $sink->get_messages());
|
|
|
|
$sink->close();
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertTrue(login_is_lockedout($user));
|
|
|
|
set_user_preference('login_lockout', time()-60*30+10, $user);
|
|
|
|
$this->assertTrue(login_is_lockedout($user));
|
|
|
|
set_user_preference('login_lockout', time()-60*30-10, $user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
|
|
|
|
|
|
|
// Test lockout ignored pref works.
|
|
|
|
|
|
|
|
set_user_preference('login_lockout_ignored', 1, $user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
login_attempt_failed($user);
|
|
|
|
$this->assertFalse(login_is_lockedout($user));
|
2013-10-16 07:19:38 +02:00
|
|
|
|
|
|
|
ini_set('error_log', $oldlog);
|
2013-01-03 23:29:43 +01:00
|
|
|
}
|
|
|
|
|
2024-05-30 09:37:38 +02:00
|
|
|
public function test_authenticate_user_login(): void {
|
2013-01-03 23:29:43 +01:00
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
2013-10-16 07:19:38 +02:00
|
|
|
$oldlog = ini_get('error_log');
|
|
|
|
ini_set('error_log', "$CFG->dataroot/testlog.log"); // Prevent standard logging.
|
|
|
|
|
2013-10-09 23:19:46 +02:00
|
|
|
unset_config('noemailever');
|
2013-01-03 23:29:43 +01:00
|
|
|
|
|
|
|
set_config('lockoutthreshold', 0);
|
|
|
|
set_config('lockoutwindow', 60*20);
|
|
|
|
set_config('lockoutduration', 60*30);
|
|
|
|
|
|
|
|
$_SERVER['HTTP_USER_AGENT'] = 'no browser'; // Hack around missing user agent in CLI scripts.
|
|
|
|
|
2014-03-13 11:23:26 +08:00
|
|
|
$user1 = $this->getDataGenerator()->create_user(array('username'=>'username1', 'password'=>'password1', 'email'=>'email1@example.com'));
|
|
|
|
$user2 = $this->getDataGenerator()->create_user(array('username'=>'username2', 'password'=>'password2', 'email'=>'email2@example.com', 'suspended'=>1));
|
|
|
|
$user3 = $this->getDataGenerator()->create_user(array('username'=>'username3', 'password'=>'password3', 'email'=>'email2@example.com', 'auth'=>'nologin'));
|
|
|
|
|
|
|
|
// Normal login.
|
2014-01-29 13:27:50 +08:00
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username1', 'password1');
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals($user1->id, $result->id);
|
|
|
|
|
2014-03-13 11:23:26 +08:00
|
|
|
// Normal login with reason.
|
2013-01-03 23:29:43 +01:00
|
|
|
$reason = null;
|
2014-01-29 13:27:50 +08:00
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
|
2014-03-13 11:23:26 +08:00
|
|
|
// Test login via email
|
|
|
|
$reason = null;
|
|
|
|
$this->assertEmpty($CFG->authloginviaemail);
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('email1@example.com', 'password1', false, $reason);
|
|
|
|
$sink->close();
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_NOUSER, $reason);
|
|
|
|
|
|
|
|
set_config('authloginviaemail', 1);
|
|
|
|
$this->assertNotEmpty($CFG->authloginviaemail);
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('email1@example.com', 'password1');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals($user1->id, $result->id);
|
|
|
|
|
|
|
|
$reason = null;
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('email2@example.com', 'password2', false, $reason);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_NOUSER, $reason);
|
|
|
|
set_config('authloginviaemail', 0);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$reason = null;
|
2014-01-29 13:27:50 +08:00
|
|
|
// Capture failed login event.
|
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username1', 'nopass', false, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
// Test Event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username1');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_FAILED);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
2013-01-03 23:29:43 +01:00
|
|
|
|
2018-08-29 09:38:46 +08:00
|
|
|
// Capture failed login token.
|
|
|
|
unset($CFG->alternateloginurl);
|
|
|
|
unset($CFG->disablelogintoken);
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, 'invalidtoken');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED, $reason);
|
|
|
|
// Test Event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username1');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_FAILED);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
|
|
|
|
|
|
|
// Login should work with invalid token if CFG login token settings override it.
|
|
|
|
$CFG->alternateloginurl = 'http://localhost/';
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, 'invalidtoken');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
|
|
|
|
unset($CFG->alternateloginurl);
|
|
|
|
$CFG->disablelogintoken = true;
|
|
|
|
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, 'invalidtoken');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
|
|
|
|
unset($CFG->disablelogintoken);
|
|
|
|
// Normal login with valid token.
|
|
|
|
$reason = null;
|
|
|
|
$token = \core\session\manager::get_login_token();
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, $token);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertEmpty($events);
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$reason = null;
|
2014-01-29 13:27:50 +08:00
|
|
|
// Capture failed login event.
|
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username2', 'password2', false, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_SUSPENDED, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
// Test Event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username2');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_SUSPENDED);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
2013-01-03 23:29:43 +01:00
|
|
|
|
|
|
|
$reason = null;
|
2014-01-29 13:27:50 +08:00
|
|
|
// Capture failed login event.
|
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username3', 'password3', false, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_SUSPENDED, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
// Test Event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username3');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_SUSPENDED);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
2013-01-03 23:29:43 +01:00
|
|
|
|
|
|
|
$reason = null;
|
2014-01-29 13:27:50 +08:00
|
|
|
// Capture failed login event.
|
|
|
|
$sink = $this->redirectEvents();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username4', 'password3', false, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_NOUSER, $reason);
|
2014-01-29 13:27:50 +08:00
|
|
|
// Test Event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username4');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_NOUSER);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
2013-01-03 23:29:43 +01:00
|
|
|
|
|
|
|
set_config('lockoutthreshold', 3);
|
2013-07-27 11:13:28 +02:00
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
$reason = null;
|
|
|
|
$result = authenticate_user_login('username1', 'nopass', false, $reason);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED, $reason);
|
|
|
|
$result = authenticate_user_login('username1', 'nopass', false, $reason);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED, $reason);
|
2013-10-09 23:19:46 +02:00
|
|
|
$sink = $this->redirectEmails();
|
2013-01-03 23:29:43 +01:00
|
|
|
$result = authenticate_user_login('username1', 'nopass', false, $reason);
|
2013-10-09 23:19:46 +02:00
|
|
|
$this->assertCount(1, $sink->get_messages());
|
|
|
|
$sink->close();
|
2013-01-03 23:29:43 +01:00
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED, $reason);
|
|
|
|
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_LOCKOUT, $reason);
|
|
|
|
|
|
|
|
$result = authenticate_user_login('username1', 'password1', true, $reason);
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
2013-10-16 07:19:38 +02:00
|
|
|
|
|
|
|
ini_set('error_log', $oldlog);
|
2020-01-28 09:11:43 +10:00
|
|
|
|
|
|
|
// Test password policy check on login.
|
|
|
|
$CFG->passwordpolicy = 0;
|
|
|
|
$CFG->passwordpolicycheckonlogin = 1;
|
|
|
|
|
|
|
|
// First test with password policy disabled.
|
|
|
|
$user4 = $this->getDataGenerator()->create_user(array('username' => 'username4', 'password' => 'a'));
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$reason = null;
|
|
|
|
$result = authenticate_user_login('username4', 'a', false, $reason);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
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
|
|
|
$notifications = notification::fetch();
|
2020-01-28 09:11:43 +10:00
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
$this->assertEquals(get_user_preferences('auth_forcepasswordchange', false, $result), false);
|
|
|
|
// Check no events.
|
|
|
|
$this->assertEquals(count($events), 0);
|
|
|
|
// Check no notifications.
|
|
|
|
$this->assertEquals(count($notifications), 0);
|
|
|
|
|
|
|
|
// Now test with the password policy enabled, flip reset flag.
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$reason = null;
|
|
|
|
$CFG->passwordpolicy = 1;
|
|
|
|
$result = authenticate_user_login('username4', 'a', false, $reason);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
$this->assertEquals(get_user_preferences('auth_forcepasswordchange', true, $result), true);
|
|
|
|
// Check that an event was emitted for the policy failure.
|
|
|
|
$this->assertEquals(count($events), 1);
|
|
|
|
$this->assertEquals(reset($events)->eventname, '\core\event\user_password_policy_failed');
|
|
|
|
// Check notification fired.
|
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
|
|
|
$notifications = notification::fetch();
|
2020-01-28 09:11:43 +10:00
|
|
|
$this->assertEquals(count($notifications), 1);
|
|
|
|
|
|
|
|
// Now the same tests with a user that passes the password policy.
|
|
|
|
$user5 = $this->getDataGenerator()->create_user(array('username' => 'username5', 'password' => 'ThisPassword1sSecure!'));
|
|
|
|
$reason = null;
|
|
|
|
$CFG->passwordpolicy = 0;
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username5', 'ThisPassword1sSecure!', false, $reason);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
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
|
|
|
$notifications = notification::fetch();
|
2020-01-28 09:11:43 +10:00
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
$this->assertEquals(get_user_preferences('auth_forcepasswordchange', false, $result), false);
|
|
|
|
// Check no events.
|
|
|
|
$this->assertEquals(count($events), 0);
|
|
|
|
// Check no notifications.
|
|
|
|
$this->assertEquals(count($notifications), 0);
|
|
|
|
|
|
|
|
$reason = null;
|
|
|
|
$CFG->passwordpolicy = 1;
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username5', 'ThisPassword1sSecure!', false, $reason);
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
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
|
|
|
$notifications = notification::fetch();
|
2020-01-28 09:11:43 +10:00
|
|
|
$this->assertInstanceOf('stdClass', $result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_OK, $reason);
|
|
|
|
$this->assertEquals(get_user_preferences('auth_forcepasswordchange', false, $result), false);
|
|
|
|
// Check no events.
|
|
|
|
$this->assertEquals(count($events), 0);
|
|
|
|
// Check no notifications.
|
|
|
|
$this->assertEquals(count($notifications), 0);
|
2023-05-23 10:10:07 +07:00
|
|
|
|
|
|
|
// Capture failed login reCaptcha.
|
|
|
|
$CFG->recaptchapublickey = 'randompublickey';
|
|
|
|
$CFG->recaptchaprivatekey = 'randomprivatekey';
|
|
|
|
$CFG->enableloginrecaptcha = true;
|
|
|
|
|
|
|
|
// Login with blank captcha.
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, false, '');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED_RECAPTCHA, $reason);
|
|
|
|
|
|
|
|
// Test event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username1');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_FAILED_RECAPTCHA);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
|
|
|
|
|
|
|
// Login with invalid captcha.
|
|
|
|
$sink = $this->redirectEvents();
|
|
|
|
$result = authenticate_user_login('username1', 'password1', false, $reason, false, 'invalidcaptcha');
|
|
|
|
$events = $sink->get_events();
|
|
|
|
$sink->close();
|
|
|
|
$event = array_pop($events);
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
$this->assertEquals(AUTH_LOGIN_FAILED_RECAPTCHA, $reason);
|
|
|
|
|
|
|
|
// Test event.
|
|
|
|
$this->assertInstanceOf('\core\event\user_login_failed', $event);
|
|
|
|
$eventdata = $event->get_data();
|
|
|
|
$this->assertSame($eventdata['other']['username'], 'username1');
|
|
|
|
$this->assertSame($eventdata['other']['reason'], AUTH_LOGIN_FAILED_RECAPTCHA);
|
|
|
|
$this->assertEventContextNotUsed($event);
|
|
|
|
|
|
|
|
// Unset settings.
|
|
|
|
unset($CFG->recaptchapublickey);
|
|
|
|
unset($CFG->recaptchaprivatekey);
|
|
|
|
unset($CFG->enableloginrecaptcha);
|
2013-01-03 23:29:43 +01:00
|
|
|
}
|
2013-07-30 16:41:20 +08:00
|
|
|
|
2024-05-30 09:37:38 +02:00
|
|
|
public function test_user_loggedin_event_exceptions(): void {
|
2013-07-30 16:41:20 +08:00
|
|
|
try {
|
|
|
|
$event = \core\event\user_loggedin::create(array('objectid' => 1));
|
|
|
|
$this->fail('\core\event\user_loggedin requires other[\'username\']');
|
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
|
|
|
} catch(\Exception $e) {
|
2013-07-30 16:41:20 +08:00
|
|
|
$this->assertInstanceOf('coding_exception', $e);
|
|
|
|
}
|
|
|
|
}
|
2020-03-17 13:04:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the {@link signup_validate_data()} duplicate email validation.
|
|
|
|
*/
|
2024-05-30 12:15:15 +02:00
|
|
|
public function test_signup_validate_data_same_email(): void {
|
2020-03-17 13:04:07 +01:00
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->libdir . '/authlib.php');
|
2020-03-28 16:23:34 +01:00
|
|
|
require_once($CFG->libdir . '/phpmailer/moodle_phpmailer.php');
|
2020-03-17 13:04:07 +01:00
|
|
|
require_once($CFG->dirroot . '/user/profile/lib.php');
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
|
|
|
$CFG->registerauth = 'email';
|
|
|
|
$CFG->passwordpolicy = false;
|
|
|
|
|
|
|
|
// In this test, we want to check accent-sensitive email search. However, accented email addresses do not pass
|
|
|
|
// the default `validate_email()` and Moodle does not yet provide a CFG switch to allow such emails. So we
|
|
|
|
// inject our own validation method here and revert it back once we are done. This custom validator method is
|
|
|
|
// identical to the default 'php' validator with the only difference: it has the FILTER_FLAG_EMAIL_UNICODE set
|
|
|
|
// so that it allows to use non-ASCII characters in email addresses.
|
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
|
|
|
$defaultvalidator = \moodle_phpmailer::$validator;
|
|
|
|
\moodle_phpmailer::$validator = function($address) {
|
2020-03-17 13:04:07 +01:00
|
|
|
return (bool) filter_var($address, FILTER_VALIDATE_EMAIL, FILTER_FLAG_EMAIL_UNICODE);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Check that two users cannot share the same email address if the site is configured so.
|
|
|
|
// Emails in Moodle are supposed to be case-insensitive (and accent-sensitive but accents are not yet supported).
|
|
|
|
$CFG->allowaccountssameemail = false;
|
|
|
|
|
|
|
|
$u1 = $this->getDataGenerator()->create_user([
|
|
|
|
'username' => 'abcdef',
|
|
|
|
'email' => 'abcdef@example.com',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$formdata = [
|
|
|
|
'username' => 'newuser',
|
|
|
|
'firstname' => 'First',
|
|
|
|
'lastname' => 'Last',
|
|
|
|
'password' => 'weak',
|
|
|
|
'email' => 'ABCDEF@example.com',
|
|
|
|
];
|
|
|
|
|
|
|
|
$errors = signup_validate_data($formdata, []);
|
2020-09-01 00:44:13 +02:00
|
|
|
$this->assertStringContainsString('This email address is already registered.', $errors['email']);
|
2020-03-17 13:04:07 +01:00
|
|
|
|
|
|
|
// Emails are accent-sensitive though so if we change a -> á in the u1's email, it should pass.
|
|
|
|
// Please note that Moodle does not normally support such emails yet. We test the DB search sensitivity here.
|
|
|
|
$formdata['email'] = 'ábcdef@example.com';
|
|
|
|
$errors = signup_validate_data($formdata, []);
|
|
|
|
$this->assertArrayNotHasKey('email', $errors);
|
|
|
|
|
|
|
|
// Check that users can share the same email if the site is configured so.
|
|
|
|
$CFG->allowaccountssameemail = true;
|
|
|
|
$formdata['email'] = 'abcdef@example.com';
|
|
|
|
$errors = signup_validate_data($formdata, []);
|
|
|
|
$this->assertArrayNotHasKey('email', $errors);
|
|
|
|
|
|
|
|
// Restore the original email address validator.
|
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
|
|
|
\moodle_phpmailer::$validator = $defaultvalidator;
|
2020-03-17 13:04:07 +01:00
|
|
|
}
|
2024-03-21 00:09:12 +11:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the find_cli_user method
|
|
|
|
*/
|
|
|
|
public function test_find_cli_user(): void {
|
|
|
|
global $CFG, $USER;
|
|
|
|
require_once("$CFG->libdir/authlib.php");
|
|
|
|
require_once("$CFG->libdir/tests/fixtures/testable_auth_plugin_base.php");
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
|
|
|
$user = \testable_auth_plugin_base::find_cli_admin_user();
|
|
|
|
$this->assertEmpty($user);
|
|
|
|
|
|
|
|
$u1 = $this->getDataGenerator()->create_user([
|
|
|
|
'username' => 'abcdef',
|
|
|
|
'email' => 'abcdef@example.com',
|
|
|
|
]);
|
|
|
|
$user = \testable_auth_plugin_base::find_cli_admin_user();
|
|
|
|
$this->assertEmpty($user); // User is not an admin yet.
|
|
|
|
|
|
|
|
\testable_auth_plugin_base::login_cli_admin_user();
|
|
|
|
$this->assertEquals($USER->id, 0); // User is not logged in.
|
|
|
|
|
|
|
|
$CFG->siteadmins .= "," . $u1->id;
|
|
|
|
|
|
|
|
\testable_auth_plugin_base::login_cli_admin_user();
|
|
|
|
$this->assertEquals($USER->id, $u1->id); // User is now logged in.
|
|
|
|
|
|
|
|
$user = \testable_auth_plugin_base::find_cli_admin_user();
|
|
|
|
$this->assertNotEmpty($user);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the get_enabled_auth_plugin_classes method
|
|
|
|
*/
|
|
|
|
public function test_get_enabled_auth_plugin_classes(): void {
|
|
|
|
global $CFG;
|
|
|
|
require_once("$CFG->libdir/authlib.php");
|
|
|
|
$plugins = \auth_plugin_base::get_enabled_auth_plugin_classes();
|
|
|
|
$this->assertEquals(get_class($plugins[0]), 'auth_plugin_manual');
|
|
|
|
$this->assertEquals(count($plugins), 3);
|
|
|
|
}
|
|
|
|
|
2024-07-11 07:57:33 +07:00
|
|
|
/**
|
|
|
|
* Test case for checking the email greetings in account lockout notification emails.
|
|
|
|
*
|
|
|
|
* @covers ::login_lock_account()
|
|
|
|
*/
|
|
|
|
public function test_email_greetings(): void {
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
|
|
|
|
|
|
$sink = $this->redirectEmails(); // Make sure we are redirecting emails.
|
|
|
|
login_lock_account($user);
|
|
|
|
$result = $sink->get_messages();
|
|
|
|
$sink->close();
|
|
|
|
// Test greetings.
|
|
|
|
$this->assertStringContainsString('Hi ' . $user->firstname, quoted_printable_decode($result[0]->body));
|
|
|
|
}
|
|
|
|
|
2013-01-03 23:29:43 +01:00
|
|
|
}
|