mirror of https://github.com/wolfSSL/wolfssl.git
24 lines
772 B
Bash
Executable File
24 lines
772 B
Bash
Executable File
#!/bin/sh
|
|
|
|
runCMD() { # usage: runCMD "<command>" "<retVal>"
|
|
eval $1 >/dev/null 2>&1
|
|
RETVAL=$?
|
|
if [ "$RETVAL" != "$2" ]; then
|
|
echo "Command ($1) returned ${RETVAL}, but expected $2. Rerunning with output to terminal:"
|
|
eval $1
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Successful tests
|
|
runCMD "ldd /lib/libustream-ssl.so" 0
|
|
runCMD "opkg update" 0
|
|
runCMD "uclient-fetch -O /dev/null 'https://letsencrypt.org'" 0
|
|
# Negative tests
|
|
runCMD "uclient-fetch --ca-certificate=/dev/null -O /dev/null 'https://letsencrypt.org'" 5
|
|
runCMD "uclient-fetch -O /dev/null 'https://self-signed.badssl.com/'" 5
|
|
runCMD "uclient-fetch -O /dev/null 'https://untrusted-root.badssl.com/'" 5
|
|
runCMD "uclient-fetch -O /dev/null 'https://expired.badssl.com/'" 5
|
|
|
|
echo "All tests passed."
|