4 require_once
'Services/Password/classes/encoders/class.ilBcryptPasswordEncoder.php';
64 return @include_once(
'vfsStream.php');
75 $this->
setTestDirectory(vfsStream::newDirectory(
'tests')->at(vfsStreamWrapper::getRoot()));
76 define(
'CLIENT_DATA_DIR', vfsStream::url(
'root/tests'));
87 'ignore_security_flaw' =>
true 89 $this->assertTrue($security_flaw_ignoring_encoder->isSecurityFlawIgnored());
92 'ignore_security_flaw' =>
false 94 $this->assertFalse($security_flaw_respecting_encoder->isSecurityFlawIgnored());
97 'cost' => self::VALID_COSTS
99 $this->assertInstanceOf(
'ilBcryptPasswordEncoder', $encoder);
100 $this->assertEquals(self::VALID_COSTS, $encoder->getCosts());
101 $this->assertFalse($encoder->isSecurityFlawIgnored());
102 $encoder->setClientSalt(self::CLIENT_SALT);
112 $this->assertEquals(4, $encoder->
getCosts());
148 for($i = 4; $i <= 31; $i++)
160 $encoder->
setCosts(self::VALID_COSTS);
161 $encoded_password = $encoder->
encodePassword(self::PASSWORD, self::PASSWORD_SALT);
162 $this->assertTrue($encoder->
isPasswordValid($encoded_password, self::PASSWORD, self::PASSWORD_SALT));
163 $this->assertFalse($encoder->
isPasswordValid($encoded_password, self::WRONG_PASSWORD, self::PASSWORD_SALT));
173 $encoder->
setCosts(self::VALID_COSTS);
174 $encoder->
encodePassword(str_repeat(
'a', 5000), self::PASSWORD_SALT);
182 $encoder->
setCosts(self::VALID_COSTS);
183 $this->assertFalse($encoder->
isPasswordValid(
'encoded', str_repeat(
'a', 5000), self::PASSWORD_SALT));
192 $encoder->setClientSalt(null);
193 $encoder->setCosts(self::VALID_COSTS);
194 $encoder->encodePassword(self::PASSWORD, self::PASSWORD_SALT);
203 $encoder->setClientSalt(null);
204 $encoder->setCosts(self::VALID_COSTS);
205 $encoder->isPasswordValid(
'12121212', self::PASSWORD, self::PASSWORD_SALT);
219 $this->assertEquals(self::CLIENT_SALT, $encoder->getClientSalt());
228 $encoder->setBackwardCompatibility(
true);
229 $this->assertTrue($encoder->isBackwardCompatibilityEnabled());
230 $encoder->setBackwardCompatibility(
false);
231 $this->assertFalse($encoder->isBackwardCompatibilityEnabled());
242 $encoder->setClientSalt(self::CLIENT_SALT);
243 $encoder->setBackwardCompatibility(
true);
244 $encoded_password = $encoder->encodePassword(self::PASSWORD, self::PASSWORD_SALT);
245 $this->assertTrue($encoder->isPasswordValid($encoded_password, self::PASSWORD, self::PASSWORD_SALT));
246 $this->assertEquals(
'$2a$', substr($encoded_password, 0, 4));
249 $another_encoder->setClientSalt(self::CLIENT_SALT);
250 $another_encoder->setBackwardCompatibility(
false);
251 $another_encoded_password = $another_encoder->encodePassword(self::PASSWORD, self::PASSWORD_SALT);
252 $this->assertEquals(
'$2y$', substr($another_encoded_password, 0, 4));
253 $this->assertTrue($another_encoder->isPasswordValid($encoded_password, self::PASSWORD, self::PASSWORD_SALT));
261 if(version_compare(phpversion(),
'5.3.7',
'<'))
263 $this->markTestSkipped(
'Requires PHP >= 5.3.7');
274 $this->markTestSkipped(
'Requires vfsStream (http://vfs.bovigo.org)');
284 $encoder->setClientSalt(self::CLIENT_SALT);
285 $encoder->setBackwardCompatibility(
true);
286 $encoder->encodePassword(self::PASSWORD . chr(195), self::PASSWORD_SALT);
295 $encoder->setClientSalt(self::CLIENT_SALT);
296 $encoder->setBackwardCompatibility(
true);
297 $encoder->setIsSecurityFlawIgnored(
true);
298 $encoder->encodePassword(self::PASSWORD . chr(195), self::PASSWORD_SALT);
307 $this->assertEquals(
'bcrypt', $encoder->getName());
const SALT_STORAGE_FILENAME
testCostsCannotBeSetAboveRange(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated ilPasswordException
encodePassword($raw, $salt)
{Encodes the raw password.The password to encode The salt string The encoded password} ...
testCostsCanBeRetrievedWhenCostsAreSet(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated
skipIfvfsStreamNotSupported()
setTestDirectory($test_directory)
testCostsCanBeSetInRange($costs, ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated costsProvider
testExceptionIsNotRaisedIfTheRawPasswordContainsA8BitCharacterAndBackwardCompatibilityIsEnabledWithIgnoredSecurityFlaw()
testPasswordShouldBeCorrectlyEncodedAndVerified(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated
testInstanceCanBeCreatedAndInitializedWithClientSalt()
testExceptionIsRaisedIfSaltIsMissingIsOnEncoding()
ilPasswordException
testExceptionIsRaisedIfThePasswordExceedsTheSupportedLengthOnEncoding(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated ilPasswordException
testBackwardCompatibility()
testExceptionIsRaisedIfSaltIsMissingIsOnVerification()
ilPasswordException
testPasswordVerificationShouldFailIfTheRawPasswordExceedsTheSupportedLength(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated
testBackwardCompatibilityCanBeRetrievedWhenBackwardCompatibilityIsSet()
testInstanceCanBeCreated()
skipIfPhpVersionIsNotSupported()
testExceptionIsRaisedIfTheRawPasswordContainsA8BitCharacterAndBackwardCompatibilityIsEnabled()
ilPasswordException
testCostsCannotBeSetBelowRange(ilBcryptPasswordEncoder $encoder)
testInstanceCanBeCreated ilPasswordException
isPasswordValid($encoded, $raw, $salt)
{Checks a raw password against an encoded password.The raw password has to be injected into the encod...