1 # Functions used by all tests.
3 # Copyright (C) 2011-2013 Simon Ruderich
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 # Terminate all running servers when the script terminates.
24 # Same when the user presses Ctrl-C.
25 trap 'abort SIGINT' INT
31 certificate-localhost-proxy.pem certificate-localhost-server.pem
34 if test -n "$pid_server"; then
35 kill $pid_server || echo 'failed to kill gnutls-serv'
37 if test -n "$pid_tlsproxy"; then
38 kill $pid_tlsproxy || echo 'failed to kill tlsproxy'
47 # Don't waste time running `tlsproxy-setup` when all files are still
49 if test -f proxy-ca-key.pem &&
50 test -f proxy-ca.pem &&
51 test -f proxy-invalid.pem &&
57 "$srcdir/../src/tlsproxy-setup" >/dev/null 2>&1
60 # `make distcheck` marks the source PEM-file as read-only which is copied
61 # over when using `cp`. This causes a check failure when tlsproxy_add() is
62 # called again with the same hostname. Instead use redirection which
64 "$srcdir/../src/tlsproxy-add" "$1" < "$srcdir/$2" >/dev/null 2>&1
67 #valgrind --leak-check=full --error-exitcode=1 --track-fds=yes \
68 ../src/tlsproxy -d2 "$@" >tlsproxy-log 2>&1 &
72 gnutls-serv --http --port 4712 "$@" >/dev/null 2>&1 &
76 ./client ./proxy-ca.pem "$@" > tmp 2>&1
80 for x in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do
83 # Check if each given port can be reached.
86 printf 'invalid request\r\n\r\n' \
87 | nc localhost "$port" >/dev/null 2>&1 \
91 if test -n "$ready"; then
95 echo "waiting for ports $* ..."
99 test_proxy_failure() {
100 grep 'proxy failure' tmp >/dev/null \
101 || abort 'test_proxy_failure'
102 grep 'response: HTTP/1.0 503 Forwarding failure' tmp >/dev/null \
103 || abort 'test_proxy_failure 2'
105 test_proxy_authentication_failure() {
106 grep 'proxy failure' tmp >/dev/null \
107 || abort 'test_proxy_authentication_failure'
108 grep 'response: HTTP/1.0 407 Proxy Authentication Required' tmp >/dev/null \
109 || abort 'test_proxy_authentication_failure 2'
111 test_authentication_missing() {
112 grep 'response: HTTP/1.0 407 Proxy Authentication Required' tmp >/dev/null \
113 || abort 'test_authentication_missing'
115 test_proxy_successful() {
116 grep 'response: HTTP/1.0 200 Connection established' tmp >/dev/null \
117 || abort 'test_proxy_successful'
119 test_invalid_certificate() {
120 grep 'certificate invalid' tmp >/dev/null \
121 || abort 'test_invalid_certificate'
123 test_no_invalid_certificate() {
124 grep 'certificate invalid' tmp >/dev/null \
125 && abort 'test_no_invalid_certificate' || true