mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 14:27:09 +00:00
Port listsignatures oo test to the new array check
This commit is contained in:
parent
2778396423
commit
e95d53f2e0
1 changed files with 15 additions and 25 deletions
|
@ -10,33 +10,23 @@ gnupgt::import_key();
|
||||||
$gpg = new gnupg();
|
$gpg = new gnupg();
|
||||||
$gpg->seterrormode(gnupg::ERROR_WARNING);
|
$gpg->seterrormode(gnupg::ERROR_WARNING);
|
||||||
$ret = $gpg->listsignatures($fingerprint);
|
$ret = $gpg->listsignatures($fingerprint);
|
||||||
var_dump($ret);
|
|
||||||
|
$k1 = "testkey (testkey) <test@example.net>";
|
||||||
|
$k2 = "2E96F141B3DD2B2E";
|
||||||
|
gnupgt::check_array('testkey (testkey) <test@example.net>', $ret, $k1, $k2, 'uid');
|
||||||
|
gnupgt::check_array('testkey', $ret, $k1, $k2, 'name');
|
||||||
|
gnupgt::check_array('test@example.net', $ret, $k1, $k2, 'email');
|
||||||
|
gnupgt::check_array('testkey', $ret, $k1, $k2, 'comment');
|
||||||
|
gnupgt::check_array(0, $ret, $k1, $k2, 'expires');
|
||||||
|
gnupgt::check_array(false, $ret, $k1, $k2, 'revoked');
|
||||||
|
gnupgt::check_array(false, $ret, $k1, $k2, 'expired');
|
||||||
|
gnupgt::check_array(false, $ret, $k1, $k2, 'invalid');
|
||||||
|
gnupgt::check_array(1129316524, $ret, $k1, $k2, 'timestamp');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Done
|
||||||
--EXPECT--
|
--EXPECT--
|
||||||
array(1) {
|
Done
|
||||||
["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)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
require_once "gnupgt.inc";
|
require_once "gnupgt.inc";
|
||||||
|
|
Loading…
Reference in a new issue