nginxsonarrradarrplexorganizrdashboardapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmark
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							49 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							49 lines
						
					
					
						
							1.3 KiB
						
					
					
				
								<?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\Signer;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * @author Luís Otávio Cobucci Oblonczyk <lcobucci@gmail.com>
							 | 
						|
								 * @since 2.1.0
							 | 
						|
								 */
							 | 
						|
								class KeychainTest extends \PHPUnit\Framework\TestCase
							 | 
						|
								{
							 | 
						|
								    /**
							 | 
						|
								     * @test
							 | 
						|
								     *
							 | 
						|
								     * @uses Lcobucci\JWT\Signer\Key
							 | 
						|
								     *
							 | 
						|
								     * @covers Lcobucci\JWT\Signer\Keychain::getPrivateKey
							 | 
						|
								     */
							 | 
						|
								    public function getPrivateKeyShouldReturnAKey()
							 | 
						|
								    {
							 | 
						|
								        $keychain = new Keychain();
							 | 
						|
								        $key = $keychain->getPrivateKey('testing', 'test');
							 | 
						|
								
							 | 
						|
								        $this->assertInstanceOf(Key::class, $key);
							 | 
						|
								        $this->assertAttributeEquals('testing', 'content', $key);
							 | 
						|
								        $this->assertAttributeEquals('test', 'passphrase', $key);
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * @test
							 | 
						|
								     *
							 | 
						|
								     * @uses Lcobucci\JWT\Signer\Key
							 | 
						|
								     *
							 | 
						|
								     * @covers Lcobucci\JWT\Signer\Keychain::getPublicKey
							 | 
						|
								     */
							 | 
						|
								    public function getPublicKeyShouldReturnAValidResource()
							 | 
						|
								    {
							 | 
						|
								        $keychain = new Keychain();
							 | 
						|
								        $key = $keychain->getPublicKey('testing');
							 | 
						|
								
							 | 
						|
								        $this->assertInstanceOf(Key::class, $key);
							 | 
						|
								        $this->assertAttributeEquals('testing', 'content', $key);
							 | 
						|
								        $this->assertAttributeEquals(null, 'passphrase', $key);
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |