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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
#use Test;
use strict;
use constant USERID => "GnuPG Test";
use constant PASSWD => "test";
use constant UNTRUSTED => "Francis";
use Symbol;
BEGIN {
$| = 1;
}
use GnuPG;
use GnuPG::Tie::Encrypt;
use GnuPG::Tie::Decrypt;
my $gpg = new GnuPG( homedir => "test", trace => $ENV{TRACING} );
sub gen_key_test {
printf "%-40s", "Key generation";
$gpg->gen_key(
passphrase => PASSWD,
name => USERID,
);
}
sub import_test {
printf "%-40s", "Import new public key";
$gpg->import_keys( keys => "test/key1.pub" );
}
sub import2_test {
printf "%-40s", "Import existing public key";
$gpg->import_keys( keys => "test/key1.pub" );
}
sub import3_test {
printf "%-40s", "Import many public keys";
$gpg->import_keys( keys => [ qw( test/key1.pub test/key2.pub ) ] );
}
sub export_test {
printf "%-40s", "Public key export";
$gpg->export_keys( keys => USERID,
armor => 1,
output => "test/key.pub",
);
}
sub export2_test {
printf "%-40s", "Exporting public key ring";
$gpg->export_keys( armor => 1,
output => "test/keyring.pub",
);
}
sub export_secret_test {
printf "%-40s", "Exporting secret key";
$gpg->export_keys( secret => 1,
armor => 1,
output => "test/key.sec",
);
}
sub encrypt_test {
printf "%-40s", "Encrypt";
$gpg->encrypt(
recipient => USERID,
output => "test/file.txt.gpg",
armor => 1,
plaintext => "test/file.txt",
);
}
sub pipe_encrypt_test {
printf "%-40s", "Pipe Encrypt";
open CAT, "| cat > test/pipe-file.txt.gpg"
or die "can't fork: $!\n";
$gpg->encrypt(
recipient => USERID,
output => \*CAT,
armor => 1,
plaintext => "test/file.txt",
);
close CAT;
}
sub encrypt_sign_test {
printf "%-40s", "Encrypt and Sign";
$gpg->encrypt(
recipient => USERID,
output => "test/file.txt.sgpg",
armor => 1,
sign => 1,
plaintext => "test/file.txt",
passphrase => PASSWD,
);
}
sub encrypt_sym_test {
printf "%-40s", "Symmetric encryption";
$gpg->encrypt(
output => "test/file.txt.cipher",
armor => 1,
plaintext => "test/file.txt",
symmetric => 1,
passphrase => PASSWD,
);
}
sub encrypt_notrust_test {
printf "%-40s", "Encrypt to undefined trust";
$gpg->encrypt(
recipient => UNTRUSTED,
output => "test/file.txt.dist.gpg",
armor => 1,
sign => 1,
plaintext => "test/file.txt",
passphrase => PASSWD,
);
}
sub sign_test {
printf "%-40s", "Sign a file";
$gpg->sign(
recipient => USERID,
output => "test/file.txt.sig",
armor => 1,
plaintext => "test/file.txt",
passphrase => PASSWD,
);
}
sub detachsign_test {
printf "%-40s", "Detach signature of a file";
$gpg->sign(
recipient => USERID,
output => "test/file.txt.asc",
"detach-sign" => 1,
armor => 1,
plaintext => "test/file.txt",
passphrase => PASSWD,
);
}
sub clearsign_test {
printf "%-40s", "Clear Sign a File";
$gpg->clearsign(
output => "test/file.txt.clear",
armor => 1,
plaintext => "test/file.txt",
passphrase => PASSWD,
);
}
sub decrypt_test {
printf "%-40s", "Decrypt a file";
$gpg->decrypt(
output => "test/file.txt.plain",
ciphertext => "test/file.txt.gpg",
passphrase => PASSWD,
);
}
sub pipe_decrypt_test {
printf "%-40s", "Pipe Decrypt";
open CAT, "cat test/file.txt.gpg|"
or die "can't fork: $!\n";
$gpg->decrypt(
output => "test/file.txt.plain",
ciphertext => \*CAT,
passphrase => PASSWD,
);
close CAT;
}
sub decrypt_sign_test {
printf "%-40s", "Decrypt a Signed File";
$gpg->decrypt(
output => "test/file.txt.plain2",
ciphertext => "test/file.txt.sgpg",
passphrase => PASSWD,
);
}
sub decrypt_sym_test {
printf "%-40s", "Symmetric decryption";
$gpg->decrypt(
output => "test/file.txt.plain3",
ciphertext => "test/file.txt.cipher",
symmetric => 1,
passphrase => PASSWD,
);
}
sub verify_sign_test {
printf "%-40s", "Verify a signed file";
$gpg->verify( signature => "test/file.txt.sig" );
}
sub verify_detachsign_test {
printf "%-40s", "Verify a detach signature";
$gpg->verify( signature => "test/file.txt.asc",
file => "test/file.txt",
);
}
sub verify_clearsign_test {
printf "%-40s", "Verify a clearsigned file";
$gpg->verify( signature => "test/file.txt.clear" );
}
sub encrypt_from_fh_test {
printf "%-40s", "Encrypt from file handle";
open ( FH, "test/file.txt" )
or die "error opening file: $!\n";
$gpg->encrypt(
recipient => UNTRUSTED,
output => "test/file-fh.txt.gpg",
armor => 1,
plaintext => \*FH,
);
close ( FH )
or die "error closing file: $!\n";
}
sub encrypt_to_fh_test {
printf "%-40s", "Encrypt to file handle";
open ( FH, ">test/file-fho.txt.gpg" )
or die "error opening file: $!\n";
$gpg->encrypt(
recipient => UNTRUSTED,
output => \*FH,
armor => 1,
plaintext => "test/file.txt",
);
close ( FH )
or die "error closing file: $!\n";
}
sub tie_encrypt_test {
printf "%-40s", "Tied encrypt interface";
open( PLAINTEXT, "test/file.txt" )
or die "error opening file: $!\n";
open( CIPHER_OUT, ">test/file-tie.txt.asc" )
or die "error writing encrypting file\n";
tie *CIPHER, 'GnuPG::Tie::Encrypt', homedir => "test",
recipient => 'GnuPG', armor => 1, trace => $ENV{TRACING};
while (<PLAINTEXT>) {
print CIPHER $_;
}
close PLAINTEXT;
while (<CIPHER>) {
print CIPHER_OUT $_;
}
close CIPHER;
untie *CIPHER;
close CIPHER_OUT;
}
sub tie_decrypt_test {
printf "%-40s", "Tied decrypt interface";
open( PLAINTEXT, "test/file.txt" )
or die "error opening plaintext file: $!\n";
my $plaintext_orig = "";
$plaintext_orig .= $_ while ( <PLAINTEXT>);
close PLAINTEXT;
open( CIPHER, "test/file-tie.txt.asc" )
or die "error opening encrypted file\n";
tie *GNUPG, 'GnuPG::Tie::Decrypt', homedir => "test",
passphrase => PASSWD, trace => $ENV{TRACING};
while ( <CIPHER> ) {
print GNUPG $_;
}
my $plaintext = "";
while ( <GNUPG> ) {
$plaintext .= $_;
}
close GNUPG;
untie *GNUPG;
close CIPHER;
die "plaintext doesn't match\n" unless $plaintext_orig eq $plaintext;
}
sub tie_decrypt_para_mode_test {
printf "%-40s", "Tied decrypt in paragraph mode";
my $plaintext = <<EOF;
This is a paragraph.
This is another paragraph
which continue on another line.
This is the final paragraph.
EOF
tie *CIPHER, 'GnuPG::Tie::Encrypt', homedir => "test",
recipient => 'GnuPG', armor => 1, trace => $ENV{TRACING};
print CIPHER $plaintext;
local $/ = undef;
my $cipher = <CIPHER>;
close CIPHER;
untie *CIPHER;
local $/ = "";
tie *TEST, 'GnuPG::Tie::Decrypt', homedir => "test", passphrase => PASSWD;
print TEST $cipher;
my @para = <TEST>;
close TEST;
untie *TEST;
my $count = @para;
die "paragraph count should be 3: $count\n" unless $count == 3;
die "plaintext doesn't match input\n" unless join( "", @para) eq $plaintext;
}
my @tests = qw(
gen_key_test
import_test import2_test import3_test
export_test export2_test export_secret_test
encrypt_test pipe_encrypt_test pipe_decrypt_test
encrypt_sign_test encrypt_sym_test
encrypt_notrust_test
decrypt_test decrypt_sign_test decrypt_sym_test
sign_test detachsign_test clearsign_test
verify_sign_test verify_detachsign_test verify_clearsign_test
tie_encrypt_test tie_decrypt_test tie_decrypt_para_mode_test
);
if ( defined $ENV{TESTS} ) {
@tests = split /\s+/, $ENV{TESTS};
}
print "1..", scalar @tests, "\n";
my $i = 1;
for ( @tests ) {
eval {
no strict 'refs'; # We are using symbolic references
&$_();
};
if ( $@ ) {
print "not ok $i: $@";
} else {
print "ok $i\n";
}
$i++;
}
|