aboutsummaryrefslogtreecommitdiffstats
path: root/checks/clearsig.test
blob: e5445db7bf9991e912ee8239126bcf874d69edb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh


# Fixme: we should not only do a --verify but also the output.



. $srcdir/defs.inc || exit 3

# I can't compare the out because plain-3 has no LF as last charcater
# but the output has always one.  I do not thinkl this is a bug, because
# it is clear text and not binary text.
for i in $plain_files; do
    echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 -sat -o x --yes $i
    $srcdir/run-gpg --verify x
done
# and once more to check rfc1991
for i in $plain_files; do
    echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 \
			 --rfc1991 --digest-algo md5 -sat -o x --yes $i
    $srcdir/run-gpg --verify x
done
# and one with long lines
cat >y <<EOF
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyx

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
EOF
echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 --clearsign -o x --yes y
$srcdir/run-gpg --verify x
# and one with only one long lines
cat >y <<EOF
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyx
EOF
echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 --clearsign -o x --yes y
$srcdir/run-gpg --verify x
# and one with an empty body
cat >y <<EOF
EOF
echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 --clearsign -o x --yes y
$srcdir/run-gpg --verify x

# and one with one empty line at the end
cat >y <<EOF
line 1
line 2
line 3
there is a blank line after this

EOF
echo "$usrpass1" | $srcdir/run-gpg --passphrase-fd 0 --clearsign -o x --yes y
$srcdir/run-gpg --verify x