php-gnupg/tests/gnupg_res_0001_import.phpt

40 lines
697 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
2018-05-17 19:15:14 +00:00
--SKIPIF--
<?php if (!extension_loaded("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";
2021-02-14 18:29:37 +00:00
gnupgt::reset_key();
2018-05-17 19:15:14 +00:00
2006-11-03 12:39:53 +00:00
$gpg = gnupg_init();
gnupg_seterrormode($gpg, GNUPG_ERROR_WARNING);
$ret = gnupg_import($gpg, $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"]=>
2019-09-29 16:14:01 +00:00
string(40) "2DF0DD02DC9B70B7F64F572E669E775E0A6284B3"
2006-05-18 19:32:32 +00:00
}
2018-05-17 19:15:14 +00:00
--CLEAN--
<?php
require_once "gnupgt.inc";
gnupgt::delete_key();
?>