281 lines
9.1 KiB
PHP
281 lines
9.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* This file is part of Lcobucci\JWT, a simple library to handle JWT and JWS
|
||
|
*
|
||
|
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
namespace Lcobucci\JWT\FunctionalTests;
|
||
|
|
||
|
use Lcobucci\JWT\Builder;
|
||
|
use Lcobucci\JWT\Keys;
|
||
|
use Lcobucci\JWT\Parser;
|
||
|
use Lcobucci\JWT\Signer\Key;
|
||
|
use Lcobucci\JWT\Token;
|
||
|
use Lcobucci\JWT\Signature;
|
||
|
use Lcobucci\JWT\Signer\Rsa\Sha256;
|
||
|
use Lcobucci\JWT\Signer\Rsa\Sha512;
|
||
|
|
||
|
/**
|
||
|
* @author Luís Otávio Cobucci Oblonczyk <lcobucci@gmail.com>
|
||
|
* @since 2.1.0
|
||
|
*/
|
||
|
class RsaTokenTest extends \PHPUnit\Framework\TestCase
|
||
|
{
|
||
|
use Keys;
|
||
|
|
||
|
/**
|
||
|
* @var Sha256
|
||
|
*/
|
||
|
private $signer;
|
||
|
|
||
|
/**
|
||
|
* @before
|
||
|
*/
|
||
|
public function createSigner()
|
||
|
{
|
||
|
$this->signer = new Sha256();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @expectedException \InvalidArgumentException
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function builderShouldRaiseExceptionWhenKeyIsInvalid()
|
||
|
{
|
||
|
$user = (object) ['name' => 'testing', 'email' => 'testing@abc.com'];
|
||
|
|
||
|
(new Builder())->setId(1)
|
||
|
->setAudience('http://client.abc.com')
|
||
|
->setIssuer('http://api.abc.com')
|
||
|
->set('user', $user)
|
||
|
->getToken($this->signer, new Key('testing'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @expectedException \InvalidArgumentException
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function builderShouldRaiseExceptionWhenKeyIsNotRsaCompatible()
|
||
|
{
|
||
|
$user = (object) ['name' => 'testing', 'email' => 'testing@abc.com'];
|
||
|
|
||
|
(new Builder())->setId(1)
|
||
|
->setAudience('http://client.abc.com')
|
||
|
->setIssuer('http://api.abc.com')
|
||
|
->set('user', $user)
|
||
|
->getToken($this->signer, static::$ecdsaKeys['private']);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function builderCanGenerateAToken()
|
||
|
{
|
||
|
$user = (object) ['name' => 'testing', 'email' => 'testing@abc.com'];
|
||
|
|
||
|
$token = (new Builder())->setId(1)
|
||
|
->setAudience('http://client.abc.com')
|
||
|
->setIssuer('http://api.abc.com')
|
||
|
->set('user', $user)
|
||
|
->setHeader('jki', '1234')
|
||
|
->sign($this->signer, static::$rsaKeys['private'])
|
||
|
->getToken();
|
||
|
|
||
|
$this->assertAttributeInstanceOf(Signature::class, 'signature', $token);
|
||
|
$this->assertEquals('1234', $token->getHeader('jki'));
|
||
|
$this->assertEquals('http://client.abc.com', $token->getClaim('aud'));
|
||
|
$this->assertEquals('http://api.abc.com', $token->getClaim('iss'));
|
||
|
$this->assertEquals($user, $token->getClaim('user'));
|
||
|
|
||
|
return $token;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @depends builderCanGenerateAToken
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Parsing\Decoder
|
||
|
*/
|
||
|
public function parserCanReadAToken(Token $generated)
|
||
|
{
|
||
|
$read = (new Parser())->parse((string) $generated);
|
||
|
|
||
|
$this->assertEquals($generated, $read);
|
||
|
$this->assertEquals('testing', $read->getClaim('user')->name);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @depends builderCanGenerateAToken
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function verifyShouldReturnFalseWhenKeyIsNotRight(Token $token)
|
||
|
{
|
||
|
$this->assertFalse($token->verify($this->signer, self::$rsaKeys['encrypted-public']));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @depends builderCanGenerateAToken
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha512
|
||
|
*/
|
||
|
public function verifyShouldReturnFalseWhenAlgorithmIsDifferent(Token $token)
|
||
|
{
|
||
|
$this->assertFalse($token->verify(new Sha512(), self::$rsaKeys['public']));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @expectedException \InvalidArgumentException
|
||
|
*
|
||
|
* @depends builderCanGenerateAToken
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function verifyShouldRaiseExceptionWhenKeyIsNotRsaCompatible(Token $token)
|
||
|
{
|
||
|
$this->assertFalse($token->verify($this->signer, self::$ecdsaKeys['public1']));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @depends builderCanGenerateAToken
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
*/
|
||
|
public function verifyShouldReturnTrueWhenKeyIsRight(Token $token)
|
||
|
{
|
||
|
$this->assertTrue($token->verify($this->signer, self::$rsaKeys['public']));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Builder
|
||
|
* @covers Lcobucci\JWT\Parser
|
||
|
* @covers Lcobucci\JWT\Token
|
||
|
* @covers Lcobucci\JWT\Signature
|
||
|
* @covers Lcobucci\JWT\Signer\Key
|
||
|
* @covers Lcobucci\JWT\Signer\BaseSigner
|
||
|
* @covers \Lcobucci\JWT\Signer\OpenSSL
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa
|
||
|
* @covers \Lcobucci\JWT\Signer\Rsa\Sha256
|
||
|
* @covers Lcobucci\JWT\Claim\Factory
|
||
|
* @covers Lcobucci\JWT\Claim\Basic
|
||
|
* @covers Lcobucci\JWT\Parsing\Encoder
|
||
|
* @covers Lcobucci\JWT\Parsing\Decoder
|
||
|
*/
|
||
|
public function everythingShouldWorkWhenUsingATokenGeneratedByOtherLibs()
|
||
|
{
|
||
|
$data = 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXUyJ9.eyJoZWxsbyI6IndvcmxkIn0.s'
|
||
|
. 'GYbB1KrmnESNfJ4D9hOe1Zad_BMyxdb8G4p4LNP7StYlOyBWck6q7XPpPj_6gB'
|
||
|
. 'Bo1ohD3MA2o0HY42lNIrAStaVhfsFKGdIou8TarwMGZBPcif_3ThUV1pGS3fZc'
|
||
|
. 'lFwF2SP7rqCngQis_xcUVCyqa8E1Wa_v28grnl1QZrnmQFO8B5JGGLqcrfUHJO'
|
||
|
. 'nJCupP-Lqh4TmIhftIimSCgLNmJg80wyrpUEfZYReE7hPuEmY0ClTqAGIMQoNS'
|
||
|
. '98ljwDxwhfbSuL2tAdbV4DekbTpWzspe3dOJ7RSzmPKVZ6NoezaIazKqyqkmHZfcMaHI1lQeGia6LTbHU1bp0gINi74Vw';
|
||
|
|
||
|
$token = (new Parser())->parse((string) $data);
|
||
|
|
||
|
$this->assertEquals('world', $token->getClaim('hello'));
|
||
|
$this->assertTrue($token->verify($this->signer, self::$rsaKeys['public']));
|
||
|
}
|
||
|
}
|