PHP Classes

File: tests/KAT/PublicTest.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   PASERK PHP   tests/KAT/PublicTest.php   Download  
File: tests/KAT/PublicTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PASERK PHP
Extend PASETO to wrap and serialize keys
Author: By
Last change:
Date: 1 year ago
Size: 2,400 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
namespace
ParagonIE\Paserk\Tests\KAT;

use
Exception;
use
FG\ASN1\Exception\ParserException;
use
ParagonIE\ConstantTime\Hex;
use
ParagonIE\Paserk\PaserkException;
use
ParagonIE\Paserk\Tests\KnownAnswers;
use
ParagonIE\Paserk\Types\PublicType;
use
ParagonIE\Paseto\Exception\PasetoException;
use
ParagonIE\Paseto\Keys\AsymmetricPublicKey;
use
ParagonIE\Paseto\ProtocolInterface;
use
RangeException;
use
ParagonIE\Paseto\Protocol\{
   
Version3,
   
Version4
};

/**
 * @covers Public
 */
class PublicTest extends KnownAnswers
{
    public function
testV3()
    {
       
$this->doJsonTest(new Version3(), 'k3.public.json');
    }

    public function
testV4()
    {
       
$this->doJsonTest(new Version4(), 'k4.public.json');
    }

   
/**
     * @param ProtocolInterface $version
     * @param string $key
     * @return AsymmetricPublicKey
     *
     * @throws Exception
     */
   
protected function getPublicKey(ProtocolInterface $version, string $key): AsymmetricPublicKey
   
{
        return new
AsymmetricPublicKey(Hex::decode($key), $version);
    }

   
/**
     * @throws PaserkException
     * @throws Exception
     */
   
protected function genericTest(ProtocolInterface $version, string $name, array $tests): void
   
{
       
$public = (new PublicType($version));
        foreach (
$tests as $test) {
            if (
$test['expect-fail']) {
                if (!empty(
$test['paserk'])) {
                    try {
                       
$public->decode($test['paserk']);
                       
$this->fail($test['name'] . ': ' . $test['comment']);
                    } catch (
ParserException | RangeException | PasetoException | PaserkException $ex) {
                    }
                    continue;
                }

                try {
                   
$publickey = $this->getPublicKey($version, $test['key']);
                   
$public->encode($publickey);
                   
$this->fail($test['name'] . ': '. $test['comment']);
                } catch (
ParserException | RangeException | PasetoException | PaserkException $ex) {
                }
                continue;
            }

           
$publickey = $this->getPublicKey($version, $test['key']);
           
$this->assertSame(
               
$test['paserk'],
               
$public->encode($publickey),
               
$test['name']
            );
        }
    }
}