php-gnupg/tests/gnupg_oo_import.phpt

40 lines
681 B
Text
Raw Normal View History

2018-05-17 19:15:14 +00:00
--TEST--
2006-05-18 19:32:32 +00:00
import a new key into the keyring
2006-11-03 12:39:53 +00:00
--SKIPIF--
<?php if(!class_exists("gnupg")) die("skip"); ?>
2006-05-18 19:32:32 +00:00
--FILE--
<?php
2018-05-17 19:15:14 +00:00
require_once "gnupgt.inc";
gnupgt::delete_key();
2006-05-18 19:32:32 +00:00
$gpg = new gnupg();
2018-05-17 19:15:14 +00:00
$gpg->seterrormode(gnupg::ERROR_WARNING);
$ret = $gpg->import($testkey);
2006-05-18 19:32:32 +00:00
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"
}
2018-05-17 19:15:14 +00:00
--CLEAN--
<?php
require_once "gnupgt.inc";
gnupgt::delete_key();
?>