New SSL test framework
[openssl.git] / test / recipes / 80-test_ssl.t
index 84cdf6ce04b3e8b9b084517f90f7ccc934e51709..8cb33a1f2a2f94d969628ea0055b814b61ee0b2f 100644 (file)
@@ -6,32 +6,39 @@ use warnings;
 use POSIX;
 use File::Spec;
 use File::Copy;
-use OpenSSL::Test qw/:DEFAULT with top_file cmdstr/;
+use OpenSSL::Test qw/:DEFAULT with bldtop_file srctop_file cmdstr/;
 use OpenSSL::Test::Utils;
 
 setup("test_ssl");
 
+$ENV{CTLOG_FILE} = srctop_file("test", "ct", "log_list.conf");
+
 my ($no_rsa, $no_dsa, $no_dh, $no_ec, $no_srp, $no_psk,
     $no_ssl3, $no_tls1, $no_tls1_1, $no_tls1_2,
-    $no_dtls, $no_dtls1, $no_dtls1_2) =
-    disabled qw/rsa dsa dh ec srp psk
-                ssl3 tls1 tls1_1 tls1_2
-                dtls dtls1 dtls1_2/;
+    $no_dtls, $no_dtls1, $no_dtls1_2, $no_ct) =
+    anydisabled qw/rsa dsa dh ec srp psk
+                   ssl3 tls1 tls1_1 tls1_2
+                   dtls dtls1 dtls1_2 ct/;
+my $no_anytls = alldisabled(available_protocols("tls"));
+my $no_anydtls = alldisabled(available_protocols("dtls"));
+
+plan skip_all => "No SSL/TLS/DTLS protocol is support by this OpenSSL build"
+    if $no_anytls && $no_anydtls;
 
 my $digest = "-sha1";
 my @reqcmd = ("openssl", "req");
 my @x509cmd = ("openssl", "x509", $digest);
 my @verifycmd = ("openssl", "verify");
-my $dummycnf = top_file("apps", "openssl.cnf");
+my $dummycnf = srctop_file("apps", "openssl.cnf");
 
 my $CAkey = "keyCA.ss";
 my $CAcert="certCA.ss";
 my $CAserial="certCA.srl";
 my $CAreq="reqCA.ss";
-my $CAconf=top_file("test","CAss.cnf");
+my $CAconf=srctop_file("test","CAss.cnf");
 my $CAreq2="req2CA.ss";        # temp
 
-my $Uconf=top_file("test","Uss.cnf");
+my $Uconf=srctop_file("test","Uss.cnf");
 my $Ukey="keyU.ss";
 my $Ureq="reqU.ss";
 my $Ucert="certU.ss";
@@ -44,22 +51,28 @@ my $Ekey="keyE.ss";
 my $Ereq="reqE.ss";
 my $Ecert="certE.ss";
 
-my $P1conf=top_file("test","P1ss.cnf");
+my $P1conf=srctop_file("test","P1ss.cnf");
 my $P1key="keyP1.ss";
 my $P1req="reqP1.ss";
 my $P1cert="certP1.ss";
 my $P1intermediate="tmp_intP1.ss";
 
-my $P2conf=top_file("test","P2ss.cnf");
+my $P2conf=srctop_file("test","P2ss.cnf");
 my $P2key="keyP2.ss";
 my $P2req="reqP2.ss";
 my $P2cert="certP2.ss";
 my $P2intermediate="tmp_intP2.ss";
 
+my $server_sess="server.ss";
+my $client_sess="client.ss";
+
+# ssltest.c is deprecated in favour of the new framework in ssl_test.c
+# If you're adding tests here, you probably want to convert them to the
+# new format in ssl_test.c and add recipes to 80-test_ssl_new.t instead.
 plan tests =>
     1                          # For testss
     + 1                                # For ssltest -test_cipherlist
-    + 10                       # For the first testssl
+    + 14                       # For the first testssl
     + 16                       # For the first testsslproxy
     + 16                       # For the second testsslproxy
     ;
@@ -100,7 +113,7 @@ sub testss {
     close RND;
 
     my @req_dsa = ("-newkey",
-                   "dsa:".File::Spec->catfile("..", "apps", "dsa1024.pem"));;
+                   "dsa:".srctop_file("apps", "dsa1024.pem"));
     my @req_new;
     if ($no_rsa) {
        @req_new = @req_dsa;
@@ -301,17 +314,17 @@ sub testss {
 }
 
 sub testssl {
-    my $key = shift || top_file("apps","server.pem");
-    my $cert = shift || top_file("apps","server.pem");
+    my $key = shift || bldtop_file("apps","server.pem");
+    my $cert = shift || bldtop_file("apps","server.pem");
     my $CAtmp = shift;
-    my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", top_dir("certs"));
+    my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", bldtop_dir("certs"));
     my @extra = @_;
 
     my @ssltest = ("ssltest",
                   "-s_key", $key, "-s_cert", $cert,
                   "-c_key", $key, "-c_cert", $cert);
 
-    my $serverinfo = top_file("test","serverinfo.pem");
+    my $serverinfo = srctop_file("test","serverinfo.pem");
 
     my $dsa_cert = 0;
     if (grep /DSA Public Key/, run(app(["openssl", "x509", "-in", $cert,
@@ -320,72 +333,126 @@ sub testssl {
     }
 
 
-    # plan tests => 10;
+    # plan tests => 11;
 
     subtest 'standard SSL tests' => sub {
        ######################################################################
-       plan tests => 27;
-
-       ok(run(test([@ssltest, "-ssl3", @extra])),
-          'test sslv3');
-       ok(run(test([@ssltest, "-ssl3", "-server_auth", @CA, @extra])),
-          'test sslv3 with server authentication');
-       ok(run(test([@ssltest, "-ssl3", "-client_auth", @CA, @extra])),
-          'test sslv3 with client authentication');
-       ok(run(test([@ssltest, "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
-          'test sslv3 with both server and client authentication');
-       ok(run(test([@ssltest, @extra])),
-          'test sslv2/sslv3');
-       ok(run(test([@ssltest, "-server_auth", @CA, @extra])),
-          'test sslv2/sslv3 with server authentication');
-       ok(run(test([@ssltest, "-client_auth", @CA, @extra])),
-          'test sslv2/sslv3 with client authentication');
-       ok(run(test([@ssltest, "-server_auth", "-client_auth", @CA, @extra])),
-          'test sslv2/sslv3 with both server and client authentication');
-       ok(run(test([@ssltest, "-bio_pair", "-ssl3", @extra])),
-          'test sslv3 via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", @CA, @extra])),
-          'test sslv3 with server authentication via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-client_auth", @CA, @extra])),
-          'test sslv3 with client authentication via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
-          'test sslv3 with both server and client authentication via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", @extra])),
-          'test sslv2/sslv3 via BIO pair');
-       ok(run(test([@ssltest, "-dtls1", @extra])),
-          'test dtlsv1');
-       ok(run(test([@ssltest, "-dtls1", "-server_auth", @CA, @extra])),
+       plan tests => 29;
+
+      SKIP: {
+         skip "SSLv3 is not supported by this OpenSSL build", 4
+             if disabled("ssl3");
+
+         ok(run(test([@ssltest, "-ssl3", @extra])),
+            'test sslv3');
+         ok(run(test([@ssltest, "-ssl3", "-server_auth", @CA, @extra])),
+            'test sslv3 with server authentication');
+         ok(run(test([@ssltest, "-ssl3", "-client_auth", @CA, @extra])),
+            'test sslv3 with client authentication');
+         ok(run(test([@ssltest, "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
+            'test sslv3 with both server and client authentication');
+       }
+
+      SKIP: {
+         skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 4
+             if $no_anytls;
+
+         ok(run(test([@ssltest, @extra])),
+            'test sslv2/sslv3');
+         ok(run(test([@ssltest, "-server_auth", @CA, @extra])),
+            'test sslv2/sslv3 with server authentication');
+         ok(run(test([@ssltest, "-client_auth", @CA, @extra])),
+            'test sslv2/sslv3 with client authentication');
+         ok(run(test([@ssltest, "-server_auth", "-client_auth", @CA, @extra])),
+            'test sslv2/sslv3 with both server and client authentication');
+       }
+
+      SKIP: {
+         skip "SSLv3 is not supported by this OpenSSL build", 4
+             if disabled("ssl3");
+
+         ok(run(test([@ssltest, "-bio_pair", "-ssl3", @extra])),
+            'test sslv3 via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", @CA, @extra])),
+            'test sslv3 with server authentication via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-client_auth", @CA, @extra])),
+            'test sslv3 with client authentication via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
+            'test sslv3 with both server and client authentication via BIO pair');
+       }
+
+      SKIP: {
+         skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 1
+             if $no_anytls;
+
+         ok(run(test([@ssltest, "-bio_pair", @extra])),
+            'test sslv2/sslv3 via BIO pair');
+       }
+
+      SKIP: {
+         skip "DTLSv1 is not supported by this OpenSSL build", 4
+             if disabled("dtls1");
+
+         ok(run(test([@ssltest, "-dtls1", @extra])),
+            'test dtlsv1');
+         ok(run(test([@ssltest, "-dtls1", "-server_auth", @CA, @extra])),
           'test dtlsv1 with server authentication');
-       ok(run(test([@ssltest, "-dtls1", "-client_auth", @CA, @extra])),
-          'test dtlsv1 with client authentication');
-       ok(run(test([@ssltest, "-dtls1", "-server_auth", "-client_auth", @CA, @extra])),
-          'test dtlsv1 with both server and client authentication');
-       ok(run(test([@ssltest, "-dtls12", @extra])),
-          'test dtlsv1.2');
-       ok(run(test([@ssltest, "-dtls12", "-server_auth", @CA, @extra])),
-          'test dtlsv1.2 with server authentication');
-       ok(run(test([@ssltest, "-dtls12", "-client_auth", @CA, @extra])),
-          'test dtlsv1.2 with client authentication');
-       ok(run(test([@ssltest, "-dtls12", "-server_auth", "-client_auth", @CA, @extra])),
-          'test dtlsv1.2 with both server and client authentication');
-       {
-         SKIP: {
-             skip "skipping test of sslv2/sslv3 w/o (EC)DHE test", 1 if $dsa_cert;
-
-             ok(run(test([@ssltest, "-bio_pair", "-no_dhe", "-no_ecdhe", @extra])),
-                'test sslv2/sslv3 w/o (EC)DHE via BIO pair');
-           }
+         ok(run(test([@ssltest, "-dtls1", "-client_auth", @CA, @extra])),
+            'test dtlsv1 with client authentication');
+         ok(run(test([@ssltest, "-dtls1", "-server_auth", "-client_auth", @CA, @extra])),
+            'test dtlsv1 with both server and client authentication');
        }
-       ok(run(test([@ssltest, "-bio_pair", "-dhe1024dsa", "-v", @extra])),
-          'test sslv2/sslv3 with 1024bit DHE via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-server_auth", @CA, @extra])),
-          'test sslv2/sslv3 with server authentication');
-       ok(run(test([@ssltest, "-bio_pair", "-client_auth", @CA, @extra])),
-          'test sslv2/sslv3 with client authentication via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", @CA, @extra])),
-          'test sslv2/sslv3 with both client and server authentication via BIO pair');
-       ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", "-app_verify", @CA, @extra])),
-          'test sslv2/sslv3 with both client and server authentication via BIO pair and app verify');
+
+      SKIP: {
+         skip "DTLSv1.2 is not supported by this OpenSSL build", 4
+             if disabled("dtls1_2");
+
+         ok(run(test([@ssltest, "-dtls12", @extra])),
+            'test dtlsv1.2');
+         ok(run(test([@ssltest, "-dtls12", "-server_auth", @CA, @extra])),
+            'test dtlsv1.2 with server authentication');
+         ok(run(test([@ssltest, "-dtls12", "-client_auth", @CA, @extra])),
+            'test dtlsv1.2 with client authentication');
+         ok(run(test([@ssltest, "-dtls12", "-server_auth", "-client_auth", @CA, @extra])),
+            'test dtlsv1.2 with both server and client authentication');
+       }
+
+      SKIP: {
+         skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 8
+             if $no_anytls;
+
+       SKIP: {
+           skip "skipping test of sslv2/sslv3 w/o (EC)DHE test", 1 if $dsa_cert;
+
+           ok(run(test([@ssltest, "-bio_pair", "-no_dhe", "-no_ecdhe", @extra])),
+              'test sslv2/sslv3 w/o (EC)DHE via BIO pair');
+         }
+
+         ok(run(test([@ssltest, "-bio_pair", "-dhe1024dsa", "-v", @extra])),
+            'test sslv2/sslv3 with 1024bit DHE via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-server_auth", @CA, @extra])),
+            'test sslv2/sslv3 with server authentication');
+         ok(run(test([@ssltest, "-bio_pair", "-client_auth", @CA, @extra])),
+            'test sslv2/sslv3 with client authentication via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", @CA, @extra])),
+            'test sslv2/sslv3 with both client and server authentication via BIO pair');
+         ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", "-app_verify", @CA, @extra])),
+            'test sslv2/sslv3 with both client and server authentication via BIO pair and app verify');
+
+        SKIP: {
+            skip "No IPv4 available on this machine", 1
+                unless !disabled("sock") && have_IPv4();
+            ok(run(test([@ssltest, "-ipv4", @extra])),
+               'test TLS via IPv4');
+          }
+          
+        SKIP: {
+            skip "No IPv6 available on this machine", 1
+                unless !disabled("sock") && have_IPv6();
+            ok(run(test([@ssltest, "-ipv6", @extra])),
+               'test TLS via IPv6');
+          }
+        }
     };
 
     subtest "Testing ciphersuites" => sub {
@@ -412,6 +479,7 @@ sub testssl {
         }
 
        my @protocols = ();
+       # FIXME: I feel unsure about the following line, is that really just TLSv1.2, or is it all of the SSLv3/TLS protocols?
         push(@protocols, "TLSv1.2") unless $no_tls1_2;
         push(@protocols, "SSLv3") unless $no_ssl3;
        my $protocolciphersuitcount = 0;
@@ -424,6 +492,9 @@ sub testssl {
                  $protocolciphersuitcount += scalar @c;
                  $_ => [ @c ] } @protocols;
 
+        plan skip_all => "None of the ciphersuites to test are available in this OpenSSL build"
+            if $protocolciphersuitcount + scalar(@protocols) == 0;
+
         # The count of protocols is because in addition to the ciphersuits
         # we got above, we're running a weak DH test for each protocol
        plan tests => $protocolciphersuitcount + scalar(@protocols);
@@ -449,43 +520,43 @@ sub testssl {
 
        plan tests => 5;
 
-       {
-         SKIP: {
-             skip "skipping anonymous DH tests", 1
-                 if ($no_dh);
+      SKIP: {
+         skip "TLSv1.0 is not supported by this OpenSSL build", 5
+             if $no_tls1;
 
-             ok(run(test([@ssltest, "-v", "-bio_pair", "-tls1", "-cipher", "ADH", "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
-                'test tlsv1 with 1024bit anonymous DH, multiple handshakes');
-           }
-       }
+       SKIP: {
+           skip "skipping anonymous DH tests", 1
+             if ($no_dh);
 
-       {
-         SKIP: {
-             skip "skipping RSA tests", 2
-                 if $no_rsa;
+           ok(run(test([@ssltest, "-v", "-bio_pair", "-tls1", "-cipher", "ADH", "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
+              'test tlsv1 with 1024bit anonymous DH, multiple handshakes');
+         }
 
-             ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", top_file("apps","server2.pem"), "-no_dhe", "-no_ecdhe", "-num", "10", "-f", "-time", @extra])),
-                'test tlsv1 with 1024bit RSA, no (EC)DHE, multiple handshakes');
+       SKIP: {
+           skip "skipping RSA tests", 2
+               if $no_rsa;
 
-             skip "skipping RSA+DHE tests", 1
-                 if $no_dh;
+           ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", srctop_file("apps","server2.pem"), "-no_dhe", "-no_ecdhe", "-num", "10", "-f", "-time", @extra])),
+              'test tlsv1 with 1024bit RSA, no (EC)DHE, multiple handshakes');
 
-             ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", top_file("apps","server2.pem"), "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
-                'test tlsv1 with 1024bit RSA, 1024bit DHE, multiple handshakes');
-           }
-       }
-    {
-        SKIP: {
-               skip "skipping PSK tests", 2
+           skip "skipping RSA+DHE tests", 1
+               if $no_dh;
+
+           ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", srctop_file("apps","server2.pem"), "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
+              'test tlsv1 with 1024bit RSA, 1024bit DHE, multiple handshakes');
+         }
+
+       SKIP: {
+           skip "skipping PSK tests", 2
                if ($no_psk);
 
-               ok(run(test([@ssltest, "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
-               'test tls1 with PSK');
+           ok(run(test([@ssltest, "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
+              'test tls1 with PSK');
 
-               ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
-               'test tls1 with PSK via BIO pair');
-        }
-    }
+           ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
+              'test tls1 with PSK via BIO pair');
+         }
+       }
 
     };
 
@@ -494,13 +565,18 @@ sub testssl {
 
        plan tests => 7;
 
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server_reject"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server_reject"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2", "-reuse"])));
+      SKIP: {
+         skip "TLSv1.0 is not supported by this OpenSSL build", 7
+             if $no_tls1;
+
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server_reject"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server_reject"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2", "-reuse"])));
+       }
     };
 
     subtest 'Custom Extension tests' => sub {
@@ -508,8 +584,13 @@ sub testssl {
 
        plan tests => 1;
 
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext"])),
-          'test tls1 with custom extensions');
+      SKIP: {
+         skip "TLSv1.0 is not supported by this OpenSSL build", 1
+             if $no_tls1;
+
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext"])),
+            'test tls1 with custom extensions');
+       }
     };
 
     subtest 'Serverinfo tests' => sub {
@@ -517,45 +598,98 @@ sub testssl {
 
        plan tests => 5;
 
-       note('echo test tls1 with serverinfo');
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_tack"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
+      SKIP: {
+         skip "TLSv1.0 is not supported by this OpenSSL build", 5
+             if $no_tls1;
+
+         note('echo test tls1 with serverinfo');
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_tack"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
+       }
+    };
+
+    subtest 'SNI tests' => sub {
+
+       plan tests => 7;
+
+      SKIP: {
+         skip "TLSv1.x is not supported by this OpenSSL build", 7
+             if $no_tls1 && $no_tls1_1 && $no_tls1_2;
+
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-sn_server1", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "foo", "-sn_server1", "foo", "-sn_expect1"])));
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "foo", "-sn_server1", "bar", "-sn_expect1"])));
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "foo", "-sn_server1", "foo", "-sn_server2", "bar", "-sn_expect1"])));
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "bar", "-sn_server1", "foo", "-sn_server2", "bar", "-sn_expect2"])));
+         # Negative test - make sure it doesn't crash, and doesn't switch contexts
+         ok(run(test([@ssltest, "-bio_pair", "-sn_client", "foobar", "-sn_server1", "foo", "-sn_server2", "bar", "-sn_expect1"])));
+       }
     };
 
     subtest 'ALPN tests' => sub {
        ######################################################################
 
-       plan tests => 12;
+       plan tests => 13;
+
+      SKIP: {
+         skip "TLSv1.0 is not supported by this OpenSSL build", 13
+             if $no_tls1;
+
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_server", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "foo", "-alpn_expected", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo,bar", "-alpn_expected", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
+
+         is(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "bar"])), 0,
+             "Testing ALPN with protocol mismatch, expecting failure");
+         is(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "baz", "-alpn_server", "bar,foo"])), 0,
+             "Testing ALPN with protocol mismatch, expecting failure");
+
+         # ALPN + SNI
+         ok(run(test([@ssltest, "-bio_pair",
+                      "-alpn_client", "foo,bar", "-sn_client", "alice",
+                      "-alpn_server1", "foo,123", "-sn_server1", "alice",
+                      "-alpn_server2", "bar,456", "-sn_server2", "bob",
+                      "-alpn_expected", "foo"])));
+         ok(run(test([@ssltest, "-bio_pair",
+                      "-alpn_client", "foo,bar", "-sn_client", "bob",
+                      "-alpn_server1", "foo,123", "-sn_server1", "alice",
+                      "-alpn_server2", "bar,456", "-sn_server2", "bob",
+                      "-alpn_expected", "bar"])));
+         ok(run(test([@ssltest, "-bio_pair",
+                      "-alpn_client", "foo,bar", "-sn_client", "bob",
+                      "-alpn_server2", "bar,456", "-sn_server2", "bob",
+                      "-alpn_expected", "bar"])));
+       }
+    };
 
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "bar"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "foo", "-alpn_expected", "foo"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo,bar", "-alpn_expected", "foo"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
-       ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "baz", "-alpn_server", "bar,foo"])));
+    subtest 'SRP tests' => sub {
 
-       {
-         SKIP: {
-             skip "skipping SRP tests", 4
-                 if $no_srp;
+       plan tests => 4;
 
-             ok(run(test([@ssltest, "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
-                'test tls1 with SRP');
+      SKIP: {
+         skip "skipping SRP tests", 4
+             if $no_srp;
 
-             ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
-                'test tls1 with SRP via BIO pair');
+         ok(run(test([@ssltest, "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
+            'test tls1 with SRP');
 
-             ok(run(test([@ssltest, "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
-                'test tls1 with SRP auth');
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
+            'test tls1 with SRP via BIO pair');
 
-             ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
-                'test tls1 with SRP auth via BIO pair');
-           }
+         ok(run(test([@ssltest, "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
+            'test tls1 with SRP auth');
+
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
+            'test tls1 with SRP auth via BIO pair');
        }
     };
 
@@ -564,62 +698,21 @@ sub testssl {
 
        plan tests => 2;
 
-       {
-         SKIP: {
-             skip "skipping multi-buffer tests", 2
-                 if @extra || (POSIX::uname())[4] ne "x86_64";
-             ok(run(test([@ssltest, "-cipher", "AES128-SHA",    "-bytes", "8m"])));
-             ok(run(test([@ssltest, "-cipher", "AES128-SHA256", "-bytes", "8m"])));
-           }
-       }
-    };
+      SKIP: {
+         skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 2
+             if $no_anytls;
 
-    subtest 'TLS Version min/max tests' => sub {
-        my @protos;
-        push(@protos, "ssl3") unless $no_ssl3;
-        push(@protos, "tls1") unless $no_tls1;
-        push(@protos, "tls1.1") unless $no_tls1_1;
-        push(@protos, "tls1.2") unless $no_tls1_2;
-        my @minprotos = (undef, @protos);
-        my @maxprotos = (@protos, undef);
-        my @shdprotos = (@protos, $protos[$#protos]);
-        my $n = ((@protos+2) * (@protos+3))/2 - 2;
-        my $ntests = $n * $n;
-       plan tests => $ntests;
-        skip "TLS disabled", 1 if $ntests == 1;
+         skip "skipping multi-buffer tests", 2
+             if @extra || (POSIX::uname())[4] ne "x86_64";
 
-        my $should;
-        for (my $smin = 0; $smin < @minprotos; ++$smin) {
-        for (my $smax = $smin ? $smin - 1 : 0; $smax < @maxprotos; ++$smax) {
-        for (my $cmin = 0; $cmin < @minprotos; ++$cmin) {
-        for (my $cmax = $cmin ? $cmin - 1 : 0; $cmax < @maxprotos; ++$cmax) {
-            if ($cmax < $smin-1) {
-                $should = "fail-server";
-            } elsif ($smax < $cmin-1) {
-                $should = "fail-client";
-            } elsif ($cmax > $smax) {
-                $should = $shdprotos[$smax];
-            } else {
-                $should = $shdprotos[$cmax];
-            }
+         ok(run(test([@ssltest, "-cipher", "AES128-SHA",    "-bytes", "8m"])));
 
-            my @args = @ssltest;
-            push(@args, "-should_negotiate", $should);
-            push(@args, "-server_min_proto", $minprotos[$smin])
-                if (defined($minprotos[$smin]));
-            push(@args, "-server_max_proto", $maxprotos[$smax])
-                if (defined($maxprotos[$smax]));
-            push(@args, "-client_min_proto", $minprotos[$cmin])
-                if (defined($minprotos[$cmin]));
-            push(@args, "-client_max_proto", $maxprotos[$cmax])
-                if (defined($maxprotos[$cmax]));
-            my $ok = run(test[@args]);
-            if (! $ok) {
-                print STDERR "\nsmin=$smin, smax=$smax, cmin=$cmin, cmax=$cmax\n";
-                print STDERR "\nFailed: @args\n";
-            }
-            ok($ok);
-        }}}}
+         # We happen to know that AES128-SHA256 is TLSv1.2 only... for now.
+         skip "TLSv1.2 is not supported by this OpenSSL configuration", 1
+             if $no_tls1_2;
+
+         ok(run(test([@ssltest, "-cipher", "AES128-SHA256", "-bytes", "8m"])));
+       }
     };
 
     subtest 'DTLS Version min/max tests' => sub {
@@ -632,6 +725,7 @@ sub testssl {
         my $n = ((@protos+2) * (@protos+3))/2 - 2;
         my $ntests = $n * $n;
        plan tests => $ntests;
+      SKIP: {
         skip "DTLS disabled", 1 if $ntests == 1;
 
         my $should;
@@ -665,15 +759,79 @@ sub testssl {
                 print STDERR "\nFailed: @args\n";
             }
             ok($ok);
-        }}}}
+        }}}}}
+    };
+
+    subtest 'TLS session reuse' => sub {
+        plan tests => 12;
+
+        ok(run(test([@ssltest, "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "tls1.2"])));
+        ok(run(test([@ssltest, "-server_max_proto", "tls1.1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "tls1.1"])));
+
+        ok(run(test([@ssltest, "-server_max_proto", "tls1.1", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-server_max_proto", "tls1.1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "tls1.1"])));
+        ok(run(test([@ssltest, "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "tls1.2"])));
+
+        ok(run(test([@ssltest, "-no_ticket", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-no_ticket", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "tls1.2"])));
+        ok(run(test([@ssltest, "-no_ticket", "-server_max_proto", "tls1.1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "tls1.1"])));
+
+        ok(run(test([@ssltest, "-no_ticket", "-server_max_proto", "tls1.1", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-no_ticket", "-server_max_proto", "tls1.1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "tls1.1"])));
+        ok(run(test([@ssltest, "-no_ticket", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "tls1.2"])));
+    };
+
+    subtest 'DTLS session reuse' => sub {
+        plan tests => 12;
+      SKIP: {
+        skip "DTLS disabled", 12 if $no_dtls;
+
+        ok(run(test([@ssltest, "-dtls", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-dtls", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1.2"])));
+        ok(run(test([@ssltest, "-dtls", "-server_max_proto", "dtls1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "dtls1"])));
+
+        ok(run(test([@ssltest, "-dtls", "-server_max_proto", "dtls1", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-dtls", "-server_max_proto", "dtls1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1"])));
+        ok(run(test([@ssltest, "-dtls", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "dtls1.2"])));
+
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1.2"])));
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_max_proto", "dtls1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "dtls1"])));
+
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_max_proto", "dtls1", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_max_proto", "dtls1", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1"])));
+        ok(run(test([@ssltest, "-dtls", "-no_ticket", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "0", "-should_negotiate", "dtls1.2"])));
+       }
+    };
+
+    subtest 'Certificate Transparency tests' => sub {
+       ######################################################################
+
+       plan tests => 3;
+
+      SKIP: {
+         skip "Certificate Transparency is not supported by this OpenSSL build", 3
+             if $no_ct;
+         skip "TLSv1.0 is not supported by this OpenSSL build", 3
+             if $no_tls1;
+
+    $ENV{CTLOG_FILE} = srctop_file("test", "ct", "log_list.conf");
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-noct"])));
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-requestct"])));
+         # No SCTs provided, so this should fail.
+         ok(run(test([@ssltest, "-bio_pair", "-tls1", "-requirect",
+                      "-should_negotiate", "fail-client"])));
+       }
     };
+
 }
 
 sub testsslproxy {
-    my $key = shift || top_file("apps","server.pem");
-    my $cert = shift || top_file("apps","server.pem");
+    my $key = shift || srctop_file("apps","server.pem");
+    my $cert = shift || srctop_file("apps","server.pem");
     my $CAtmp = shift;
-    my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", top_dir("certs"));
+    my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", bldtop_dir("certs"));
     my @extra = @_;
 
     my @ssltest = ("ssltest",
@@ -726,14 +884,19 @@ sub testsslproxy {
                                       [ [ 'BC', 'C'      ], 0 ],
                                       [ [ 'BC', 'A|B&!C' ], 1 ] ] );
 
-    foreach (@{$expected{$cert}}) {
-        my $auth = $_->[0]->[0];
-        my $cond = $_->[0]->[1];
-        my $res  = $_->[1];
-       is(run(test([@ssltest, "-server_auth", @CA,
-                     "-proxy", "-proxy_auth", $auth,
-                     "-proxy_cond", $cond])), $res,
-          "test tlsv1, server auth, proxy auth $auth and cond $cond (expect "
-           .($res ? "success" : "failure").")");
+  SKIP: {
+      skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", scalar(@{$expected{$cert}})
+         if $no_anytls;
+
+      foreach (@{$expected{$cert}}) {
+         my $auth = $_->[0]->[0];
+         my $cond = $_->[0]->[1];
+         my $res  = $_->[1];
+         is(run(test([@ssltest, "-server_auth", @CA,
+                      "-proxy", "-proxy_auth", $auth,
+                      "-proxy_cond", $cond])), $res,
+            "test tlsv1, server auth, proxy auth $auth and cond $cond (expect "
+            .($res ? "success" : "failure").")");
+      }
     }
 }