mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace LeagueTests\Utils;
 | 
						|
 | 
						|
use League\OAuth2\Server\CryptKey;
 | 
						|
use LeagueTests\Stubs\CryptTraitStub;
 | 
						|
 | 
						|
class CryptTraitTest extends \PHPUnit_Framework_TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * CryptTrait stub
 | 
						|
     */
 | 
						|
    protected $cryptStub;
 | 
						|
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        $this->cryptStub = new CryptTraitStub;
 | 
						|
    }
 | 
						|
 | 
						|
    public function testEncryptDecrypt()
 | 
						|
    {
 | 
						|
        $payload = 'alex loves whisky';
 | 
						|
        $encrypted = $this->cryptStub->doEncrypt($payload);
 | 
						|
        $plainText = $this->cryptStub->doDecrypt($encrypted);
 | 
						|
 | 
						|
        $this->assertNotEquals($payload, $encrypted);
 | 
						|
        $this->assertEquals($payload, $plainText);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException \LogicException
 | 
						|
     */
 | 
						|
    public function testBadPrivateKey()
 | 
						|
    {
 | 
						|
        $this->cryptStub->setPrivateKey(new CryptKey(__DIR__ . '/Stubs/public.key'));
 | 
						|
        $this->cryptStub->doEncrypt('');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException \LogicException
 | 
						|
     */
 | 
						|
    public function testBadPublicKey()
 | 
						|
    {
 | 
						|
        $this->cryptStub->setPublicKey(new CryptKey(__DIR__ . '/Stubs/private.key'));
 | 
						|
        $this->cryptStub->doDecrypt('');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException \LogicException
 | 
						|
     */
 | 
						|
    public function testNonExistentKey()
 | 
						|
    {
 | 
						|
        new CryptKey('foo/bar');
 | 
						|
    }
 | 
						|
}
 |