98 lines
3.1 KiB
PHP
98 lines
3.1 KiB
PHP
<?php
|
|
|
|
class PasswordHashTest extends PHPUnit_Framework_TestCase {
|
|
|
|
public function testFuncExists() {
|
|
$this->assertTrue(function_exists('password_hash'));
|
|
}
|
|
|
|
public function testStringLength() {
|
|
$this->assertEquals(60, strlen(password_hash('foo', PASSWORD_BCRYPT)));
|
|
}
|
|
|
|
public function testHash() {
|
|
$hash = password_hash('foo', PASSWORD_BCRYPT);
|
|
$this->assertEquals($hash, crypt('foo', $hash));
|
|
}
|
|
|
|
public function testKnownSalt() {
|
|
$hash = password_hash("rasmuslerdorf", PASSWORD_BCRYPT, array("cost" => 7, "salt" => "usesomesillystringforsalt"));
|
|
$this->assertEquals('$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi', $hash);
|
|
}
|
|
|
|
public function testRawSalt() {
|
|
$hash = password_hash("test", PASSWORD_BCRYPT, array("salt" => "123456789012345678901" . chr(0)));
|
|
if (version_compare(PHP_VERSION, '5.5.0', '<')) {
|
|
$this->assertEquals('$2y$10$KRGxLBS0Lxe3KBCwKxOzLexLDeu0ZfqJAKTubOfy7O/yL2hjimw3u', $hash);
|
|
} else {
|
|
$this->assertEquals('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', $hash);
|
|
}
|
|
}
|
|
|
|
public function testNullBehavior() {
|
|
$hash = password_hash(null, PASSWORD_BCRYPT, array("salt" => "1234567890123456789012345678901234567890"));
|
|
$this->assertEquals('$2y$10$123456789012345678901uhihPb9QpE2n03zMu9TDdvO34jDn6mO.', $hash);
|
|
}
|
|
|
|
public function testIntegerBehavior() {
|
|
$hash = password_hash(12345, PASSWORD_BCRYPT, array("salt" => "1234567890123456789012345678901234567890"));
|
|
$this->assertEquals('$2y$10$123456789012345678901ujczD5TiARVFtc68bZCAlbEg1fCIexfO', $hash);
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidAlgo() {
|
|
password_hash('foo', array());
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidAlgo2() {
|
|
password_hash('foo', 2);
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidPassword() {
|
|
password_hash(array(), 1);
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidSalt() {
|
|
password_hash('foo', PASSWORD_BCRYPT, array('salt' => array()));
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidBcryptCostLow() {
|
|
password_hash('foo', PASSWORD_BCRYPT, array('cost' => 3));
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidBcryptCostHigh() {
|
|
password_hash('foo', PASSWORD_BCRYPT, array('cost' => 32));
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidBcryptCostInvalid() {
|
|
password_hash('foo', PASSWORD_BCRYPT, array('cost' => 'foo'));
|
|
}
|
|
|
|
/**
|
|
* @expectedException PHPUnit_Framework_Error
|
|
*/
|
|
public function testInvalidBcryptSaltShort() {
|
|
password_hash('foo', PASSWORD_BCRYPT, array('salt' => 'abc'));
|
|
}
|
|
|
|
}
|