summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/t/90live-sni.t
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vendor-h2o/t/90live-sni.t')
-rw-r--r--debian/vendor-h2o/t/90live-sni.t91
1 files changed, 0 insertions, 91 deletions
diff --git a/debian/vendor-h2o/t/90live-sni.t b/debian/vendor-h2o/t/90live-sni.t
deleted file mode 100644
index eb5bb5d..0000000
--- a/debian/vendor-h2o/t/90live-sni.t
+++ /dev/null
@@ -1,91 +0,0 @@
-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";
-}