| 1 | <?php |
||
| 20 | class JWAManagerTest extends TestCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * |
||
| 24 | */ |
||
| 25 | public function testAlgorithmIsSupported() |
||
| 26 | { |
||
| 27 | $jwa_manager = AlgorithmManagerFactory::createAlgorithmManager(['ES256', 'ES384']); |
||
| 28 | |||
| 29 | $this->assertTrue($jwa_manager->isAlgorithmSupported('ES256')); |
||
| 30 | $this->assertTrue($jwa_manager->isAlgorithmSupported('ES384')); |
||
| 31 | |||
| 32 | $this->assertFalse($jwa_manager->isAlgorithmSupported('ES512')); |
||
| 33 | $this->assertFalse($jwa_manager->isAlgorithmSupported('HS384')); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |