mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-07 16:46:47 +01:00
* fix Tests\Browser\TestCase imports * fix remaining imports * fix PHPUnit\Framework\TestCase imports * import GuzzleHttp\Client * fix remaining * "php_unit_method_casing" is not todo * fix "single_line_comment_spacing" * fix 2nd commit done using older fixer
30 lines
798 B
PHP
30 lines
798 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class Enigma_EnigmaKey extends TestCase
|
|
{
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
include_once __DIR__ . '/../lib/enigma_key.php';
|
|
}
|
|
|
|
/**
|
|
* Test "empty" key
|
|
*/
|
|
public function test_empty_key()
|
|
{
|
|
$key = new enigma_key();
|
|
|
|
$this->assertInstanceOf('enigma_key', $key);
|
|
$this->assertSame(enigma_key::TYPE_UNKNOWN, $key->get_type());
|
|
$this->assertFalse($key->is_revoked());
|
|
$this->assertFalse($key->is_valid());
|
|
$this->assertFalse($key->is_private());
|
|
$this->assertNull($key->find_subkey('test@domain.com', enigma_key::CAN_SIGN));
|
|
|
|
$this->assertSame('89E037A5', $key::format_id('04622F2089E037A5'));
|
|
// TODO: format_fingerprint();
|
|
}
|
|
}
|