From 58daab21cd043e1dc37024a7f99b396788372918 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 9 Mar 2024 14:19:48 +0100 Subject: Merging upstream version 1.44.3. Signed-off-by: Daniel Baumann --- web/server/h2o/libh2o/t/90live-sni.t | 91 ++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 web/server/h2o/libh2o/t/90live-sni.t (limited to 'web/server/h2o/libh2o/t/90live-sni.t') diff --git a/web/server/h2o/libh2o/t/90live-sni.t b/web/server/h2o/libh2o/t/90live-sni.t new file mode 100644 index 000000000..eb5bb5d8d --- /dev/null +++ b/web/server/h2o/libh2o/t/90live-sni.t @@ -0,0 +1,91 @@ +use strict; +use warnings; +use Digest::MD5 qw(md5_hex); +use Test::More; +use t::Util; + +our $CA_CERT = "misc/test-ca/ca.crt"; + +# using wget since curl of OS X 10.9.5 returns invalid certificate chain error with the test +plan skip_all => 'wget not found' + unless prog_exists('wget'); + +plan skip_all => 'only wget >= 1.14 supports SNI' + unless `wget --version` =~ /^GNU Wget 1\.([0-9]+)/ && $1 >= 14; + +plan skip_all => "skipping live tests (setenv LIVE_TESTS=1 to run them)" + unless $ENV{LIVE_TESTS}; + +subtest "basic" => sub { + my $server = spawn_h2o(sub { + my ($port, $tls_port) = @_; + return << "EOT"; +hosts: + "127.0.0.1.xip.io:$tls_port": + paths: + /: + file.dir: examples/doc_root + "alternate.127.0.0.1.xip.io:$tls_port": + listen: + port: $tls_port + ssl: + key-file: examples/h2o/alternate.key + certificate-file: examples/h2o/alternate.crt + paths: + /: + file.dir: examples/doc_root.alternate +EOT + }); + + do_test( + "127.0.0.1.xip.io:$server->{tls_port}", + md5_file("examples/doc_root/index.html"), + ); + + do_test( + "alternate.127.0.0.1.xip.io:$server->{tls_port}", + md5_file("examples/doc_root.alternate/index.txt"), + ); +}; + +subtest "wildcard" => sub { + my $server = spawn_h2o(sub { + my ($port, $tls_port) = @_; + return << "EOT"; +hosts: + "127.0.0.1.xip.io:$tls_port": + paths: + /: + file.dir: examples/doc_root + "*.127.0.0.1.xip.io:$tls_port": + listen: + port: $tls_port + ssl: + key-file: examples/h2o/alternate.key + certificate-file: examples/h2o/alternate.crt + paths: + /: + file.dir: examples/doc_root.alternate +EOT + }); + + do_test( + "127.0.0.1.xip.io:$server->{tls_port}", + md5_file("examples/doc_root/index.html"), + ); + + do_test( + "alternate.127.0.0.1.xip.io:$server->{tls_port}", + md5_file("examples/doc_root.alternate/index.txt"), + ); +}; + + +done_testing(); + +sub do_test { + my ($authority, $md5_expected) = @_; + my $content = `wget -nv --ca-certificate=$CA_CERT -O - https://$authority/`; + is $?, 0, "wget returns success"; + is md5_hex($content), $md5_expected, "content is as expected"; +} -- cgit v1.2.3