Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6066934
EnigmaKey.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
788 B
Referenced Files
None
Subscribers
None
EnigmaKey.php
View Options
<?php
class
Enigma_EnigmaKey
extends
PHPUnit\Framework\TestCase
{
static
function
setUpBeforeClass
()
{
include_once
__DIR__
.
'/../lib/enigma_key.php'
;
}
/**
* Test "empty" key
*/
function
test_empty_key
()
{
$key
=
new
enigma_key
();
$this
->
assertInstanceOf
(
'enigma_key'
,
$key
);
$this
->
assertSame
(
enigma_key
::
TYPE_UNKNOWN
,
$key
->
get_type
());
$this
->
assertSame
(
false
,
$key
->
is_revoked
());
$this
->
assertSame
(
false
,
$key
->
is_valid
());
$this
->
assertSame
(
false
,
$key
->
is_private
());
$this
->
assertSame
(
null
,
$key
->
find_subkey
(
'test@domain.com'
,
enigma_key
::
CAN_SIGN
));
$this
->
assertSame
(
'89E037A5'
,
$key
::
format_id
(
'04622F2089E037A5'
));
// TODO: format_fingerprint();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 22, 5:01 AM (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
779828
Default Alt Text
EnigmaKey.php (788 B)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment