mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-02-06 22:31:35 +00:00
more tests
removed examples
This commit is contained in:
parent
f98e3c57e4
commit
ba4ad8960b
33 changed files with 478 additions and 121 deletions
33
tests/gnupg_res_0001_import.phpt
Normal file
33
tests/gnupg_res_0001_import.phpt
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
--TEST--n
|
||||
import a new key into the keyring
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
@unlink (dirname(__FILE__)."/pubring.gpg");
|
||||
@unlink (dirname(__FILE__)."/secring.gpg");
|
||||
$gpg = gnupg_init();
|
||||
gnupg_seterrormode($gpg, GNUPG_ERROR_WARNING);
|
||||
$ret = gnupg_import($gpg, $testkey);
|
||||
var_dump($ret);
|
||||
?>
|
||||
--EXPECT--
|
||||
array(9) {
|
||||
["imported"]=>
|
||||
int(1)
|
||||
["unchanged"]=>
|
||||
int(0)
|
||||
["newuserids"]=>
|
||||
int(0)
|
||||
["newsubkeys"]=>
|
||||
int(0)
|
||||
["secretimported"]=>
|
||||
int(1)
|
||||
["secretunchanged"]=>
|
||||
int(0)
|
||||
["newsignatures"]=>
|
||||
int(0)
|
||||
["skippedkeys"]=>
|
||||
int(0)
|
||||
["fingerprint"]=>
|
||||
string(40) "64DF06E42FCF2094590CDEEE2E96F141B3DD2B2E"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue