80-test_ssl_new.t 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #! /usr/bin/env perl
  2. # Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. use strict;
  9. use warnings;
  10. use File::Basename;
  11. use File::Compare qw/compare_text/;
  12. use OpenSSL::Glob;
  13. use OpenSSL::Test qw/:DEFAULT srctop_dir srctop_file/;
  14. use OpenSSL::Test::Utils qw/disabled alldisabled available_protocols/;
  15. setup("test_ssl_new");
  16. $ENV{TEST_CERTS_DIR} = srctop_dir("test", "certs");
  17. $ENV{CTLOG_FILE} = srctop_file("test", "ct", "log_list.conf");
  18. my @conf_srcs = glob(srctop_file("test", "ssl-tests", "*.conf.in"));
  19. map { s/;.*// } @conf_srcs if $^O eq "VMS";
  20. my @conf_files = map { basename($_, ".in") } @conf_srcs;
  21. map { s/\^// } @conf_files if $^O eq "VMS";
  22. # We hard-code the number of tests to double-check that the globbing above
  23. # finds all files as expected.
  24. plan tests => 30; # = scalar @conf_srcs
  25. # Some test results depend on the configuration of enabled protocols. We only
  26. # verify generated sources in the default configuration.
  27. my $is_default_tls = (disabled("ssl3") && !disabled("tls1") &&
  28. !disabled("tls1_1") && !disabled("tls1_2") &&
  29. !disabled("tls1_3"));
  30. my $is_default_dtls = (!disabled("dtls1") && !disabled("dtls1_2"));
  31. my @all_pre_tls1_3 = ("ssl3", "tls1", "tls1_1", "tls1_2");
  32. my $no_tls = alldisabled(available_protocols("tls"));
  33. my $no_tls_below1_3 = $no_tls || (disabled("tls1_2") && !disabled("tls1_3"));
  34. my $no_pre_tls1_3 = alldisabled(@all_pre_tls1_3);
  35. my $no_dtls = alldisabled(available_protocols("dtls"));
  36. my $no_npn = disabled("nextprotoneg");
  37. my $no_ct = disabled("ct");
  38. my $no_ec = disabled("ec");
  39. my $no_dh = disabled("dh");
  40. my $no_dsa = disabled("dsa");
  41. my $no_ec2m = disabled("ec2m");
  42. my $no_ocsp = disabled("ocsp");
  43. # Add your test here if the test conf.in generates test cases and/or
  44. # expectations dynamically based on the OpenSSL compile-time config.
  45. my %conf_dependent_tests = (
  46. "02-protocol-version.conf" => !$is_default_tls,
  47. "04-client_auth.conf" => !$is_default_tls || !$is_default_dtls
  48. || !disabled("sctp"),
  49. "05-sni.conf" => disabled("tls1_1"),
  50. "07-dtls-protocol-version.conf" => !$is_default_dtls || !disabled("sctp"),
  51. "10-resumption.conf" => !$is_default_tls,
  52. "11-dtls_resumption.conf" => !$is_default_dtls || !disabled("sctp"),
  53. "16-dtls-certstatus.conf" => !$is_default_dtls || !disabled("sctp"),
  54. "17-renegotiate.conf" => disabled("tls1_2"),
  55. "18-dtls-renegotiate.conf" => disabled("dtls1_2") || !disabled("sctp"),
  56. "19-mac-then-encrypt.conf" => !$is_default_tls,
  57. "20-cert-select.conf" => !$is_default_tls || $no_dh || $no_dsa,
  58. "22-compression.conf" => !$is_default_tls,
  59. "25-cipher.conf" => disabled("poly1305") || disabled("chacha"),
  60. "27-ticket-appdata.conf" => !$is_default_tls,
  61. "28-seclevel.conf" => disabled("tls1_2") || $no_ec,
  62. "30-extended-master-secret.conf" => disabled("tls1_2"),
  63. );
  64. # Add your test here if it should be skipped for some compile-time
  65. # configurations. Default is $no_tls but some tests have different skip
  66. # conditions.
  67. my %skip = (
  68. "06-sni-ticket.conf" => $no_tls_below1_3,
  69. "07-dtls-protocol-version.conf" => $no_dtls,
  70. "08-npn.conf" => (disabled("tls1") && disabled("tls1_1")
  71. && disabled("tls1_2")) || $no_npn,
  72. "10-resumption.conf" => disabled("tls1_1") || disabled("tls1_2"),
  73. "11-dtls_resumption.conf" => disabled("dtls1") || disabled("dtls1_2"),
  74. "12-ct.conf" => $no_tls || $no_ct || $no_ec,
  75. # We could run some of these tests without TLS 1.2 if we had a per-test
  76. # disable instruction but that's a bizarre configuration not worth
  77. # special-casing for.
  78. # TODO(TLS 1.3): We should review this once we have TLS 1.3.
  79. "13-fragmentation.conf" => disabled("tls1_2"),
  80. "14-curves.conf" => disabled("tls1_2") || $no_ec || $no_ec2m,
  81. "15-certstatus.conf" => $no_tls || $no_ocsp,
  82. "16-dtls-certstatus.conf" => $no_dtls || $no_ocsp,
  83. "17-renegotiate.conf" => $no_tls_below1_3,
  84. "18-dtls-renegotiate.conf" => $no_dtls,
  85. "19-mac-then-encrypt.conf" => $no_pre_tls1_3,
  86. "20-cert-select.conf" => disabled("tls1_2") || $no_ec,
  87. "21-key-update.conf" => disabled("tls1_3"),
  88. "22-compression.conf" => disabled("zlib") || $no_tls,
  89. "23-srp.conf" => (disabled("tls1") && disabled ("tls1_1")
  90. && disabled("tls1_2")) || disabled("srp"),
  91. "24-padding.conf" => disabled("tls1_3"),
  92. "25-cipher.conf" => disabled("ec") || disabled("tls1_2"),
  93. "26-tls13_client_auth.conf" => disabled("tls1_3"),
  94. "29-dtls-sctp-label-bug.conf" => disabled("sctp") || disabled("sock"),
  95. );
  96. foreach my $conf (@conf_files) {
  97. subtest "Test configuration $conf" => sub {
  98. test_conf($conf,
  99. $conf_dependent_tests{$conf} || $^O eq "VMS" ? 0 : 1,
  100. defined($skip{$conf}) ? $skip{$conf} : $no_tls);
  101. }
  102. }
  103. sub test_conf {
  104. plan tests => 3;
  105. my ($conf, $check_source, $skip) = @_;
  106. my $conf_file = srctop_file("test", "ssl-tests", $conf);
  107. my $tmp_file = "${conf}.$$.tmp";
  108. my $run_test = 1;
  109. SKIP: {
  110. # "Test" 1. Generate the source.
  111. my $input_file = $conf_file . ".in";
  112. skip 'failure', 2 unless
  113. ok(run(perltest(["generate_ssl_tests.pl", $input_file],
  114. interpreter_args => [ "-I", srctop_dir("util", "perl")],
  115. stdout => $tmp_file)),
  116. "Getting output from generate_ssl_tests.pl.");
  117. SKIP: {
  118. # Test 2. Compare against existing output in test/ssl_tests.conf.
  119. skip "Skipping generated source test for $conf", 1
  120. if !$check_source;
  121. $run_test = is(cmp_text($tmp_file, $conf_file), 0,
  122. "Comparing generated sources.");
  123. }
  124. # Test 3. Run the test.
  125. skip "No tests available; skipping tests", 1 if $skip;
  126. skip "Stale sources; skipping tests", 1 if !$run_test;
  127. ok(run(test(["ssl_test", $tmp_file])), "running ssl_test $conf");
  128. }
  129. unlink glob $tmp_file;
  130. }
  131. sub cmp_text {
  132. return compare_text(@_, sub {
  133. $_[0] =~ s/\R//g;
  134. $_[1] =~ s/\R//g;
  135. return $_[0] ne $_[1];
  136. });
  137. }