2015-04-20 04:24:17 +08:00
|
|
|
#! /usr/bin/perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use POSIX;
|
2016-02-22 04:54:30 +08:00
|
|
|
use File::Path 2.00 qw/rmtree/;
|
2016-01-30 08:05:33 +08:00
|
|
|
use OpenSSL::Test qw/:DEFAULT cmdstr srctop_file/;
|
2015-04-20 04:24:17 +08:00
|
|
|
|
|
|
|
setup("test_ca");
|
|
|
|
|
|
|
|
$ENV{OPENSSL} = cmdstr(app(["openssl"]));
|
2016-01-30 08:05:33 +08:00
|
|
|
my $std_openssl_cnf =
|
|
|
|
srctop_file("apps", $^O eq "VMS" ? "openssl-vms.cnf" : "openssl.cnf");
|
2015-04-20 04:24:17 +08:00
|
|
|
|
2016-02-22 04:54:30 +08:00
|
|
|
rmtree("demoCA", { safe => 0 });
|
2015-04-20 04:24:17 +08:00
|
|
|
|
|
|
|
plan tests => 4;
|
|
|
|
SKIP: {
|
2016-01-30 08:05:33 +08:00
|
|
|
$ENV{OPENSSL_CONFIG} = "-config ".srctop_file("test", "CAss.cnf");
|
2015-04-20 04:24:17 +08:00
|
|
|
skip "failed creating CA structure", 3
|
2016-03-30 01:38:30 +08:00
|
|
|
if !ok(run(perlapp(["CA.pl","-newca"], stdin => undef)),
|
2015-04-20 04:24:17 +08:00
|
|
|
'creating CA structure');
|
|
|
|
|
2016-01-30 08:05:33 +08:00
|
|
|
$ENV{OPENSSL_CONFIG} = "-config ".srctop_file("test", "Uss.cnf");
|
2015-04-20 04:24:17 +08:00
|
|
|
skip "failed creating new certificate request", 2
|
2016-03-30 01:38:30 +08:00
|
|
|
if !ok(run(perlapp(["CA.pl","-newreq"])),
|
2016-01-26 22:01:00 +08:00
|
|
|
'creating CA structure');
|
2015-04-20 04:24:17 +08:00
|
|
|
|
2015-10-28 03:11:48 +08:00
|
|
|
$ENV{OPENSSL_CONFIG} = "-config ".$std_openssl_cnf;
|
2015-04-20 04:24:17 +08:00
|
|
|
skip "failed to sign certificate request", 1
|
2016-03-30 01:38:30 +08:00
|
|
|
if !is(yes(cmdstr(perlapp(["CA.pl", "-sign"]))), 0,
|
2015-04-20 04:24:17 +08:00
|
|
|
'signing certificate request');
|
|
|
|
|
2016-03-30 01:38:30 +08:00
|
|
|
ok(run(perlapp(["CA.pl", "-verify", "newcert.pem"])),
|
2015-04-20 04:24:17 +08:00
|
|
|
'verifying new certificate');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-22 04:54:30 +08:00
|
|
|
rmtree("demoCA", { safe => 0 });
|
2015-04-20 04:24:17 +08:00
|
|
|
unlink "newcert.pem", "newreq.pem";
|
|
|
|
|
|
|
|
|
|
|
|
sub yes {
|
2016-01-13 22:16:41 +08:00
|
|
|
my $cntr = 10;
|
2015-04-20 04:24:17 +08:00
|
|
|
open(PIPE, "|-", join(" ",@_));
|
|
|
|
local $SIG{PIPE} = "IGNORE";
|
2016-01-13 22:16:41 +08:00
|
|
|
1 while $cntr-- > 0 && print PIPE "y\n";
|
2015-04-20 04:24:17 +08:00
|
|
|
close PIPE;
|
|
|
|
return 0;
|
|
|
|
}
|
2016-01-30 08:05:33 +08:00
|
|
|
|