]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blob - tests/common.sh
tests: Separate common test data, move tests in tests-normal.sh.
[tlsproxy/tlsproxy.git] / tests / common.sh
1 # Functions used by all tests.
2 #
3 # Copyright (C) 2011  Simon Ruderich
4 #
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.
9 #
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.
14 #
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/>.
17
18
19 abort() {
20     echo abort
21     pkill -n gnutls-serv
22     pkill -n tlsproxy
23     exit 1
24 }
25 server() {
26     gnutls-serv --http --port 4712 "$@" >/dev/null 2>/dev/null &
27 }
28 client() {
29     ./client ./proxy-ca.pem "$@" > tmp 2>&1
30 }
31
32 test_proxy_failure() {
33     grep 'proxy failure' tmp >/dev/null || abort
34     grep 'response: HTTP/1.0 503 Forwarding failure' tmp >/dev/null \
35         || abort
36 }
37 test_proxy_successful() {
38     grep 'response: HTTP/1.0 200 Connection established' tmp >/dev/null \
39         || abort
40 }
41 test_invalid_certificate() {
42     grep 'certificate invalid' tmp >/dev/null || abort
43 }
44 test_no_invalid_certificate() {
45     grep 'certificate invalid' tmp >/dev/null && abort
46 }