aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/UtilsTest.php56
-rw-r--r--tests/utils/ReferenceSessionIdHashes.php55
2 files changed, 107 insertions, 4 deletions
diff --git a/tests/UtilsTest.php b/tests/UtilsTest.php
index 5175dde0..7f218ad5 100755
--- a/tests/UtilsTest.php
+++ b/tests/UtilsTest.php
@@ -4,12 +4,28 @@
4 */ 4 */
5 5
6require_once 'application/Utils.php'; 6require_once 'application/Utils.php';
7require_once 'tests/utils/ReferenceSessionIdHashes.php';
8
9// Initialize reference data before PHPUnit starts a session
10ReferenceSessionIdHashes::genAllHashes();
11
7 12
8/** 13/**
9 * Unitary tests for Shaarli utilities 14 * Unitary tests for Shaarli utilities
10 */ 15 */
11class UtilsTest extends PHPUnit_Framework_TestCase 16class UtilsTest extends PHPUnit_Framework_TestCase
12{ 17{
18 // Session ID hashes
19 protected static $sidHashes = null;
20
21 /**
22 * Assign reference data
23 */
24 public static function setUpBeforeClass()
25 {
26 self::$sidHashes = ReferenceSessionIdHashes::getHashes();
27 }
28
13 /** 29 /**
14 * Represent a link by its hash 30 * Represent a link by its hash
15 */ 31 */
@@ -152,11 +168,41 @@ class UtilsTest extends PHPUnit_Framework_TestCase
152 } 168 }
153 169
154 /** 170 /**
155 * Test is_session_id_valid with a valid ID. 171 * Test is_session_id_valid with a valid ID - TEST ALL THE HASHES!
172 *
173 * This tests extensively covers all hash algorithms / bit representations
174 */
175 public function testIsAnyHashSessionIdValid()
176 {
177 foreach (self::$sidHashes as $algo => $bpcs) {
178 foreach ($bpcs as $bpc => $hash) {
179 $this->assertTrue(is_session_id_valid($hash));
180 }
181 }
182 }
183
184 /**
185 * Test is_session_id_valid with a valid ID - SHA-1 hashes
186 */
187 public function testIsSha1SessionIdValid()
188 {
189 $this->assertTrue(is_session_id_valid(sha1('shaarli')));
190 }
191
192 /**
193 * Test is_session_id_valid with a valid ID - SHA-256 hashes
194 */
195 public function testIsSha256SessionIdValid()
196 {
197 $this->assertTrue(is_session_id_valid(hash('sha256', 'shaarli')));
198 }
199
200 /**
201 * Test is_session_id_valid with a valid ID - SHA-512 hashes
156 */ 202 */
157 public function testIsSessionIdValid() 203 public function testIsSha512SessionIdValid()
158 { 204 {
159 $this->assertTrue(is_session_id_valid('azertyuiop123456789AZERTYUIOP1aA')); 205 $this->assertTrue(is_session_id_valid(hash('sha512', 'shaarli')));
160 } 206 }
161 207
162 /** 208 /**
@@ -166,6 +212,8 @@ class UtilsTest extends PHPUnit_Framework_TestCase
166 { 212 {
167 $this->assertFalse(is_session_id_valid('')); 213 $this->assertFalse(is_session_id_valid(''));
168 $this->assertFalse(is_session_id_valid(array())); 214 $this->assertFalse(is_session_id_valid(array()));
169 $this->assertFalse(is_session_id_valid('c0ZqcWF3VFE2NmJBdm1HMVQ0ZHJ3UmZPbTFsNGhkNHI=')); 215 $this->assertFalse(
216 is_session_id_valid('c0ZqcWF3VFE2NmJBdm1HMVQ0ZHJ3UmZPbTFsNGhkNHI=')
217 );
170 } 218 }
171} 219}
diff --git a/tests/utils/ReferenceSessionIdHashes.php b/tests/utils/ReferenceSessionIdHashes.php
new file mode 100644
index 00000000..60b1c007
--- /dev/null
+++ b/tests/utils/ReferenceSessionIdHashes.php
@@ -0,0 +1,55 @@
1<?php
2/**
3 * Testing the untestable - Session ID generation
4 */
5class ReferenceSessionIdHashes
6{
7 // Session ID hashes
8 protected static $sidHashes = null;
9
10 /**
11 * Generates session ID hashes for all algorithms & bit representations
12 */
13 public static function genAllHashes()
14 {
15 foreach (hash_algos() as $algo) {
16 self::$sidHashes[$algo] = array();
17
18 foreach (array(4, 5, 6) as $bpc) {
19 self::$sidHashes[$algo][$bpc] = self::genSidHash($algo, $bpc);
20 }
21 }
22 }
23
24 /**
25 * Generates a session ID for a given hash algorithm and bit representation
26 *
27 * @param string $function name of the hash function
28 * @param int $bits_per_character representation type
29 *
30 * @return string the generated session ID
31 */
32 protected static function genSidHash($function, $bits_per_character)
33 {
34 if (session_id()) {
35 session_destroy();
36 }
37
38 ini_set('session.hash_function', $function);
39 ini_set('session.hash_bits_per_character', $bits_per_character);
40
41 session_start();
42 return session_id();
43 }
44
45 /**
46 * Returns the reference hash array
47 *
48 * @return array session IDs generated for all available algorithms and bit
49 * representations
50 */
51 public static function getHashes()
52 {
53 return self::$sidHashes;
54 }
55}