blob: 95ce270c8aff598647e87630a41b9e171864afcf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Tests\Unit;
use UserFrosting\Sprinkle\Account\Authenticate\Hasher;
use UserFrosting\Tests\TestCase;
/**
* Tests the password Hasher class.
*
* @extends TestCase
*/
class HasherTest extends TestCase
{
protected $plainText = 'hodleth';
/**
* @var string Legacy hash from UserCake (sha1)
*/
protected $userCakeHash = '87e995bde9ebdc73fc58cc75a9fadc4ae630d8207650fbe94e148ccc8058d5de5';
/**
* @var string Legacy hash from UF 0.1.x
*/
protected $legacyHash = '$2y$12$rsXGznS5Ky23lX9iNzApAuDccKRhQFkiy5QfKWp0ACyDWBPOylPB.rsXGznS5Ky23lX9iNzApA9';
/**
* @var string Modern hash that uses password_hash()
*/
protected $modernHash = '$2y$10$ucxLwloFso6wJoct1baBQefdrttws/taEYvavi6qoPsw/vd1u4Mha';
public function testGetHashType() {
$hasher = new Hasher;
$type = $hasher->getHashType($this->modernHash);
$this->assertEquals('modern', $type);
$type = $hasher->getHashType($this->legacyHash);
$this->assertEquals('legacy', $type);
$type = $hasher->getHashType($this->userCakeHash);
$this->assertEquals('sha1', $type);
}
public function testVerify() {
$hasher = new Hasher;
$this->assertTrue($hasher->verify($this->plainText, $this->modernHash));
$this->assertTrue($hasher->verify($this->plainText, $this->legacyHash));
$this->assertTrue($hasher->verify($this->plainText, $this->userCakeHash));
}
public function testVerifyReject() {
$hasher = new Hasher;
$this->assertFalse($hasher->verify('selleth', $this->modernHash));
$this->assertFalse($hasher->verify('selleth', $this->legacyHash));
$this->assertFalse($hasher->verify('selleth', $this->userCakeHash));
}
}
|