mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 17:46:51 +01:00
* use fixed "roundcube/plugin-installer" * Use composer autoloader for plugins testing * cherrypick remaining from 9241 related with testing * minor legacy autoload improvements
25 lines
676 B
PHP
25 lines
676 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class Enigma_EnigmaKey extends TestCase
|
|
{
|
|
/**
|
|
* 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();
|
|
}
|
|
}
|