6278672e8cc92de68bd7c3955886e0f743fc2e13
[openssl.git] / test / recipes / 80-test_ca.t
1 #! /usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use POSIX;
7 use File::Spec::Functions qw/splitdir curdir catfile devnull/;
8 use File::Path qw/remove_tree/;
9 use Test::More;
10 use OpenSSL::Test qw/:DEFAULT cmdstr top_file quotify/;
11
12 setup("test_ca");
13
14 my $perl = $^X;
15 $ENV{OPENSSL} = cmdstr(app(["openssl"]));
16 my $CA_pl = top_file("apps", "CA.pl");
17 my $std_openssl_cnf = top_file("apps", "openssl.cnf");
18
19 ($perl) = quotify($perl) unless $^O eq "VMS"; # never quotify a command on VMS. Ever!
20
21 remove_tree("demoCA", { safe => 0 });
22
23 plan tests => 4;
24  SKIP: {
25      $ENV{SSLEAY_CONFIG} = "-config CAss.cnf";
26      skip "failed creating CA structure", 3
27          if !is(system("$perl ".$CA_pl." -newca < ".devnull()." 2>&1"), 0,
28                 'creating CA structure');
29
30      $ENV{SSLEAY_CONFIG} = "-config Uss.cnf";
31      skip "failed creating new certificate request", 2
32          if !is(system("$perl ".$CA_pl." -newreq 2>&1"), 0,
33                 'creating new certificate request');
34
35      $ENV{SSLEAY_CONFIG} = "-config ".$std_openssl_cnf;
36      skip "failed to sign certificate request", 1
37          if !is(yes("$perl ".$CA_pl." -sign 2>&1"), 0,
38                 'signing certificate request');
39
40      is(system("$perl ".$CA_pl." -verify newcert.pem 2>&1"), 0,
41         'verifying new certificate');
42 }
43
44
45 remove_tree("demoCA", { safe => 0 });
46 unlink "newcert.pem", "newreq.pem";
47
48
49 sub yes {
50     open(PIPE, "|-", join(" ",@_));
51     local $SIG{PIPE} = "IGNORE";
52     1 while print PIPE "y\n";
53     close PIPE;
54     return 0;
55 }