Sync GitHub / sync (push) Successful in 9s
PayloadTest: - decode() with invalid JSON, JSON array, null, boolean, number - load() with all fields present but empty strings - create() with invalid scope string (falls back to cookie) - create() with missing json property (defaults to true) DomainManagerTest: - TLD table coverage: com.au, co.jp, com.br, co.nz, com.mx, co.in, br.com - Single-label host matching behavior - Empty string host - validReturn with URL containing port, without path, different domain with port MakeNonceTraitTest: - Retry-then-succeed path (first attempt collides, second succeeds) - Zero retries throws immediately on collision StringTraitTest: - Only invalid characters collapses to single underscore - Exactly 128 characters boundary - Multibyte characters (é, ö) replaced with underscore - Emoji replaced with underscore GetTotpTraitTest: - HOTP URI triggers HttpException(500) via instanceof check LoginManagerTest: - ULID collision throws HttpException(500) - Central auth cookie sets domain on matching host (uses auth cookie name) - Central auth cookie uses null domain on non-matching host - Empty return parameter falls back to request path BackupCodeManagerTest: - Empty string code returns false - Code with value false (consumed) verified via cache state - Generated codes are unique (50 codes) - Code length equals TOTP digits + 2 MonitorCacheKeysTest: - saveDeferred on __key_list and __chg_list throws OutOfBoundsException - getKeys returns empty when key list is lost - deleteItem/deleteItems return true assertions PersistCacheTest: - Mixed updates and removals in same persist cycle - Multiple boot-modify-persist cycles with interleaved modifications
91 lines
2.9 KiB
PHP
91 lines
2.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Tests\Unit\Trait;
|
|
|
|
use App\ConfigBag;
|
|
use App\Tests\Support\TotpTestHelper;
|
|
use App\Trait\GetTotpTrait;
|
|
use OTPHP\TOTPInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
|
|
final class GetTotpTraitTest extends TestCase {
|
|
use TotpTestHelper;
|
|
|
|
private function makeObject(): object {
|
|
return new class {
|
|
use GetTotpTrait;
|
|
|
|
public function publicGetTotp(): TOTPInterface {
|
|
return $this->getTotp();
|
|
}
|
|
};
|
|
}
|
|
|
|
public function testSetConfigSetsProperty(): void {
|
|
$obj = $this->makeObject();
|
|
$config = $this->makeConfig();
|
|
|
|
$obj->setConfig($config);
|
|
|
|
$reflection = new \ReflectionProperty($obj, 'config');
|
|
self::assertSame($config, $reflection->getValue($obj));
|
|
}
|
|
|
|
public function testGetTotpReturnsTotpInterface(): void {
|
|
$obj = $this->makeObject();
|
|
$obj->setConfig($this->makeConfig());
|
|
|
|
$totp = $obj->publicGetTotp();
|
|
|
|
self::assertInstanceOf(TOTPInterface::class, $totp);
|
|
}
|
|
|
|
public function testGetTotpReturnsValidCode(): void {
|
|
$obj = $this->makeObject();
|
|
$obj->setConfig($this->makeConfig());
|
|
|
|
$totp = $obj->publicGetTotp();
|
|
|
|
// the code at the frozen time should match our helper
|
|
self::assertSame($this->validTotpCode(), $totp->now());
|
|
}
|
|
|
|
public function testGetTotpThrowsOnInvalidUri(): void {
|
|
$obj = $this->makeObject();
|
|
$clock = $this->frozenClock();
|
|
$utilities = $this->createUtilities($clock);
|
|
$config = new ConfigBag(
|
|
$utilities, $clock,
|
|
3600, 'not-a-valid-uri', 0, false,
|
|
'Error', 'Teapot', 'Too Many'
|
|
);
|
|
$obj->setConfig($config);
|
|
|
|
// Factory::loadFromProvisioningUri throws InvalidProvisioningUriException
|
|
// which is not caught by getTotp() since the instanceof check only runs
|
|
// after a successful load — so we expect a Throwable here
|
|
$this->expectException(\Throwable::class);
|
|
$obj->publicGetTotp();
|
|
}
|
|
|
|
public function testGetTotpThrowsHttpExceptionWhenNotTotpType(): void {
|
|
// A HOTP URI loads successfully as an OTPInterface but is NOT a TOTPInterface,
|
|
// so the instanceof check in getTotp() should throw an HttpException(500)
|
|
$obj = $this->makeObject();
|
|
$clock = $this->frozenClock();
|
|
$utilities = $this->createUtilities($clock);
|
|
$config = new ConfigBag(
|
|
$utilities, $clock,
|
|
3600, 'otpauth://hotp/Test-HOTP?secret=JBSWY3DPEHPK3PXP&counter=0', 0, false,
|
|
'Error', 'Teapot', 'Too Many'
|
|
);
|
|
$obj->setConfig($config);
|
|
|
|
$this->expectException(HttpException::class);
|
|
$this->expectExceptionMessage('Internal Server Exception');
|
|
$obj->publicGetTotp();
|
|
}
|
|
}
|