mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
tests/openpgp: Reimplement tests in Scheme.
* Makefile.am: Build the test infrastructure on Windows. * tests/openpgp/Makefile.am (required_pgms): Add gpgscm. (TESTS_ENVIRONMENT): Make sure gpgscm and the libraries are found. (TESTS): Replace tests with the new Scheme implementations. * tests/openpgp/4gb-packet.scm: New file. * tests/openpgp/README: Likewise. * tests/openpgp/armdetach.scm: Likewise. * tests/openpgp/armdetachm.scm: Likewise. * tests/openpgp/armencrypt.scm: Likewise. * tests/openpgp/armencryptp.scm: Likewise. * tests/openpgp/armor.scm: Likewise. * tests/openpgp/armsignencrypt.scm: Likewise. * tests/openpgp/armsigs.scm: Likewise. * tests/openpgp/clearsig.scm: Likewise. * tests/openpgp/conventional-mdc.scm: Likewise. * tests/openpgp/conventional.scm: Likewise. * tests/openpgp/decrypt-dsa.scm: Likewise. * tests/openpgp/decrypt.scm: Likewise. * tests/openpgp/default-key.scm: Likewise. * tests/openpgp/defs.scm: Likewise. * tests/openpgp/detach.scm: Likewise. * tests/openpgp/detachm.scm: Likewise. * tests/openpgp/ecc.scm: Likewise. * tests/openpgp/encrypt-dsa.scm: Likewise. * tests/openpgp/encrypt.scm: Likewise. * tests/openpgp/encryptp.scm: Likewise. * tests/openpgp/finish.scm: Likewise. * tests/openpgp/genkey1024.scm: Likewise. * tests/openpgp/gpgtar.scm: Likewise. * tests/openpgp/import.scm: Likewise. * tests/openpgp/mds.scm: Likewise. * tests/openpgp/multisig.scm: Likewise. * tests/openpgp/run-tests.scm: Likewise. * tests/openpgp/seat.scm: Likewise. * tests/openpgp/setup.scm: Likewise. * tests/openpgp/signencrypt-dsa.scm: Likewise. * tests/openpgp/signencrypt.scm: Likewise. * tests/openpgp/sigs-dsa.scm: Likewise. * tests/openpgp/sigs.scm: Likewise. * tests/openpgp/use-exact-key.scm: Likewise. * tests/openpgp/verify.scm: Likewise. * tests/openpgp/version.scm: Likewise. Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
d2ce3f9eee
commit
9609cb20e4
40 changed files with 3474 additions and 18 deletions
107
tests/openpgp/clearsig.scm
Executable file
107
tests/openpgp/clearsig.scm
Executable file
|
@ -0,0 +1,107 @@
|
|||
#!/usr/bin/env gpgscm
|
||||
|
||||
;; Copyright (C) 2016 g10 Code GmbH
|
||||
;;
|
||||
;; This file is part of GnuPG.
|
||||
;;
|
||||
;; GnuPG is free software; you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation; either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; GnuPG is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(load (with-path "defs.scm"))
|
||||
|
||||
(define (check-signing args input)
|
||||
(lambda (source sink)
|
||||
(lettmp (signed)
|
||||
(call-popen `(,@GPG --output ,signed --yes
|
||||
,@args ,source) input)
|
||||
(call-popen `(,@GPG --output ,sink --yes ,signed) ""))))
|
||||
|
||||
(for-each-p
|
||||
"Checking signing and verifying plain text messages"
|
||||
(lambda (source)
|
||||
((if (equal? "plain-3" source)
|
||||
;; plain-3 does not end in a newline, and gpg will add one.
|
||||
;; Therefore, we merely check that the verification is ok.
|
||||
check-execution
|
||||
;; Otherwise, we do check that we recover the original file.
|
||||
check-identity)
|
||||
source
|
||||
(check-signing '(--passphrase-fd "0" --clearsign) usrpass1)))
|
||||
(append plain-files '("plain-large")))
|
||||
|
||||
;; The test vectors are lists of length three, containing
|
||||
;; - a string to be signed,
|
||||
;; - a flag indicating whether we verify that the exact message is
|
||||
;; reconstructed (whitespace at the end is normalized for plain text
|
||||
;; messages),
|
||||
;; - and a list of arguments to add to gpg when encoding
|
||||
;; the string.
|
||||
|
||||
(define :string car)
|
||||
(define :check-equality cadr)
|
||||
(define :options caddr)
|
||||
|
||||
(define
|
||||
vectors
|
||||
'(;; one with long lines
|
||||
("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyx
|
||||
|
||||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||
" #t ())
|
||||
|
||||
;; one with only one long line
|
||||
("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyx
|
||||
" #t ())
|
||||
|
||||
;; and one with an empty body
|
||||
("" #f ())
|
||||
|
||||
;; and one with one empty line at the end
|
||||
("line 1
|
||||
line 2
|
||||
line 3
|
||||
there is a blank line after this
|
||||
|
||||
" #t ())
|
||||
|
||||
;; I think this file will be constructed wrong (gpg 0.9.3) but it
|
||||
;; should verify okay anyway.
|
||||
("this is a sig test
|
||||
" #f ())
|
||||
|
||||
;; check our special diff mode
|
||||
("--- mainproc.c Tue Jun 27 09:28:11 2000
|
||||
+++ mainproc.c~ Thu Jun 8 22:50:25 2000
|
||||
@@ -1190,16 +1190,13 @@
|
||||
md_enable( c->mfx.md, n1->pkt->pkt.signature->digest_algo);
|
||||
}
|
||||
/* ask for file and hash it */
|
||||
- if( c->sigs_only ) {
|
||||
+ if( c->sigs_only )
|
||||
rc = hash_datafiles( c->mfx.md, NULL,
|
||||
c->signed_data, c->sigfilename,
|
||||
n1? (n1->pkt->pkt.onepass_sig->sig_class == 0x01):0 );
|
||||
" #t (--not-dash-escaped))))
|
||||
|
||||
(let ((counter (make-counter)))
|
||||
(for-each-p'
|
||||
"Checking signing and verifying test vectors"
|
||||
(lambda (vec)
|
||||
(lettmp (tmp)
|
||||
(with-output-to-file tmp (lambda () (display (:string vec))))
|
||||
((if (:check-equality vec) check-identity check-execution)
|
||||
tmp
|
||||
(check-signing `(--passphrase-fd "0" --clearsign ,@(:options vec))
|
||||
usrpass1))))
|
||||
(lambda (vec) (counter))
|
||||
vectors))
|
Loading…
Add table
Add a link
Reference in a new issue