added unit tests
This commit is contained in:
39
tests/Integration/TokenTest.php
Normal file
39
tests/Integration/TokenTest.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Integration;
|
||||
|
||||
use Tests\Support\QdbTestCase;
|
||||
|
||||
final class TokenTest extends QdbTestCase
|
||||
{
|
||||
public function testTokenAddGetRevoke(): void
|
||||
{
|
||||
$token = bin2hex(random_bytes(32));
|
||||
$f = $this->fixture();
|
||||
token_add($token, 3600, [
|
||||
'userID' => $f->adminUserId,
|
||||
'role' => 'admin',
|
||||
'entityID' => 'ent',
|
||||
]);
|
||||
$rec = token_get_record($token);
|
||||
$this->assertNotNull($rec);
|
||||
$this->assertSame('admin', $rec['role']);
|
||||
|
||||
token_revoke($token);
|
||||
$this->assertNull(token_get_record($token));
|
||||
}
|
||||
|
||||
public function testRevokeAllForUser(): void
|
||||
{
|
||||
$f = $this->fixture();
|
||||
$t1 = bin2hex(random_bytes(16));
|
||||
$t2 = bin2hex(random_bytes(16));
|
||||
token_add($t1, 3600, ['userID' => $f->supervisorUserId, 'role' => 'supervisor', 'entityID' => 'x']);
|
||||
token_add($t2, 3600, ['userID' => $f->supervisorUserId, 'role' => 'supervisor', 'entityID' => 'x']);
|
||||
$n = token_revoke_all_for_user($f->supervisorUserId);
|
||||
$this->assertGreaterThanOrEqual(2, $n);
|
||||
$this->assertNull(token_get_record($t1));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user