Fix PEM certificate loading that sometimes fails
[openssl.git] / test / recipes / 15-test_rsa.t
index cb1172a95fa08a0a45bbccbb47764b81faa6283a..2f94e6b08819afac96aee05138a392e33859faf6 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env perl
-# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
+# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
 #
-# Licensed under the OpenSSL license (the "License").  You may not use
+# Licensed under the Apache License 2.0 (the "License").  You may not use
 # 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
@@ -16,26 +16,41 @@ use OpenSSL::Test::Utils;
 
 setup("test_rsa");
 
-plan tests => 6;
+plan tests => 10;
 
-require_ok(srctop_file('test','recipes','tconversion.pl'));
+require_ok(srctop_file('test', 'recipes', 'tconversion.pl'));
 
 ok(run(test(["rsa_test"])), "running rsatest");
 
-ok(run(app([ 'openssl', 'rsa', '-check', '-in', srctop_file('test', 'testrsa.pem'), '-noout'])), "rsa -check");
-
- SKIP: {
-     skip "Skipping rsa conversion test", 3
-        if disabled("rsa");
-
-     subtest 'rsa conversions -- private key' => sub {
-        tconversion("rsa", srctop_file("test","testrsa.pem"));
-     };
-     subtest 'rsa conversions -- private key PKCS#8' => sub {
-        tconversion("rsa", srctop_file("test","testrsa.pem"), "pkey");
-     };
-     subtest 'rsa conversions -- public key' => sub {
-        tconversion("rsa", srctop_file("test","testrsapub.pem"), "rsa",
-                    "-pubin", "-pubout");
-     };
+run_rsa_tests("pkey");
+
+run_rsa_tests("rsa");
+
+sub run_rsa_tests {
+    my $cmd = shift;
+
+    ok(run(app([ 'openssl', $cmd, '-check', '-in', srctop_file('test', 'testrsa.pem'), '-noout'])),
+           "$cmd -check" );
+
+     SKIP: {
+         skip "Skipping $cmd conversion test", 3
+            if disabled("rsa");
+
+         subtest "$cmd conversions -- private key" => sub {
+            tconversion($cmd, srctop_file("test", "testrsa.pem"));
+         };
+         subtest "$cmd conversions -- private key PKCS#8" => sub {
+            tconversion($cmd, srctop_file("test", "testrsa.pem"), "pkey");
+         };
+    }
+
+     SKIP: {
+         skip "Skipping msblob conversion test", 1
+            if disabled($cmd) || disabled("dsa") || $cmd == 'pkey';
+
+         subtest "$cmd conversions -- public key" => sub {
+            tconversion("msb", srctop_file("test", "testrsapub.pem"), "rsa",
+                        "-pubin", "-pubout");
+         };
+    }
 }