mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-02-05 13:51:34 +00:00
more tests
removed examples
This commit is contained in:
parent
f98e3c57e4
commit
ba4ad8960b
33 changed files with 478 additions and 121 deletions
39
tests/gnupg_oo_sign_detach.phpt
Normal file
39
tests/gnupg_oo_sign_detach.phpt
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
--TEST--n
|
||||
sign a text with mode SIG_MODE_DETACH
|
||||
--SKIPIF--
|
||||
<?php if(!class_exists("gnupg")) die("skip"); ?>
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
$gpg = new gnupg();
|
||||
$gpg -> seterrormode(gnupg::ERROR_WARNING);
|
||||
$gpg -> setsignmode(gnupg::SIG_MODE_DETACH);
|
||||
$gpg -> addsignkey($fingerprint, $passphrase);
|
||||
$ret = $gpg -> sign($plaintext);
|
||||
|
||||
$gpg = NULL;
|
||||
|
||||
$gpg = new gnupg();
|
||||
$tmp = false;
|
||||
$ret = $gpg -> verify($plaintext, $ret);
|
||||
|
||||
var_dump($ret);
|
||||
var_dump($plaintext);
|
||||
?>
|
||||
--EXPECTF--
|
||||
array(1) {
|
||||
[0]=>
|
||||
array(5) {
|
||||
["fingerprint"]=>
|
||||
string(40) "64DF06E42FCF2094590CDEEE2E96F141B3DD2B2E"
|
||||
["validity"]=>
|
||||
int(0)
|
||||
["timestamp"]=>
|
||||
int(%d)
|
||||
["status"]=>
|
||||
int(0)
|
||||
["summary"]=>
|
||||
int(0)
|
||||
}
|
||||
}
|
||||
string(7) "foo bar"
|
||||
Loading…
Add table
Add a link
Reference in a new issue