Línea 21... |
Línea 21... |
21 |
*
|
21 |
*
|
22 |
* @package quizaccess_seb
|
22 |
* @package quizaccess_seb
|
23 |
* @author Andrew Madden <andrewmadden@catalyst-au.net>
|
23 |
* @author Andrew Madden <andrewmadden@catalyst-au.net>
|
24 |
* @copyright 2020 Catalyst IT
|
24 |
* @copyright 2020 Catalyst IT
|
25 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
25 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
- |
|
26 |
* @covers \quizaccess_seb\config_key
|
26 |
*/
|
27 |
*/
|
27 |
class config_key_test extends \advanced_testcase {
|
28 |
class config_key_test extends \advanced_testcase {
|
Línea 28... |
Línea 29... |
28 |
|
29 |
|
29 |
/**
|
30 |
/**
|
30 |
* Test that trying to generate the hash key with bad xml will result in an error.
|
31 |
* Test that trying to generate the hash key with bad xml will result in an error.
|
31 |
*/
|
32 |
*/
|
32 |
public function test_config_key_not_generated_with_bad_xml() {
|
33 |
public function test_config_key_not_generated_with_bad_xml(): void {
|
33 |
$this->expectException(\invalid_parameter_exception::class);
|
34 |
$this->expectException(\invalid_parameter_exception::class);
|
34 |
$this->expectExceptionMessage("Invalid a PList XML string, representing SEB config");
|
35 |
$this->expectExceptionMessage("Invalid a PList XML string, representing SEB config");
|
35 |
config_key::generate("<?xml This is some bad xml for sure.");
|
36 |
config_key::generate("<?xml This is some bad xml for sure.");
|
Línea 36... |
Línea 37... |
36 |
}
|
37 |
}
|
37 |
|
38 |
|
38 |
/**
|
39 |
/**
|
39 |
* Test that a config key is generated with empty configuration. SEB would be using defaults for all settings.
|
40 |
* Test that a config key is generated with empty configuration. SEB would be using defaults for all settings.
|
40 |
*/
|
41 |
*/
|
41 |
public function test_config_key_hash_generated_with_empty_string() {
|
42 |
public function test_config_key_hash_generated_with_empty_string(): void {
|
42 |
$hash = config_key::generate('')->get_hash();
|
43 |
$hash = config_key::generate('')->get_hash();
|
Línea 43... |
Línea 44... |
43 |
$this->assertEquals('4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945', $hash);
|
44 |
$this->assertEquals('4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945', $hash);
|
- |
|
45 |
}
|
- |
|
46 |
|
- |
|
47 |
/**
|
- |
|
48 |
* Test config key hash is derived correctly by Moodle.
|
- |
|
49 |
*
|
- |
|
50 |
* @param string $config The SEB config file name.
|
- |
|
51 |
* @param string $hash The correct config key hash for this file.
|
- |
|
52 |
*
|
- |
|
53 |
* @dataProvider real_ck_hash_provider
|
- |
|
54 |
*/
|
- |
|
55 |
public function test_config_key_hash_is_derived_correctly($config, $hash): void {
|
- |
|
56 |
$xml = file_get_contents(__DIR__ . '/fixtures/' . $config);
|
- |
|
57 |
$derivedhash = config_key::generate($xml)->get_hash();
|
- |
|
58 |
$this->assertEquals($hash, $derivedhash);
|
44 |
}
|
59 |
}
|
45 |
|
60 |
|
46 |
/**
|
61 |
/**
|
47 |
* Check that the Config Key hash is not altered if the originatorVersion is present in the XML or not.
|
62 |
* Check that the Config Key hash is not altered if the originatorVersion is present in the XML or not.
|
48 |
*/
|
63 |
*/
|
49 |
public function test_presence_of_originator_version_does_not_effect_hash() {
|
64 |
public function test_presence_of_originator_version_does_not_effect_hash(): void {
|
50 |
$xmlwithoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencrypted.seb');
|
65 |
$xmlwithoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencrypted.seb');
|
51 |
$xmlwithoutoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencryptedwithoutoriginator.seb');
|
66 |
$xmlwithoutoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencryptedwithoutoriginator.seb');
|
Línea 62... |
Línea 77... |
62 |
public function real_ck_hash_provider(): array {
|
77 |
public function real_ck_hash_provider(): array {
|
63 |
return [
|
78 |
return [
|
64 |
'unencrypted_mac2.1.4' => ['unencrypted_mac_001.seb',
|
79 |
'unencrypted_mac2.1.4' => ['unencrypted_mac_001.seb',
|
65 |
'4fa9af8ec8759eb7c680752ef4ee5eaf1a860628608fccae2715d519849f9292', ''],
|
80 |
'4fa9af8ec8759eb7c680752ef4ee5eaf1a860628608fccae2715d519849f9292', ''],
|
66 |
'unencrypted_win2.2.3' => ['unencrypted_win_223.seb',
|
81 |
'unencrypted_win2.2.3' => ['unencrypted_win_223.seb',
|
67 |
'fc6f4ea5922717760f4d6d536c23b8d19bf20b52aa97940f5427a76e20f49026', ''],
|
82 |
'2534e4e9f3188f9f9133bf7cf7b4c5d898292bbd7e8d0230f39d1176636a1431', ''],
|
68 |
];
|
83 |
];
|
69 |
}
|
84 |
}
|
70 |
}
|
85 |
}
|