wiki.techinc.nl/tests/phpunit/unit/includes/password/LayeredParameterizedPasswordTest.php
Timo Tijhof 8d406bbcd6 phpcs: Disable Generic.Files.LineLength for test files
There is a common and reasonable need for longer lines in tests.
The nudge for shorter lines doesn't seem valuable here. The natural
breaks will likely still fall in 80-100 given the enforced practice
for non-test code, e.g. whether through habit, or 80-100 column markers
in text editors, or the finite width of diff and code review
interfaces.

Change-Id: I879479e13551789a67624ce66f0946d2f185e6ee
2022-02-18 18:32:05 +00:00

62 lines
1.7 KiB
PHP

<?php
/**
* @covers LayeredParameterizedPassword
* @covers Password
*/
class LayeredParameterizedPasswordTest extends PasswordTestCase {
protected function getTypeConfigs() {
return [
'testLargeLayeredTop' => [
'class' => LayeredParameterizedPassword::class,
'types' => [
'testLargeLayeredBottom',
'testLargeLayeredBottom',
'testLargeLayeredBottom',
'testLargeLayeredBottom',
'testLargeLayeredFinal',
],
],
'testLargeLayeredBottom' => [
'class' => Pbkdf2Password::class,
'algo' => 'sha512',
'cost' => 1024,
'length' => 512,
],
'testLargeLayeredFinal' => [
'class' => BcryptPassword::class,
'cost' => 5,
]
];
}
protected function getValidTypes() {
return [ 'testLargeLayeredFinal' ];
}
public static function providePasswordTests() {
return [
[
true,
':testLargeLayeredTop:sha512:1024:512!sha512:1024:512!sha512:1024:512!sha512:1024:512!5!vnRy+2SrSA0fHt3dwhTP5g==!AVnwfZsAQjn+gULv7FSGjA==!xvHUX3WcpkeSn1lvjWcvBg==!It+OC/N9tu+d3ByHhuB0BQ==!Tb.gqUOiD.aWktVwHM.Q/O!7CcyMfXUPky5ptyATJsR2nq3vUqtnBC',
'testPassword123'
],
];
// phpcs:enable
}
/**
* @covers LayeredParameterizedPassword::partialCrypt
*/
public function testLargeLayeredPartialUpdate() {
/** @var ParameterizedPassword $partialPassword */
$partialPassword = $this->passwordFactory->newFromType( 'testLargeLayeredBottom' );
$partialPassword->crypt( 'testPassword123' );
/** @var LayeredParameterizedPassword $totalPassword */
$totalPassword = $this->passwordFactory->newFromType( 'testLargeLayeredTop' );
$totalPassword->partialCrypt( $partialPassword );
$this->assertTrue( $totalPassword->verify( 'testPassword123' ) );
}
}