mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
375 lines
13 KiB
PHP
375 lines
13 KiB
PHP
|
<?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/>.
|
||
|
|
||
|
/**
|
||
|
* Unit tests for session manager class.
|
||
|
*
|
||
|
* @package core
|
||
|
* @category phpunit
|
||
|
* @copyright 2013 Petr Skoda {@link http://skodak.org}
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
/**
|
||
|
* Unit tests for session manager class.
|
||
|
*
|
||
|
* @package core
|
||
|
* @category phpunit
|
||
|
* @copyright 2013 Petr Skoda {@link http://skodak.org}
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
class core_session_manager_testcase extends advanced_testcase {
|
||
|
public function test_start() {
|
||
|
$this->resetAfterTest();
|
||
|
// Session must be started only once...
|
||
|
\core\session\manager::start();
|
||
|
$this->assertDebuggingCalled('Session was already started!', DEBUG_DEVELOPER);
|
||
|
}
|
||
|
|
||
|
public function test_set_user() {
|
||
|
global $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$user = $this->getDataGenerator()->create_user();
|
||
|
$this->setUser(0);
|
||
|
$this->assertEquals(0, $USER->id);
|
||
|
|
||
|
\core\session\manager::set_user($user);
|
||
|
$this->assertEquals($user->id, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_login_user() {
|
||
|
global $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$user = $this->getDataGenerator()->create_user();
|
||
|
$this->setUser(0);
|
||
|
$this->assertEquals(0, $USER->id);
|
||
|
|
||
|
@\core\session\manager::login_user($user); // Ignore header error messages.
|
||
|
$this->assertEquals($user->id, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_terminate_current() {
|
||
|
global $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
// This can not be tested much without real session...
|
||
|
$this->setAdminUser();
|
||
|
\core\session\manager::terminate_current();
|
||
|
$this->assertEquals(0, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_write_close() {
|
||
|
global $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
// Just make sure no errors and $USER->id is kept
|
||
|
$this->setAdminUser();
|
||
|
$userid = $USER->id;
|
||
|
\core\session\manager::write_close();
|
||
|
$this->assertSame($userid, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_session_exists() {
|
||
|
global $CFG;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
// The file handler is used by default, so let's fake the data somehow.
|
||
|
$sid = md5('hokus');
|
||
|
mkdir("$CFG->dataroot/sessions/", $CFG->directorypermissions, true);
|
||
|
touch("$CFG->dataroot/sessions/sess_$sid");
|
||
|
|
||
|
$this->assertTrue(\core\session\manager::session_exists($sid));
|
||
|
}
|
||
|
|
||
|
public function test_touch_session() {
|
||
|
global $DB;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$sid = md5('hokus');
|
||
|
$record = new \stdClass();
|
||
|
$record->state = 0;
|
||
|
$record->sid = $sid;
|
||
|
$record->sessdata = null;
|
||
|
$record->userid = 2;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 30;
|
||
|
$record->firstip = $record->lastip = '10.0.0.1';
|
||
|
$record->id = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$now = time();
|
||
|
\core\session\manager::touch_session($sid);
|
||
|
$updated = $DB->get_field('sessions', 'timemodified', array('id'=>$record->id));
|
||
|
|
||
|
$this->assertGreaterThanOrEqual($now, $updated);
|
||
|
$this->assertLessThanOrEqual(time(), $updated);
|
||
|
}
|
||
|
|
||
|
public function test_kill_session() {
|
||
|
global $DB, $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$this->setAdminUser();
|
||
|
$userid = $USER->id;
|
||
|
|
||
|
$sid = md5('hokus');
|
||
|
$record = new \stdClass();
|
||
|
$record->state = 0;
|
||
|
$record->sid = $sid;
|
||
|
$record->sessdata = null;
|
||
|
$record->userid = $userid;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 30;
|
||
|
$record->firstip = $record->lastip = '10.0.0.1';
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->userid = 0;
|
||
|
$record->sid = md5('pokus');
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$this->assertEquals(2, $DB->count_records('sessions'));
|
||
|
|
||
|
\core\session\manager::kill_session($sid);
|
||
|
|
||
|
$this->assertEquals(1, $DB->count_records('sessions'));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('sid'=>$sid)));
|
||
|
|
||
|
$this->assertSame($userid, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_kill_user_sessions() {
|
||
|
global $DB, $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$this->setAdminUser();
|
||
|
$userid = $USER->id;
|
||
|
|
||
|
$sid = md5('hokus');
|
||
|
$record = new \stdClass();
|
||
|
$record->state = 0;
|
||
|
$record->sid = $sid;
|
||
|
$record->sessdata = null;
|
||
|
$record->userid = $userid;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 30;
|
||
|
$record->firstip = $record->lastip = '10.0.0.1';
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus2');
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->userid = 0;
|
||
|
$record->sid = md5('pokus');
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$this->assertEquals(3, $DB->count_records('sessions'));
|
||
|
|
||
|
\core\session\manager::kill_user_sessions($userid);
|
||
|
|
||
|
$this->assertEquals(1, $DB->count_records('sessions'));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('userid'=>$userid)));
|
||
|
}
|
||
|
|
||
|
public function test_kill_all_sessions() {
|
||
|
global $DB, $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$this->setAdminUser();
|
||
|
$userid = $USER->id;
|
||
|
|
||
|
$sid = md5('hokus');
|
||
|
$record = new \stdClass();
|
||
|
$record->state = 0;
|
||
|
$record->sid = $sid;
|
||
|
$record->sessdata = null;
|
||
|
$record->userid = $userid;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 30;
|
||
|
$record->firstip = $record->lastip = '10.0.0.1';
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus2');
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->userid = 0;
|
||
|
$record->sid = md5('pokus');
|
||
|
$DB->insert_record('sessions', $record);
|
||
|
|
||
|
$this->assertEquals(3, $DB->count_records('sessions'));
|
||
|
|
||
|
\core\session\manager::kill_all_sessions();
|
||
|
|
||
|
$this->assertEquals(0, $DB->count_records('sessions'));
|
||
|
$this->assertSame(0, $USER->id);
|
||
|
}
|
||
|
|
||
|
public function test_gc() {
|
||
|
global $CFG, $DB, $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$this->setAdminUser();
|
||
|
$adminid = $USER->id;
|
||
|
$this->setGuestUser();
|
||
|
$guestid = $USER->id;
|
||
|
$this->setUser(0);
|
||
|
|
||
|
$CFG->sessiontimeout = 60*10;
|
||
|
|
||
|
$record = new \stdClass();
|
||
|
$record->state = 0;
|
||
|
$record->sid = md5('hokus1');
|
||
|
$record->sessdata = null;
|
||
|
$record->userid = $adminid;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 30;
|
||
|
$record->firstip = $record->lastip = '10.0.0.1';
|
||
|
$r1 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus2');
|
||
|
$record->userid = $adminid;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 60*20;
|
||
|
$r2 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus3');
|
||
|
$record->userid = $guestid;
|
||
|
$record->timecreated = time() - 60*60*60;
|
||
|
$record->timemodified = time() - 60*20;
|
||
|
$r3 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus4');
|
||
|
$record->userid = $guestid;
|
||
|
$record->timecreated = time() - 60*60*60;
|
||
|
$record->timemodified = time() - 60*10*5 - 60;
|
||
|
$r4 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus5');
|
||
|
$record->userid = 0;
|
||
|
$record->timecreated = time() - 60*5;
|
||
|
$record->timemodified = time() - 60*5;
|
||
|
$r5 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus6');
|
||
|
$record->userid = 0;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 60*10 -10;
|
||
|
$r6 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
$record->sid = md5('hokus7');
|
||
|
$record->userid = 0;
|
||
|
$record->timecreated = time() - 60*60;
|
||
|
$record->timemodified = time() - 60*9;
|
||
|
$r7 = $DB->insert_record('sessions', $record);
|
||
|
|
||
|
\core\session\manager::gc();
|
||
|
|
||
|
$this->assertTrue($DB->record_exists('sessions', array('id'=>$r1)));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('id'=>$r2)));
|
||
|
$this->assertTrue($DB->record_exists('sessions', array('id'=>$r3)));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('id'=>$r4)));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('id'=>$r5)));
|
||
|
$this->assertFalse($DB->record_exists('sessions', array('id'=>$r6)));
|
||
|
$this->assertTrue($DB->record_exists('sessions', array('id'=>$r7)));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test loginas.
|
||
|
* @copyright 2103 Rajesh Taneja <rajesh@moodle.com>
|
||
|
*/
|
||
|
public function test_loginas() {
|
||
|
global $USER;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
// Set current user as Admin user and save it for later use.
|
||
|
$this->setAdminUser();
|
||
|
$adminuser = $USER;
|
||
|
|
||
|
// Create a new user and try admin loginas this user.
|
||
|
$user = $this->getDataGenerator()->create_user();
|
||
|
\core\session\manager::loginas($user->id, context_system::instance());
|
||
|
|
||
|
$this->assertSame($user->id, $USER->id);
|
||
|
$this->assertSame(context_system::instance(), $USER->loginascontext);
|
||
|
$this->assertSame($adminuser->id, $USER->realuser);
|
||
|
|
||
|
// Set user as current user and login as admin user in course context.
|
||
|
$this->setUser($user);
|
||
|
$this->assertNotEquals($adminuser->id, $USER->id);
|
||
|
$course = $this->getDataGenerator()->create_course();
|
||
|
$coursecontext = context_course::instance($course->id);
|
||
|
|
||
|
// Catch event triggered.
|
||
|
$sink = $this->redirectEvents();
|
||
|
\core\session\manager::loginas($adminuser->id, $coursecontext);
|
||
|
$events = $sink->get_events();
|
||
|
$sink->close();
|
||
|
$event = array_pop($events);
|
||
|
|
||
|
$this->assertSame($adminuser->id, $USER->id);
|
||
|
$this->assertSame($coursecontext, $USER->loginascontext);
|
||
|
$this->assertSame($user->id, $USER->realuser);
|
||
|
|
||
|
// Test event captured has proper information.
|
||
|
$this->assertInstanceOf('\core\event\user_loggedinas', $event);
|
||
|
$this->assertSame($user->id, $event->objectid);
|
||
|
$this->assertSame($adminuser->id, $event->relateduserid);
|
||
|
$this->assertSame($course->id, $event->courseid);
|
||
|
$this->assertEquals($coursecontext, $event->get_context());
|
||
|
$oldfullname = fullname($user, true);
|
||
|
$newfullname = fullname($adminuser, true);
|
||
|
$expectedlogdata = array($course->id, "course", "loginas", "../user/view.php?id=$course->id&user=$user->id", "$oldfullname -> $newfullname");
|
||
|
$this->assertEventLegacyLogData($expectedlogdata, $event);
|
||
|
}
|
||
|
|
||
|
public function test_is_loggedinas() {
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$user1 = $this->getDataGenerator()->create_user();
|
||
|
$user2 = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
$this->assertFalse(\core\session\manager::is_loggedinas());
|
||
|
|
||
|
$this->setUser($user1);
|
||
|
\core\session\manager::loginas($user2->id, context_system::instance());
|
||
|
|
||
|
$this->assertTrue(\core\session\manager::is_loggedinas());
|
||
|
}
|
||
|
|
||
|
public function test_get_realuser() {
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$user1 = $this->getDataGenerator()->create_user();
|
||
|
$user2 = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
$this->setUser($user1);
|
||
|
\core\session\manager::loginas($user2->id, context_system::instance());
|
||
|
|
||
|
$real = \core\session\manager::get_realuser();
|
||
|
|
||
|
unset($real->password);
|
||
|
unset($real->description);
|
||
|
unset($real->sesskey);
|
||
|
unset($user1->password);
|
||
|
unset($user1->description);
|
||
|
unset($user1->sesskey);
|
||
|
|
||
|
$this->assertEquals($real, $user1);
|
||
|
}
|
||
|
}
|