1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
namespace quizaccess_seb;
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* PHPUnit Tests for config_key class.
|
|
|
21 |
*
|
|
|
22 |
* @package quizaccess_seb
|
|
|
23 |
* @author Andrew Madden <andrewmadden@catalyst-au.net>
|
|
|
24 |
* @copyright 2020 Catalyst IT
|
|
|
25 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
11 |
efrain |
26 |
* @covers \quizaccess_seb\config_key
|
1 |
efrain |
27 |
*/
|
|
|
28 |
class config_key_test extends \advanced_testcase {
|
|
|
29 |
|
|
|
30 |
/**
|
|
|
31 |
* Test that trying to generate the hash key with bad xml will result in an error.
|
|
|
32 |
*/
|
11 |
efrain |
33 |
public function test_config_key_not_generated_with_bad_xml(): void {
|
1 |
efrain |
34 |
$this->expectException(\invalid_parameter_exception::class);
|
|
|
35 |
$this->expectExceptionMessage("Invalid a PList XML string, representing SEB config");
|
|
|
36 |
config_key::generate("<?xml This is some bad xml for sure.");
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
/**
|
|
|
40 |
* Test that a config key is generated with empty configuration. SEB would be using defaults for all settings.
|
|
|
41 |
*/
|
11 |
efrain |
42 |
public function test_config_key_hash_generated_with_empty_string(): void {
|
1 |
efrain |
43 |
$hash = config_key::generate('')->get_hash();
|
|
|
44 |
$this->assertEquals('4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945', $hash);
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
/**
|
11 |
efrain |
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);
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
/**
|
1 |
efrain |
62 |
* Check that the Config Key hash is not altered if the originatorVersion is present in the XML or not.
|
|
|
63 |
*/
|
11 |
efrain |
64 |
public function test_presence_of_originator_version_does_not_effect_hash(): void {
|
1 |
efrain |
65 |
$xmlwithoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencrypted.seb');
|
|
|
66 |
$xmlwithoutoriginatorversion = file_get_contents(__DIR__ . '/fixtures/simpleunencryptedwithoutoriginator.seb');
|
|
|
67 |
$hashwithorigver = config_key::generate($xmlwithoriginatorversion)->get_hash();
|
|
|
68 |
$hashwithoutorigver = config_key::generate($xmlwithoutoriginatorversion)->get_hash();
|
|
|
69 |
$this->assertEquals($hashwithorigver, $hashwithoutorigver);
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
/**
|
|
|
73 |
* Provide a seb file, the expected Config Key and a password if encrypted.
|
|
|
74 |
*
|
|
|
75 |
* @return array
|
|
|
76 |
*/
|
|
|
77 |
public function real_ck_hash_provider(): array {
|
|
|
78 |
return [
|
|
|
79 |
'unencrypted_mac2.1.4' => ['unencrypted_mac_001.seb',
|
|
|
80 |
'4fa9af8ec8759eb7c680752ef4ee5eaf1a860628608fccae2715d519849f9292', ''],
|
|
|
81 |
'unencrypted_win2.2.3' => ['unencrypted_win_223.seb',
|
11 |
efrain |
82 |
'2534e4e9f3188f9f9133bf7cf7b4c5d898292bbd7e8d0230f39d1176636a1431', ''],
|
1 |
efrain |
83 |
];
|
|
|
84 |
}
|
|
|
85 |
}
|