123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace Illuminate\Tests\Hashing;
- use Illuminate\Hashing\Argon2IdHasher;
- use Illuminate\Hashing\ArgonHasher;
- use Illuminate\Hashing\BcryptHasher;
- use PHPUnit\Framework\TestCase;
- use RuntimeException;
- class HasherTest extends TestCase
- {
- public function testBasicBcryptHashing()
- {
- $hasher = new BcryptHasher;
- $value = $hasher->make('password');
- $this->assertNotSame('password', $value);
- $this->assertTrue($hasher->check('password', $value));
- $this->assertFalse($hasher->needsRehash($value));
- $this->assertTrue($hasher->needsRehash($value, ['rounds' => 1]));
- $this->assertSame('bcrypt', password_get_info($value)['algoName']);
- }
- public function testBasicArgon2iHashing()
- {
- $hasher = new ArgonHasher;
- $value = $hasher->make('password');
- $this->assertNotSame('password', $value);
- $this->assertTrue($hasher->check('password', $value));
- $this->assertFalse($hasher->needsRehash($value));
- $this->assertTrue($hasher->needsRehash($value, ['threads' => 1]));
- $this->assertSame('argon2i', password_get_info($value)['algoName']);
- }
- public function testBasicArgon2idHashing()
- {
- $hasher = new Argon2IdHasher;
- $value = $hasher->make('password');
- $this->assertNotSame('password', $value);
- $this->assertTrue($hasher->check('password', $value));
- $this->assertFalse($hasher->needsRehash($value));
- $this->assertTrue($hasher->needsRehash($value, ['threads' => 1]));
- $this->assertSame('argon2id', password_get_info($value)['algoName']);
- }
- /**
- * @depends testBasicBcryptHashing
- */
- public function testBasicBcryptVerification()
- {
- $this->expectException(RuntimeException::class);
- $argonHasher = new ArgonHasher(['verify' => true]);
- $argonHashed = $argonHasher->make('password');
- (new BcryptHasher(['verify' => true]))->check('password', $argonHashed);
- }
- /**
- * @depends testBasicArgon2iHashing
- */
- public function testBasicArgon2iVerification()
- {
- $this->expectException(RuntimeException::class);
- $bcryptHasher = new BcryptHasher(['verify' => true]);
- $bcryptHashed = $bcryptHasher->make('password');
- (new ArgonHasher(['verify' => true]))->check('password', $bcryptHashed);
- }
- /**
- * @depends testBasicArgon2idHashing
- */
- public function testBasicArgon2idVerification()
- {
- $this->expectException(RuntimeException::class);
- $bcryptHasher = new BcryptHasher(['verify' => true]);
- $bcryptHashed = $bcryptHasher->make('password');
- (new Argon2IdHasher(['verify' => true]))->check('password', $bcryptHashed);
- }
- }
|