2015-12-28 19:38:04 -03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# ocsp-stapling.test
|
|
|
|
|
|
|
|
server=www.globalsign.com
|
|
|
|
ca=certs/external/ca-globalsign-root-r2.pem
|
|
|
|
|
|
|
|
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
|
|
|
|
|
|
|
|
# is our desired server there?
|
2016-04-01 15:45:53 -07:00
|
|
|
./scripts/ping.test $server 2
|
2016-04-14 14:42:01 -06:00
|
|
|
RESULT=$?
|
|
|
|
[ $RESULT -ne 0 ] && exit 0
|
2015-12-28 19:38:04 -03:00
|
|
|
|
|
|
|
# client test against the server
|
|
|
|
./examples/client/client -X -C -h $server -p 443 -A $ca -g -o
|
|
|
|
RESULT=$?
|
|
|
|
[ $RESULT -ne 0 ] && echo -e "\n\nClient connection failed" && exit 1
|
|
|
|
|
|
|
|
exit 0
|