Add test to support core_userkey_manager class
This commit is contained in:
parent
14829905b7
commit
f6f41c0924
1 changed files with 286 additions and 0 deletions
286
tests/core_userkey_manager_test.php
Normal file
286
tests/core_userkey_manager_test.php
Normal file
|
@ -0,0 +1,286 @@
|
|||
<?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/>.
|
||||
|
||||
/**
|
||||
* Tests for core_userkey_manager class.
|
||||
*
|
||||
* @package auth_userkey
|
||||
* @copyright 2016 Dmitrii Metelkin (dmitriim@catalyst-au.net)
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
use auth_userkey\core_userkey_manager;
|
||||
|
||||
/**
|
||||
* Tests for core_userkey_manager class.
|
||||
*
|
||||
* @copyright 2016 Dmitrii Metelkin (dmitriim@catalyst-au.net)
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class core_userkey_manager_testcase extends advanced_testcase {
|
||||
protected $user;
|
||||
protected $config;
|
||||
|
||||
/**
|
||||
* Initial set up.
|
||||
*/
|
||||
public function setUp() {
|
||||
$this->resetAfterTest();
|
||||
$this->user = self::getDataGenerator()->create_user();
|
||||
$this->config = new stdClass();
|
||||
}
|
||||
|
||||
public function test_implements_userkey_manager_interface() {
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
|
||||
$expected = 'auth_userkey\userkey_manager_interface';
|
||||
$this->assertInstanceOf($expected, $manager);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @expectedException \Exception
|
||||
*/
|
||||
public function test_throws_exception_if_user_is_not_exists() {
|
||||
$brokenuserid = 500;
|
||||
$manager = new core_userkey_manager($brokenuserid, $this->config);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_iprestriction_not_set() {
|
||||
global $DB;
|
||||
|
||||
$_SERVER['HTTP_CLIENT_IP'] = '192.168.1.1';
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = null;
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_iprestriction_is_true() {
|
||||
global $DB;
|
||||
|
||||
$this->config->iprestriction = true;
|
||||
$_SERVER['HTTP_CLIENT_IP'] = '192.168.1.1';
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = '192.168.1.1';
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_iprestriction_is_false() {
|
||||
global $DB;
|
||||
|
||||
$this->config->iprestriction = false;
|
||||
$_SERVER['HTTP_CLIENT_IP'] = '192.168.1.1';
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = null;
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_iprestriction_is_string() {
|
||||
global $DB;
|
||||
|
||||
$this->config->iprestriction = 'string';
|
||||
$_SERVER['HTTP_CLIENT_IP'] = '192.168.1.1';
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = '192.168.1.1';
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_keylifetime_is_not_set() {
|
||||
global $DB;
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = null;
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_keylifetime_is_set_to_integer() {
|
||||
global $DB;
|
||||
|
||||
$this->config->keylifetime = 3000;
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = null;
|
||||
$expectedvaliduntil = time() + 3000;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
|
||||
}
|
||||
|
||||
public function test_create_correct_key_if_keylifetime_is_set_to_string() {
|
||||
global $DB;
|
||||
|
||||
$this->config->keylifetime = '3000';
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$value = $manager->create_key();
|
||||
|
||||
$actualkey = $DB->get_record('user_private_key', array('userid' => $this->user->id));
|
||||
|
||||
$expectedvalue = $value;
|
||||
$expecteduserid = $this->user->id;
|
||||
$expectedscript = 'auth/userkey';
|
||||
$expectedinstance = $this->user->id;
|
||||
$expectediprestriction = null;
|
||||
$expectedvaliduntil = time() + 60;
|
||||
|
||||
$this->assertEquals($expectedvalue, $actualkey->value);
|
||||
$this->assertEquals($expecteduserid, $actualkey->userid);
|
||||
$this->assertEquals($expectedscript, $actualkey->script);
|
||||
$this->assertEquals($expectedinstance, $actualkey->instance);
|
||||
$this->assertEquals($expectediprestriction, $actualkey->iprestriction);
|
||||
$this->assertEquals($expectedvaliduntil, $actualkey->validuntil);
|
||||
}
|
||||
|
||||
public function test_can_delete_created_key() {
|
||||
global $DB;
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
$manager->create_key();
|
||||
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(1, count($keys));
|
||||
|
||||
$manager->delete_key();
|
||||
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(0, count($keys));
|
||||
}
|
||||
|
||||
public function test_can_delete_all_existing_keys() {
|
||||
global $DB;
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(3, count($keys));
|
||||
|
||||
$manager->delete_key();
|
||||
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(0, count($keys));
|
||||
}
|
||||
|
||||
public function test_create_only_one_key() {
|
||||
global $DB;
|
||||
|
||||
$manager = new core_userkey_manager($this->user->id, $this->config);
|
||||
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
create_user_key('auth/userkey', $this->user->id, $instance=null, $iprestriction=null, $validuntil=null);
|
||||
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(3, count($keys));
|
||||
|
||||
$manager->create_key();
|
||||
$keys = $DB->get_records('user_private_key', array('userid' => $this->user->id));
|
||||
$this->assertEquals(1, count($keys));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue