Add asymetric cipher test recipes
authorRichard Levitte <levitte@openssl.org>
Fri, 17 Apr 2015 18:13:58 +0000 (20:13 +0200)
committerRichard Levitte <levitte@openssl.org>
Mon, 7 Sep 2015 14:10:57 +0000 (16:10 +0200)
Some of them make use of recipes/tconversion.pl.

Reviewed-by: Rich Salz <rsalz@openssl.org>
test/recipes/15-test_dh.t [new file with mode: 0644]
test/recipes/15-test_dsa.t [new file with mode: 0644]
test/recipes/15-test_ec.t [new file with mode: 0644]
test/recipes/15-test_ecdh.t [new file with mode: 0644]
test/recipes/15-test_ecdsa.t [new file with mode: 0644]
test/recipes/15-test_rsa.t [new file with mode: 0644]

diff --git a/test/recipes/15-test_dh.t b/test/recipes/15-test_dh.t
new file mode 100644 (file)
index 0000000..957df4a
--- /dev/null
@@ -0,0 +1,12 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+use OpenSSL::Test;
+
+setup("test_dh");
+
+plan tests => 1;
+ok(run(test(["dhtest"])), "running dhtest");
diff --git a/test/recipes/15-test_dsa.t b/test/recipes/15-test_dsa.t
new file mode 100644 (file)
index 0000000..897e448
--- /dev/null
@@ -0,0 +1,33 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use File::Spec;
+use Test::More;
+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");
+     };
+}
diff --git a/test/recipes/15-test_ec.t b/test/recipes/15-test_ec.t
new file mode 100644 (file)
index 0000000..6619a48
--- /dev/null
@@ -0,0 +1,31 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use File::Spec;
+use Test::More;
+use OpenSSL::Test qw/:DEFAULT top_file/;
+
+setup("test_ec");
+
+plan tests => 5;
+
+require_ok(top_file('test','recipes','tconversion.pl'));
+
+ok(run(test(["ectest"])), "running ectest");
+
+ SKIP: {
+     skip "Skipping ec conversion test", 3
+        if run(app(["openssl","no-ec"], stdout => undef));
+
+     subtest 'ec conversions -- private key' => sub {
+        tconversion("ec", top_file("test","testec-p256.pem"));
+     };
+     subtest 'ec conversions -- private key PKCS#8' => sub {
+        tconversion("ec", top_file("test","testec-p256.pem"), "pkey");
+     };
+     subtest 'ec conversions -- public key' => sub {
+        tconversion("ec", top_file("test","testecpub-p256.pem"), "ec", "-pubin", "-pubout");
+     };
+}
diff --git a/test/recipes/15-test_ecdh.t b/test/recipes/15-test_ecdh.t
new file mode 100644 (file)
index 0000000..4c0d97e
--- /dev/null
@@ -0,0 +1,12 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+use OpenSSL::Test;
+
+setup("test_ecdh");
+
+plan tests => 1;
+ok(run(test(["ecdhtest"])), "running ecdhtest");
diff --git a/test/recipes/15-test_ecdsa.t b/test/recipes/15-test_ecdsa.t
new file mode 100644 (file)
index 0000000..2cd144b
--- /dev/null
@@ -0,0 +1,12 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+use OpenSSL::Test;
+
+setup("test_ecdsa");
+
+plan tests => 1;
+ok(run(test(["ecdsatest"])), "running ecdsatest");
diff --git a/test/recipes/15-test_rsa.t b/test/recipes/15-test_rsa.t
new file mode 100644 (file)
index 0000000..9b17fbe
--- /dev/null
@@ -0,0 +1,32 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+use File::Spec;
+use Test::More;
+use OpenSSL::Test qw/:DEFAULT top_file/;
+
+setup("test_rsa");
+
+plan tests => 5;
+
+require_ok(top_file('test','recipes','tconversion.pl'));
+
+ok(run(test(["rsa_test"])), "running rsatest");
+
+ SKIP: {
+     skip "Skipping rsa conversion test", 3
+        if run(app(["openssl","no-rsa"], stdout => undef));
+
+     subtest 'rsa conversions -- private key' => sub {
+        tconversion("rsa", top_file("test","testrsa.pem"));
+     };
+     subtest 'rsa conversions -- private key PKCS#8' => sub {
+        tconversion("rsa", top_file("test","testrsa.pem"), "pkey");
+     };
+     subtest 'rsa conversions -- public key' => sub {
+        tconversion("rsa", top_file("test","testrsapub.pem"), "rsa",
+                    "-pubin", "-pubout");
+     };
+}