ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ilBcryptPhpPasswordEncoderTest Class Reference
+ Inheritance diagram for ilBcryptPhpPasswordEncoderTest:
+ Collaboration diagram for ilBcryptPhpPasswordEncoderTest:

Public Member Functions

 costsProvider ()
 
 testInstanceCanBeCreated ()
 
 testCostsCanBeRetrievedWhenCostsAreSet (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testCostsCannotBeSetAboveRange (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testCostsCannotBeSetBelowRange (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testCostsCanBeSetInRange (string $costs, ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated costsProvider More...
 
 testPasswordShouldBeCorrectlyEncodedAndVerified (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testExceptionIsRaisedIfThePasswordExceedsTheSupportedLengthOnEncoding (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testPasswordVerificationShouldFailIfTheRawPasswordExceedsTheSupportedLength (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testNameShouldBeBcryptPhp (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testCostsCanBeDeterminedDynamically (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testEncoderDoesNotRelyOnSalts (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 
 testReencodingIsDetectedWhenNecessary (ilBcryptPhpPasswordEncoder $encoder)
 testInstanceCanBeCreated More...
 

Data Fields

const VALID_COSTS = '08'
 
const PASSWORD = 'password'
 
const WRONG_PASSWORD = 'wrong_password'
 

Private Member Functions

 skipIfPhpVersionIsNotSupported ()
 

Detailed Description

Definition at line 12 of file ilBcryptPhpPasswordEncoderTest.php.

Member Function Documentation

◆ costsProvider()

ilBcryptPhpPasswordEncoderTest::costsProvider ( )
Returns
array

Definition at line 36 of file ilBcryptPhpPasswordEncoderTest.php.

References $data, and $i.

36  : array
37  {
38  $data = [];
39  for ($i = 4; $i <= 31; $i++) {
40  $data[sprintf("Costs: %s", (string) $i)] = [(string) $i];
41  }
42 
43  return $data;
44  }
$data
Definition: storeScorm.php:23
$i
Definition: metadata.php:24

◆ skipIfPhpVersionIsNotSupported()

ilBcryptPhpPasswordEncoderTest::skipIfPhpVersionIsNotSupported ( )
private

Definition at line 26 of file ilBcryptPhpPasswordEncoderTest.php.

Referenced by testInstanceCanBeCreated().

26  : void
27  {
28  if (version_compare(phpversion(), '5.5.0', '<')) {
29  $this->markTestSkipped('Requires PHP >= 5.5.0');
30  }
31  }
+ Here is the caller graph for this function:

◆ testCostsCanBeDeterminedDynamically()

ilBcryptPhpPasswordEncoderTest::testCostsCanBeDeterminedDynamically ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 168 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\benchmarkCost().

168  : void
169  {
170  $costs_default = $encoder->benchmarkCost();
171  $costs_target = $encoder->benchmarkCost(0.5);
172 
173  $this->assertTrue($costs_default > 4 && $costs_default < 32);
174  $this->assertTrue($costs_target > 4 && $costs_target < 32);
175  $this->assertIsInt($costs_default);
176  $this->assertIsInt($costs_target);
177  $this->assertNotEquals($costs_default, $costs_target);
178  }
+ Here is the call graph for this function:

◆ testCostsCanBeRetrievedWhenCostsAreSet()

ilBcryptPhpPasswordEncoderTest::testCostsCanBeRetrievedWhenCostsAreSet ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 70 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\getCosts(), and ilBcryptPhpPasswordEncoder\setCosts().

70  : void
71  {
72  $expected = '04';
73 
74  $encoder->setCosts($expected);
75  $this->assertEquals($expected, $encoder->getCosts());
76  }
+ Here is the call graph for this function:

◆ testCostsCanBeSetInRange()

ilBcryptPhpPasswordEncoderTest::testCostsCanBeSetInRange ( string  $costs,
ilBcryptPhpPasswordEncoder  $encoder 
)

testInstanceCanBeCreated costsProvider

Parameters
string$costs
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 108 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\setCosts().

108  : void
109  {
110  $encoder->setCosts($costs);
111  }
+ Here is the call graph for this function:

◆ testCostsCannotBeSetAboveRange()

ilBcryptPhpPasswordEncoderTest::testCostsCannotBeSetAboveRange ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 83 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\setCosts().

83  : void
84  {
85  $this->expectException(ilPasswordException::class);
86  $encoder->setCosts('32');
87  }
+ Here is the call graph for this function:

◆ testCostsCannotBeSetBelowRange()

ilBcryptPhpPasswordEncoderTest::testCostsCannotBeSetBelowRange ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 94 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\setCosts().

94  : void
95  {
96  $this->expectException(ilPasswordException::class);
97  $encoder->setCosts('3');
98  }
+ Here is the call graph for this function:

◆ testEncoderDoesNotRelyOnSalts()

ilBcryptPhpPasswordEncoderTest::testEncoderDoesNotRelyOnSalts ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder

Definition at line 184 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBasePasswordEncoder\requiresSalt().

184  : void
185  {
186  $this->assertFalse($encoder->requiresSalt());
187  }
+ Here is the call graph for this function:

◆ testExceptionIsRaisedIfThePasswordExceedsTheSupportedLengthOnEncoding()

ilBcryptPhpPasswordEncoderTest::testExceptionIsRaisedIfThePasswordExceedsTheSupportedLengthOnEncoding ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 134 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\encodePassword(), and ilBcryptPhpPasswordEncoder\setCosts().

136  : void {
137  $this->expectException(ilPasswordException::class);
138  $encoder->setCosts(self::VALID_COSTS);
139  $encoder->encodePassword(str_repeat('a', 5000), '');
140  }
+ Here is the call graph for this function:

◆ testInstanceCanBeCreated()

ilBcryptPhpPasswordEncoderTest::testInstanceCanBeCreated ( )
Returns
ilBcryptPhpPasswordEncoder
Exceptions
ilPasswordException

Definition at line 50 of file ilBcryptPhpPasswordEncoderTest.php.

References skipIfPhpVersionIsNotSupported().

51  {
53 
54  $default_costs_encoder = new ilBcryptPhpPasswordEncoder();
55  $this->assertTrue((int) $default_costs_encoder->getCosts() > 4 && (int) $default_costs_encoder->getCosts() < 32);
56 
57  $encoder = new ilBcryptPhpPasswordEncoder([
58  'cost' => self::VALID_COSTS
59  ]);
60  $this->assertInstanceOf('ilBcryptPhpPasswordEncoder', $encoder);
61  $this->assertEquals(self::VALID_COSTS, $encoder->getCosts());
62  return $encoder;
63  }
+ Here is the call graph for this function:

◆ testNameShouldBeBcryptPhp()

ilBcryptPhpPasswordEncoderTest::testNameShouldBeBcryptPhp ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder

Definition at line 158 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\getName().

158  : void
159  {
160  $this->assertEquals('bcryptphp', $encoder->getName());
161  }
+ Here is the call graph for this function:

◆ testPasswordShouldBeCorrectlyEncodedAndVerified()

ilBcryptPhpPasswordEncoderTest::testPasswordShouldBeCorrectlyEncodedAndVerified ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Returns
ilBcryptPhpPasswordEncoder
Exceptions
ilPasswordException

Definition at line 119 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\encodePassword(), ilBcryptPhpPasswordEncoder\isPasswordValid(), and ilBcryptPhpPasswordEncoder\setCosts().

122  $encoder->setCosts(self::VALID_COSTS);
123  $encoded_password = $encoder->encodePassword(self::PASSWORD, '');
124  $this->assertTrue($encoder->isPasswordValid($encoded_password, self::PASSWORD, ''));
125  $this->assertFalse($encoder->isPasswordValid($encoded_password, self::WRONG_PASSWORD, ''));
126  return $encoder;
127  }
isPasswordValid(string $encoded, string $raw, string $salt)
+ Here is the call graph for this function:

◆ testPasswordVerificationShouldFailIfTheRawPasswordExceedsTheSupportedLength()

ilBcryptPhpPasswordEncoderTest::testPasswordVerificationShouldFailIfTheRawPasswordExceedsTheSupportedLength ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 147 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\isPasswordValid(), and ilBcryptPhpPasswordEncoder\setCosts().

149  : void {
150  $encoder->setCosts(self::VALID_COSTS);
151  $this->assertFalse($encoder->isPasswordValid('encoded', str_repeat('a', 5000), ''));
152  }
isPasswordValid(string $encoded, string $raw, string $salt)
+ Here is the call graph for this function:

◆ testReencodingIsDetectedWhenNecessary()

ilBcryptPhpPasswordEncoderTest::testReencodingIsDetectedWhenNecessary ( ilBcryptPhpPasswordEncoder  $encoder)

testInstanceCanBeCreated

Parameters
ilBcryptPhpPasswordEncoder$encoder
Exceptions
ilPasswordException

Definition at line 194 of file ilBcryptPhpPasswordEncoderTest.php.

References ilBcryptPhpPasswordEncoder\encodePassword(), ilBcryptPhpPasswordEncoder\requiresReencoding(), and ilBcryptPhpPasswordEncoder\setCosts().

194  : void
195  {
196  $raw = self::PASSWORD;
197 
198  $encoder->setCosts('8');
199  $encoded = $encoder->encodePassword($raw, '');
200  $encoder->setCosts('8');
201  $this->assertFalse($encoder->requiresReencoding($encoded));
202 
203  $encoder->setCosts('9');
204  $this->assertTrue($encoder->requiresReencoding($encoded));
205  }
+ Here is the call graph for this function:

Field Documentation

◆ PASSWORD

const ilBcryptPhpPasswordEncoderTest::PASSWORD = 'password'

Definition at line 18 of file ilBcryptPhpPasswordEncoderTest.php.

◆ VALID_COSTS

const ilBcryptPhpPasswordEncoderTest::VALID_COSTS = '08'

Definition at line 15 of file ilBcryptPhpPasswordEncoderTest.php.

◆ WRONG_PASSWORD

const ilBcryptPhpPasswordEncoderTest::WRONG_PASSWORD = 'wrong_password'

Definition at line 21 of file ilBcryptPhpPasswordEncoderTest.php.


The documentation for this class was generated from the following file: