Now that we've removed the need for symlinks, we can safely remove util/mklinks.pl
[openssl.git] / test / testssl
1 #!/bin/sh
2
3 if [ "$1" = "" ]; then
4   key=../apps/server.pem
5 else
6   key="$1"
7 fi
8 if [ "$2" = "" ]; then
9   cert=../apps/server.pem
10 else
11   cert="$2"
12 fi
13 ssltest="../util/shlib_wrap.sh ./ssltest -key $key -cert $cert -c_key $key -c_cert $cert"
14
15 if ../util/shlib_wrap.sh ../apps/openssl x509 -in $cert -text -noout | fgrep 'DSA Public Key' >/dev/null; then
16   dsa_cert=YES
17 else
18   dsa_cert=NO
19 fi
20
21 if [ "$3" = "" ]; then
22   CA="-CApath ../certs"
23 else
24   CA="-CAfile $3"
25 fi
26
27 if [ "$4" = "" ]; then
28   extra=""
29 else
30   extra="$4"
31 fi
32
33 serverinfo="./serverinfo.pem"
34
35 #############################################################################
36
37 echo test sslv3
38 $ssltest -ssl3 $extra || exit 1
39
40 echo test sslv3 with server authentication
41 $ssltest -ssl3 -server_auth $CA $extra || exit 1
42
43 echo test sslv3 with client authentication
44 $ssltest -ssl3 -client_auth $CA $extra || exit 1
45
46 echo test sslv3 with both client and server authentication
47 $ssltest -ssl3 -server_auth -client_auth $CA $extra || exit 1
48
49 echo test sslv2/sslv3
50 $ssltest $extra || exit 1
51
52 echo test sslv2/sslv3 with server authentication
53 $ssltest -server_auth $CA $extra || exit 1
54
55 echo test sslv2/sslv3 with client authentication
56 $ssltest -client_auth $CA $extra || exit 1
57
58 echo test sslv2/sslv3 with both client and server authentication
59 $ssltest -server_auth -client_auth $CA $extra || exit 1
60
61 echo test sslv3 via BIO pair
62 $ssltest -bio_pair -ssl3 $extra || exit 1
63
64 echo test sslv3 with server authentication via BIO pair
65 $ssltest -bio_pair -ssl3 -server_auth $CA $extra || exit 1
66
67 echo test sslv3 with client authentication via BIO pair
68 $ssltest -bio_pair -ssl3 -client_auth $CA $extra || exit 1
69
70 echo test sslv3 with both client and server authentication via BIO pair
71 $ssltest -bio_pair -ssl3 -server_auth -client_auth $CA $extra || exit 1
72
73 echo test sslv2/sslv3 via BIO pair
74 $ssltest $extra || exit 1
75
76 echo test dtlsv1
77 $ssltest -dtls1 $extra || exit 1
78
79 echo test dtlsv1 with server authentication
80 $ssltest -dtls1 -server_auth $CA $extra || exit 1
81
82 echo test dtlsv1 with client authentication
83 $ssltest -dtls1 -client_auth $CA $extra || exit 1
84
85 echo test dtlsv1 with both client and server authentication
86 $ssltest -dtls1 -server_auth -client_auth $CA $extra || exit 1
87
88 echo test dtlsv1.2
89 $ssltest -dtls12 $extra || exit 1
90
91 echo test dtlsv1.2 with server authentication
92 $ssltest -dtls12 -server_auth $CA $extra || exit 1
93
94 echo test dtlsv1.2 with client authentication
95 $ssltest -dtls12 -client_auth $CA $extra || exit 1
96
97 echo test dtlsv1.2 with both client and server authentication
98 $ssltest -dtls12 -server_auth -client_auth $CA $extra || exit 1
99
100 if [ $dsa_cert = NO ]; then
101   echo 'test sslv2/sslv3 w/o (EC)DHE via BIO pair'
102   $ssltest -bio_pair -no_dhe -no_ecdhe $extra || exit 1
103 fi
104
105 echo test sslv2/sslv3 with 1024bit DHE via BIO pair
106 $ssltest -bio_pair -dhe1024dsa -v $extra || exit 1
107
108 echo test sslv2/sslv3 with server authentication
109 $ssltest -bio_pair -server_auth $CA $extra || exit 1
110
111 echo test sslv2/sslv3 with client authentication via BIO pair
112 $ssltest -bio_pair -client_auth $CA $extra || exit 1
113
114 echo test sslv2/sslv3 with both client and server authentication via BIO pair
115 $ssltest -bio_pair -server_auth -client_auth $CA $extra || exit 1
116
117 echo test sslv2/sslv3 with both client and server authentication via BIO pair and app verify
118 $ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1
119
120 echo "Testing ciphersuites"
121 for protocol in TLSv1.2 SSLv3; do
122   echo "Testing ciphersuites for $protocol"
123   for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "RSA+$protocol" | tr ':' ' '`; do
124     echo "Testing $cipher"
125     prot=""
126     if [ $protocol = "SSLv3" ] ; then
127       prot="-ssl3"
128     fi
129     $ssltest -cipher $cipher $prot
130     if [ $? -ne 0 ] ; then
131           echo "Failed $cipher"
132           exit 1
133     fi
134   done
135 done
136
137 #############################################################################
138
139 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
140   echo skipping anonymous DH tests
141 else
142   echo test tls1 with 1024bit anonymous DH, multiple handshakes
143   $ssltest -v -bio_pair -tls1 -cipher ADH -dhe1024dsa -num 10 -f -time $extra || exit 1
144 fi
145
146 if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then
147   echo skipping RSA tests
148 else
149   echo 'test tls1 with 1024bit RSA, no (EC)DHE, multiple handshakes'
150   ../util/shlib_wrap.sh ./ssltest -v -bio_pair -tls1 -cert ../apps/server2.pem -no_dhe -no_ecdhe -num 10 -f -time $extra || exit 1
151
152   if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
153     echo skipping RSA+DHE tests
154   else
155     echo test tls1 with 1024bit RSA, 1024bit DHE, multiple handshakes
156     ../util/shlib_wrap.sh ./ssltest -v -bio_pair -tls1 -cert ../apps/server2.pem -dhe1024dsa -num 10 -f -time $extra || exit 1
157   fi
158 fi
159
160 echo test tls1 with PSK
161 $ssltest -tls1 -cipher PSK -psk abc123 $extra || exit 1
162
163 echo test tls1 with PSK via BIO pair
164 $ssltest -bio_pair -tls1 -cipher PSK -psk abc123 $extra || exit 1
165
166 #############################################################################
167 # Next Protocol Negotiation Tests
168
169 $ssltest -bio_pair -tls1 -npn_client || exit 1
170 $ssltest -bio_pair -tls1 -npn_server || exit 1
171 $ssltest -bio_pair -tls1 -npn_server_reject || exit 1
172 $ssltest -bio_pair -tls1 -npn_client -npn_server_reject || exit 1
173 $ssltest -bio_pair -tls1 -npn_client -npn_server || exit 1
174 $ssltest -bio_pair -tls1 -npn_client -npn_server -num 2 || exit 1
175 $ssltest -bio_pair -tls1 -npn_client -npn_server -num 2 -reuse || exit 1
176
177 #############################################################################
178 # Custom Extension tests
179
180 echo test tls1 with custom extensions
181 $ssltest -bio_pair -tls1 -custom_ext || exit 1
182
183 #############################################################################
184 # Serverinfo tests
185
186 echo test tls1 with serverinfo
187 $ssltest -bio_pair -tls1 -serverinfo_file $serverinfo || exit 1
188 $ssltest -bio_pair -tls1 -serverinfo_file $serverinfo -serverinfo_sct || exit 1
189 $ssltest -bio_pair -tls1 -serverinfo_file $serverinfo -serverinfo_tack || exit 1
190 $ssltest -bio_pair -tls1 -serverinfo_file $serverinfo -serverinfo_sct -serverinfo_tack || exit 1
191 $ssltest -bio_pair -tls1 -custom_ext -serverinfo_file $serverinfo -serverinfo_sct -serverinfo_tack || exit 1
192
193
194 #############################################################################
195 # ALPN tests
196
197 $ssltest -bio_pair -tls1 -alpn_client foo -alpn_server bar || exit 1
198 $ssltest -bio_pair -tls1 -alpn_client foo -alpn_server foo -alpn_expected foo || exit 1
199 $ssltest -bio_pair -tls1 -alpn_client foo,bar -alpn_server foo -alpn_expected foo || exit 1
200 $ssltest -bio_pair -tls1 -alpn_client bar,foo -alpn_server foo -alpn_expected foo || exit 1
201 $ssltest -bio_pair -tls1 -alpn_client bar,foo -alpn_server foo,bar -alpn_expected foo || exit 1
202 $ssltest -bio_pair -tls1 -alpn_client bar,foo -alpn_server bar,foo -alpn_expected bar || exit 1
203 $ssltest -bio_pair -tls1 -alpn_client foo,bar -alpn_server bar,foo -alpn_expected bar || exit 1
204 $ssltest -bio_pair -tls1 -alpn_client baz -alpn_server bar,foo || exit 1
205
206 if ../util/shlib_wrap.sh ../apps/openssl no-srp; then
207   echo skipping SRP tests
208 else
209   echo test tls1 with SRP
210   $ssltest -tls1 -cipher SRP -srpuser test -srppass abc123
211
212   echo test tls1 with SRP via BIO pair
213   $ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123
214
215   echo test tls1 with SRP auth
216   $ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123
217
218   echo test tls1 with SRP auth via BIO pair
219   $ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123
220 fi
221
222 #############################################################################
223 # Multi-buffer tests
224
225 if [ -z "$extra" -a `uname -m` = "x86_64" ]; then
226   $ssltest -cipher AES128-SHA    -bytes 8m      || exit 1
227   $ssltest -cipher AES128-SHA256 -bytes 8m      || exit 1
228 fi
229
230 exit 0