2016-04-22 11:21:51 +00:00
|
|
|
#! /usr/bin/env perl
|
2018-09-11 12:22:14 +00:00
|
|
|
# Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-22 11:21:51 +00:00
|
|
|
#
|
2018-12-06 12:05:25 +00:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-22 11:21:51 +00:00
|
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
|
|
# in the file LICENSE in the source distribution or at
|
|
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
|
2015-04-17 18:15:22 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2016-06-03 23:05:06 +00:00
|
|
|
use OpenSSL::Test::Utils;
|
2016-01-30 00:05:33 +00:00
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
2015-04-17 18:15:22 +00:00
|
|
|
|
|
|
|
setup("test_req");
|
|
|
|
|
2018-07-09 18:55:17 +00:00
|
|
|
plan tests => 9;
|
2015-04-17 18:15:22 +00:00
|
|
|
|
2016-01-30 00:05:33 +00:00
|
|
|
require_ok(srctop_file('test','recipes','tconversion.pl'));
|
2015-04-17 18:15:22 +00:00
|
|
|
|
2016-06-03 23:05:06 +00:00
|
|
|
open RND, ">>", ".rnd";
|
2017-06-26 16:02:57 +00:00
|
|
|
print RND "string to make the random number generator think it has randomness";
|
2016-06-03 23:05:06 +00:00
|
|
|
close RND;
|
2018-07-05 23:57:22 +00:00
|
|
|
|
2018-07-09 18:55:17 +00:00
|
|
|
# What type of key to generate?
|
|
|
|
my @req_new;
|
|
|
|
if (disabled("rsa")) {
|
|
|
|
@req_new = ("-newkey", "dsa:".srctop_file("apps", "dsa512.pem"));
|
|
|
|
} else {
|
|
|
|
@req_new = ("-new");
|
|
|
|
note("There should be a 2 sequences of .'s and some +'s.");
|
|
|
|
note("There should not be more that at most 80 per line");
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check for duplicate -addext parameters, and one "working" case.
|
|
|
|
my @addext_args = ( "openssl", "req", "-new", "-out", "testreq.pem",
|
|
|
|
"-config", srctop_file("test", "test.cnf"), @req_new );
|
2018-07-05 23:57:22 +00:00
|
|
|
my $val = "subjectAltName=DNS:example.com";
|
|
|
|
my $val2 = " " . $val;
|
|
|
|
my $val3 = $val;
|
|
|
|
$val3 =~ s/=/ =/;
|
2018-07-09 18:55:17 +00:00
|
|
|
ok( run(app([@addext_args, "-addext", $val])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val2])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val3])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val2, "-addext", $val3])));
|
2018-07-05 23:57:22 +00:00
|
|
|
|
2016-06-03 23:05:06 +00:00
|
|
|
subtest "generating certificate requests" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req", "-config", srctop_file("test", "test.cnf"),
|
|
|
|
@req_new, "-out", "testreq.pem"])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req", "-config", srctop_file("test", "test.cnf"),
|
|
|
|
"-verify", "-in", "testreq.pem", "-noout"])),
|
|
|
|
"Verifying signature on request");
|
|
|
|
};
|
|
|
|
|
2016-01-30 00:05:33 +00:00
|
|
|
my @openssl_args = ("req", "-config", srctop_file("apps", "openssl.cnf"));
|
2015-04-17 18:15:22 +00:00
|
|
|
|
|
|
|
run_conversion('req conversions',
|
|
|
|
"testreq.pem");
|
|
|
|
run_conversion('req conversions -- testreq2',
|
2016-06-03 23:05:06 +00:00
|
|
|
srctop_file("test", "testreq2.pem"));
|
|
|
|
|
|
|
|
unlink "testkey.pem", "testreq.pem";
|
2015-04-17 18:15:22 +00:00
|
|
|
|
|
|
|
sub run_conversion {
|
|
|
|
my $title = shift;
|
|
|
|
my $reqfile = shift;
|
|
|
|
|
|
|
|
subtest $title => sub {
|
|
|
|
run(app(["openssl", @openssl_args,
|
|
|
|
"-in", $reqfile, "-inform", "p",
|
|
|
|
"-noout", "-text"],
|
|
|
|
stderr => "req-check.err", stdout => undef));
|
|
|
|
open DATA, "req-check.err";
|
|
|
|
SKIP: {
|
|
|
|
plan skip_all => "skipping req conversion test for $reqfile"
|
2015-10-12 20:24:27 +00:00
|
|
|
if grep /Unknown Public Key/, map { s/\R//; } <DATA>;
|
2015-04-17 18:15:22 +00:00
|
|
|
|
2016-06-03 23:05:06 +00:00
|
|
|
tconversion("req", $reqfile, @openssl_args);
|
2015-04-17 18:15:22 +00:00
|
|
|
}
|
|
|
|
close DATA;
|
|
|
|
unlink "req-check.err";
|
|
|
|
|
|
|
|
done_testing();
|
|
|
|
};
|
|
|
|
}
|