sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
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.
40 lines
860 B
40 lines
860 B
6 years ago
|
<?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\Hmac;
|
||
|
|
||
|
/**
|
||
|
* @author Luís Otávio Cobucci Oblonczyk <lcobucci@gmail.com>
|
||
|
* @since 0.1.0
|
||
|
*/
|
||
|
class Sha256Test extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Signer\Hmac\Sha256::getAlgorithmId
|
||
|
*/
|
||
|
public function getAlgorithmIdMustBeCorrect()
|
||
|
{
|
||
|
$signer = new Sha256();
|
||
|
|
||
|
$this->assertEquals('HS256', $signer->getAlgorithmId());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*
|
||
|
* @covers Lcobucci\JWT\Signer\Hmac\Sha256::getAlgorithm
|
||
|
*/
|
||
|
public function getAlgorithmMustBeCorrect()
|
||
|
{
|
||
|
$signer = new Sha256();
|
||
|
|
||
|
$this->assertEquals('sha256', $signer->getAlgorithm());
|
||
|
}
|
||
|
}
|