ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilArgon2IdPasswordEncoderTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private const PASSWORD = 'password';
24  private const WRONG_PASSWORD = 'wrong_password';
25 
27  {
28  $encoder = new ilArgon2idPasswordEncoder();
29  $this->assertInstanceOf(ilArgon2idPasswordEncoder::class, $encoder);
30 
31  if (!$encoder->isSupportedByRuntime()) {
32  $this->markTestSkipped('Argon2id is not supported by the runtime.');
33  }
34 
35  return $encoder;
36  }
37 
44  $encoded_password = $encoder->encodePassword(self::PASSWORD, '');
45  $this->assertTrue($encoder->isPasswordValid($encoded_password, self::PASSWORD, ''));
46  $this->assertFalse($encoder->isPasswordValid($encoded_password, self::WRONG_PASSWORD, ''));
47  return $encoder;
48  }
49 
55  ): void {
56  $this->expectException(ilPasswordException::class);
57  $encoder->encodePassword(str_repeat('a', 5000), '');
58  }
59 
65  ): void {
66  $this->assertFalse($encoder->isPasswordValid('encoded', str_repeat('a', 5000), ''));
67  }
68 
72  public function testNameShouldBeArgon2id(ilArgon2idPasswordEncoder $encoder): void
73  {
74  $this->assertSame('argon2id', $encoder->getName());
75  }
76 
81  {
82  $this->assertFalse($encoder->requiresSalt());
83  }
84 
89  {
90  $raw = self::PASSWORD;
91 
92  $encoder->setThreads(2);
93  $encoder->setMemoryCost(4096);
94  $encoder->setTimeCost(8);
95  $encoded = $encoder->encodePassword($raw, '');
96 
97  $encoder->setThreads(2);
98  $encoder->setMemoryCost(4096);
99  $encoder->setTimeCost(8);
100  $this->assertFalse($encoder->requiresReencoding($encoded));
101 
102  $encoder->setThreads(2);
103  $encoder->setMemoryCost(4096);
104  $encoder->setTimeCost(4);
105  $this->assertTrue($encoder->requiresReencoding($encoded));
106 
107  $encoder->setThreads(1);
108  $encoder->setMemoryCost(4096);
109  $encoder->setTimeCost(8);
110  $this->assertTrue($encoder->requiresReencoding($encoded));
111 
112  $encoder->setThreads(2);
113  $encoder->setMemoryCost(2048);
114  $encoder->setTimeCost(8);
115  $this->assertTrue($encoder->requiresReencoding($encoded));
116  }
117 }
getName()
Returns a unique name/id of the concrete password encoder.
testPasswordVerificationShouldFailIfTheRawPasswordExceedsTheSupportedLength(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
isPasswordValid(string $encoded, string $raw, string $salt)
Checks a raw password against an encoded password.
testEncoderDoesNotRelyOnSalts(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
requiresSalt()
Returns whether the encoder requires a salt.
requiresReencoding(string $encoded)
Returns whether the encoded password needs to be re-encoded.
testExceptionIsRaisedIfThePasswordExceedsTheSupportedLengthOnEncoding(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
testReencodingIsDetectedWhenNecessary(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
testPasswordShouldBeCorrectlyEncodedAndVerified(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
testNameShouldBeArgon2id(ilArgon2idPasswordEncoder $encoder)
testInstanceCanBeCreated
encodePassword(string $raw, string $salt)
Encodes the raw password.