changeset 989:98546e08521f

Tests: stream tests for proxy_ssl_name with complex value.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 21 Jul 2016 14:01:02 +0300
parents 64505109060c
children eb49d29d5447
files stream_proxy_ssl_name_complex.t
diffstat 1 files changed, 90 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/stream_proxy_ssl_name_complex.t
@@ -0,0 +1,90 @@
+#!/usr/bin/perl
+
+# (C) Sergey Kandaurov
+# (C) Nginx, Inc.
+
+# Stream tests for proxy to ssl backend, use of Server Name Indication
+# (proxy_ssl_name, proxy_ssl_server_name directives) with complex value.
+
+###############################################################################
+
+use warnings;
+use strict;
+
+use Test::More;
+
+BEGIN { use FindBin; chdir($FindBin::Bin); }
+
+use lib 'lib';
+use Test::Nginx;
+use Test::Nginx::Stream qw/ stream /;
+
+###############################################################################
+
+select STDERR; $| = 1;
+select STDOUT; $| = 1;
+
+my $t = Test::Nginx->new()->has(qw/stream stream_ssl stream_return sni/)
+	->has_daemon('openssl');
+
+$t->write_file_expand('nginx.conf', <<'EOF');
+
+%%TEST_GLOBALS%%
+
+daemon off;
+
+events {
+}
+
+stream {
+    proxy_ssl on;
+    proxy_ssl_session_reuse off;
+
+    server {
+        listen      127.0.0.1:8081;
+        listen      127.0.0.1:8082;
+        proxy_pass  127.0.0.1:8085;
+
+        proxy_ssl_server_name on;
+        proxy_ssl_name x${server_port}x;
+    }
+
+    server {
+        ssl_certificate_key localhost.key;
+        ssl_certificate localhost.crt;
+
+        listen  127.0.0.1:8085 ssl;
+        return  $ssl_server_name;
+    }
+}
+
+EOF
+
+$t->write_file('openssl.conf', <<EOF);
+[ req ]
+default_bits = 2048
+encrypt_key = no
+distinguished_name = req_distinguished_name
+[ req_distinguished_name ]
+EOF
+
+my $d = $t->testdir();
+
+foreach my $name ('localhost') {
+	system('openssl req -x509 -new '
+		. "-config '$d/openssl.conf' -subj '/CN=$name/' "
+		. "-out '$d/$name.crt' -keyout '$d/$name.key' "
+		. ">>$d/openssl.out 2>&1") == 0
+		or die "Can't create certificate for $name: $!\n";
+}
+
+$t->try_run('no stream return')->plan(2);
+
+###############################################################################
+
+my ($p1, $p2) = (port(8081), port(8082));
+
+is(stream("127.0.0.1:$p1")->read(), "x${p1}x", 'name 1');
+is(stream("127.0.0.1:$p2")->read(), "x${p2}x", 'name 2');
+
+###############################################################################