55 lines
1.2 KiB
Bash
Executable File
55 lines
1.2 KiB
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}
|
|
;cert = ${script_path}/certs/client_cert.pem
|
|
;wrong certificate
|
|
cert = ${script_path}/certs/stunnel.pem
|
|
|
|
[client_2]
|
|
client = yes
|
|
accept = 127.0.0.1:${http2}
|
|
connect = 127.0.0.1:${https2}
|
|
|
|
[client_3]
|
|
client = yes
|
|
accept = 127.0.0.1:${http3}
|
|
connect = 127.0.0.1:${https3}
|
|
|
|
[https server]
|
|
accept = 127.0.0.1:${https}
|
|
connect = 127.0.0.1:${http2}
|
|
redirect = ${http3}
|
|
cert = ${script_path}/certs/server_cert.pem
|
|
verifyPeer = yes
|
|
CAfile = ${script_path}/certs/PeerCerts.pem
|
|
|
|
[server_2]
|
|
accept = 127.0.0.1:${https2}
|
|
cert = ${script_path}/certs/server_cert.pem
|
|
exec = ${script_path}/execute
|
|
execArgs = execute 031_redirect_error
|
|
|
|
[server_3]
|
|
accept = 127.0.0.1:${https3}
|
|
cert = ${script_path}/certs/server_cert.pem
|
|
exec = ${script_path}/execute
|
|
execArgs = execute 031_redirect
|
|
EOT
|
|
}
|
|
|
|
check_ports "031_redirect"
|
|
start 2> "error.log"
|
|
test_log_for "031_redirect" "execute" "$1" 2>> "stderr.log"
|
|
exit $?
|