mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 17:46:51 +01:00
* Fix "method_argument_space" * Fix "control_structure_continuation_position" * Fix "new_with_parentheses" * Fix "blank_line_before_statement" * Fix "visibility_required" * Fix some "array_indentation" * Fix some "array_indentation" - unify all "rcube::raise_error" calls * rm useless eslint ignores and add rules counts * sort eslint ignores * fix eslint ignores grammar * Revert "Fix "blank_line_before_statement"" * fix CS 3.46.0
28 lines
783 B
PHP
28 lines
783 B
PHP
<?php
|
|
|
|
class Enigma_EnigmaKey extends PHPUnit\Framework\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();
|
|
}
|
|
}
|