mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-07-27 16:12:40 +00:00
tests
This commit is contained in:
parent
abaa52b97a
commit
dc666cc840
12 changed files with 487 additions and 0 deletions
35
tests/gnupg_listsignatures_oo.phpt
Normal file
35
tests/gnupg_listsignatures_oo.phpt
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
--TEST--n
|
||||
list signatures
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
$gpg = new gnupg();
|
||||
$gpg -> seterrormode(gnupg::ERROR_WARNING);
|
||||
$ret = $gpg -> listsignatures($fingerprint);
|
||||
var_dump($ret);
|
||||
?>
|
||||
--EXPECT--
|
||||
array(1) {
|
||||
["testkey (testkey) <test@example.net>"]=>
|
||||
array(1) {
|
||||
["2E96F141B3DD2B2E"]=>
|
||||
array(8) {
|
||||
["uid"]=>
|
||||
string(36) "testkey (testkey) <test@example.net>"
|
||||
["name"]=>
|
||||
string(7) "testkey"
|
||||
["email"]=>
|
||||
string(16) "test@example.net"
|
||||
["comment"]=>
|
||||
string(7) "testkey"
|
||||
["expires"]=>
|
||||
int(0)
|
||||
["revoked"]=>
|
||||
bool(false)
|
||||
["expired"]=>
|
||||
bool(false)
|
||||
["invalid"]=>
|
||||
bool(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue