openssl/test/recipes/25-test_req.t
Richard Levitte fd99c6b599 Change OpenSSL::Test to be an extension of Test::More
It became tedious as well as error prone to have all recipes use
Test::More as well as OpenSSL::Test.  The easier way is to make
OpenSSL::Test an extension of Test::More, thereby having all version
checks as well as future checks firmly there.  Additionally, that
allows us to extend existing Test::More functions if the need would
arise.

Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-09-07 16:10:58 +02:00

44 lines
921 B
Perl

#! /usr/bin/perl
use strict;
use warnings;
use File::Spec;
use OpenSSL::Test qw/:DEFAULT top_file/;
setup("test_req");
plan tests => 3;
require_ok(top_file('test','recipes','tconversion.pl'));
my @openssl_args = ("req", "-config", "../apps/openssl.cnf");
run_conversion('req conversions',
"testreq.pem");
run_conversion('req conversions -- testreq2',
"testreq2.pem");
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"
if grep /Unknown Public Key/, map { chomp } <DATA>;
tconversion("req", "testreq.pem", @openssl_args);
}
close DATA;
unlink "req-check.err";
done_testing();
};
}