2008-06-13 Marcus Brinkmann <marcus@ulysses.g10code.com>
[gnupg.git] / tests / sm-sign+verify
blob1c3ae7dbd370917d14c3f6f2242655104eadaae4
1 # sm-sign+verify 
3 # Creating a signature and verifying it
4 # Requirements: a plain file "text-1.txt" 
6 srcdir = getenv srcdir
7 plaintext = let $srcdir/text-1.txt
9 in  = openfile $plaintext
10 out = createfile msg.sig
11 in2 = openfile msg.sig
12 out2 = createfile msg.unsig
14 pipeserver $GPGSM
15 send INPUT FD=$in
16 expect-ok
17 send OUTPUT FD=$out
18 expect-ok
19 send SIGN
20 expect-ok
22 send RESET
23 expect-ok
24 send INPUT FD=$in2
25 expect-ok
26 send OUTPUT FD=$out2
27 expect-ok
28 goodsig = count-status GOODSIG
29 trusted = count-status TRUST_FULLY
30 send VERIFY
31 expect-ok
32 echo goodsig=$goodsig trusted=$trusted
33 fail-if !$goodsig
34 fail-if !$trusted
35 send BYE
36 expect-ok
38 # Unset variables so that the files get closed.
39 in  =
40 out =
41 in2 = 
42 out2=
44 cmpfiles $plaintext msg.unsig
45 fail-if !$?
47 # Lets check it again with a new server instance, this time we keep
48 # the server running to check whether the entire message has been
49 # output after the VERIFY.
50 in = openfile msg.sig
51 out = createfile msg.unsig
52 pipeserver $GPGSM
53 send INPUT FD=$in
54 expect-ok
55 send OUTPUT FD=$out
56 expect-ok
57 goodsig = count-status GOODSIG
58 trusted = count-status TRUST_FULLY
59 send VERIFY
60 expect-ok
61 echo goodsig=$goodsig trusted=$trusted
62 fail-if !$goodsig
63 fail-if !$trusted
65 cmpfiles $plaintext msg.unsig
66 fail-if !$?
68 send BYE
69 expect-ok
72 quit