fd99c6b599
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>
32 lines
826 B
Perl
32 lines
826 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec;
|
|
use OpenSSL::Test qw/:DEFAULT top_file/;
|
|
|
|
setup("test_dsa");
|
|
|
|
plan tests => 6;
|
|
|
|
require_ok(top_file('test','recipes','tconversion.pl'));
|
|
|
|
ok(run(test(["dsatest"])), "running dsatest");
|
|
ok(run(test(["dsatest", "-app2_1"])), "running dsatest -app2_1");
|
|
|
|
SKIP: {
|
|
skip "Skipping dsa conversion test", 3
|
|
if run(app(["openssl","no-dsa"], stdout => undef));
|
|
|
|
subtest 'dsa conversions -- private key' => sub {
|
|
tconversion("dsa", top_file("test","testdsa.pem"));
|
|
};
|
|
subtest 'dsa conversions -- private key PKCS#8' => sub {
|
|
tconversion("dsa", top_file("test","testdsa.pem"), "pkey");
|
|
};
|
|
subtest 'dsa conversions -- public key' => sub {
|
|
tconversion("dsa", top_file("test","testdsapub.pem"), "dsa",
|
|
"-pubin", "-pubout");
|
|
};
|
|
}
|