41 lines
857 B
Bash
Executable File
41 lines
857 B
Bash
Executable File
#!/bin/sh
|
|
. $(dirname $0)/../test_library
|
|
|
|
start() {
|
|
../../src/stunnel -fd 0 <<EOT
|
|
debug = debug
|
|
syslog = no
|
|
pid = ${result_path}/stunnel.pid
|
|
output = ${result_path}/stunnel.log
|
|
|
|
[https client]
|
|
client = yes
|
|
accept = 127.0.0.1:${http1}
|
|
connect = 127.0.0.1:${https}
|
|
;sni = sni.mydomain.com
|
|
|
|
[virtual]
|
|
accept = 127.0.0.1:${https}
|
|
cert = ${script_path}/certs/server_cert.pem
|
|
exec = ${script_path}/execute
|
|
execArgs = execute 036_no_SNI
|
|
|
|
[sni]
|
|
sni = virtual:sni.mydomain.com
|
|
cert = ${script_path}/certs/server_cert.pem
|
|
exec = ${script_path}/execute
|
|
execArgs = execute 036_no_SNI_error
|
|
EOT
|
|
}
|
|
|
|
check_ports "036_no_SNI"
|
|
if grep -q "OpenSSL 1" "results.log"
|
|
then
|
|
start 2> "error.log"
|
|
test_log_for "036_no_SNI" "execute" "$1" 2>> "stderr.log"
|
|
exit $?
|
|
else
|
|
exit_logs "036_no_SNI" "skipped"
|
|
exit 125
|
|
fi
|