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/>.
25 certificate-localhost-proxy.pem certificate-localhost-server.pem \
26 proxy-ca-key.pem proxy-ca.pem proxy-invalid.pem proxy-key.pem
29 kill $pid_server || echo 'failed to kill gnutls-serv'
30 kill $pid_tlsproxy || echo 'failed to kill tlsproxy'
38 "$srcdir/../src/tlsproxy-setup" >/dev/null 2>&1
41 "$srcdir/../src/tlsproxy-add" "$1" "$srcdir/$2" >/dev/null 2>&1
44 ../src/tlsproxy -d2 "$@" >tlsproxy-log 2>&1 &
48 gnutls-serv --http --port 4712 "$@" >/dev/null 2>&1 &
52 ./client ./proxy-ca.pem "$@" > tmp 2>&1
59 # Check if each given port can be reached.
62 printf 'invalid request\r\n\r\n' \
63 | nc localhost "$port" >/dev/null 2>&1 \
67 if test -n "$ready"; then
71 echo "waiting for ports $* ..."
75 test_proxy_failure() {
76 grep 'proxy failure' tmp >/dev/null \
77 || abort 'test_proxy_failure'
78 grep 'response: HTTP/1.0 503 Forwarding failure' tmp >/dev/null \
79 || abort 'test_proxy_failure 2'
81 test_proxy_successful() {
82 grep 'response: HTTP/1.0 200 Connection established' tmp >/dev/null \
83 || abort 'test_proxy_successful'
85 test_invalid_certificate() {
86 grep 'certificate invalid' tmp >/dev/null \
87 || abort 'test_invalid_certificate'
89 test_no_invalid_certificate() {
90 grep 'certificate invalid' tmp >/dev/null \
91 && abort 'test_no_invalid_certificate' || true