We don’t need the complexity of S3. Sepcifically the complexity of managing my own AWS account, flysystem made the Laravel side easy. A command is added to copy the the S3 files over to local storage.
69 lines
2 KiB
PHP
69 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Services\TokenService;
|
|
use DateTimeImmutable;
|
|
use Lcobucci\JWT\Configuration;
|
|
use Lcobucci\JWT\Signer\Key\InMemory;
|
|
use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
|
|
use Tests\TestCase;
|
|
|
|
class TokenServiceTest extends TestCase
|
|
{
|
|
/**
|
|
* Given the token is dependent on a random nonce, the time of creation and
|
|
* the APP_KEY, to test, we shall create a token, and then verify it.
|
|
*
|
|
* @test
|
|
*/
|
|
public function tokenserviceCreatesAndValidatesTokens(): void
|
|
{
|
|
$tokenService = new TokenService;
|
|
$data = [
|
|
'me' => 'https://example.org',
|
|
'client_id' => 'https://quill.p3k.io',
|
|
'scope' => 'post',
|
|
];
|
|
$token = $tokenService->getNewToken($data);
|
|
$valid = $tokenService->validateToken($token);
|
|
$validData = [
|
|
'me' => $valid->claims()->get('me'),
|
|
'client_id' => $valid->claims()->get('client_id'),
|
|
'scope' => $valid->claims()->get('scope'),
|
|
];
|
|
$this->assertSame($data, $validData);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function tokensWithDifferentSigningKeyThrowsException(): void
|
|
{
|
|
$this->expectException(RequiredConstraintsViolated::class);
|
|
|
|
$data = [
|
|
'me' => 'https://example.org',
|
|
'client_id' => 'https://quill.p3k.io',
|
|
'scope' => 'post',
|
|
];
|
|
|
|
$config = resolve(Configuration::class);
|
|
|
|
$token = $config->builder()
|
|
->issuedAt(new DateTimeImmutable)
|
|
->withClaim('client_id', $data['client_id'])
|
|
->withClaim('me', $data['me'])
|
|
->withClaim('scope', $data['scope'])
|
|
->withClaim('nonce', bin2hex(random_bytes(8)))
|
|
->getToken($config->signer(), InMemory::plainText(random_bytes(32)))
|
|
->toString();
|
|
|
|
$service = new TokenService;
|
|
$service->validateToken($token);
|
|
}
|
|
}
|