blob: 6ca5b90d3a86bf4947693fc4597faf60b8cc24be [file] [log] [blame]
SimonB21ab9d72016-03-12 20:37:32 +00001#!/bin/sh
2
3# basic-build-tests.sh
4#
Bence Szépkúti1e148272020-08-07 13:07:28 +02005# Copyright The Mbed TLS Contributors
Bence Szépkútic7da1fe2020-05-26 01:54:15 +02006# SPDX-License-Identifier: Apache-2.0
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19#
SimonB21ab9d72016-03-12 20:37:32 +000020# Purpose
21#
22# Executes the basic test suites, captures the results, and generates a simple
23# test report and code coverage report.
24#
25# The tests include:
SimonB21ab9d72016-03-12 20:37:32 +000026# * Unit tests - executed using tests/scripts/run-test-suite.pl
Paul Bakker4b8bc522016-07-20 09:52:01 +010027# * Self-tests - executed using the test suites above
SimonB21ab9d72016-03-12 20:37:32 +000028# * System tests - executed using tests/ssl-opt.sh
29# * Interoperability tests - executed using tests/compat.sh
30#
31# The tests focus on functionality and do not consider performance.
32#
33# Note the tests self-adapt due to configurations in include/mbedtls/config.h
34# which can lead to some tests being skipped, and can cause the number of
Paul Bakker4b8bc522016-07-20 09:52:01 +010035# available tests to fluctuate.
SimonB21ab9d72016-03-12 20:37:32 +000036#
37# This script has been written to be generic and should work on any shell.
38#
39# Usage: basic-build-tests.sh
40#
41
42# Abort on errors (and uninitiliased variables)
43set -eu
44
45if [ -d library -a -d include -a -d tests ]; then :; else
46 echo "Must be run from mbed TLS root" >&2
47 exit 1
48fi
49
Andres AGb2fdd042016-09-22 14:17:46 +010050: ${OPENSSL:="openssl"}
51: ${OPENSSL_LEGACY:="$OPENSSL"}
52: ${GNUTLS_CLI:="gnutls-cli"}
53: ${GNUTLS_SERV:="gnutls-serv"}
54: ${GNUTLS_LEGACY_CLI:="$GNUTLS_CLI"}
55: ${GNUTLS_LEGACY_SERV:="$GNUTLS_SERV"}
56
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +020057# Used to make ssl-opt.sh deterministic.
Manuel Pégourié-Gonnard54304472020-06-22 10:11:47 +020058#
59# See also RELEASE_SEED in all.sh. Debugging is easier if both values are kept
60# in sync. If you change the value here because it breaks some tests, you'll
61# definitely want to change it in all.sh as well.
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +020062: ${SEED:=1}
63export SEED
64
Gilles Peskine5a09a4a2021-07-13 23:23:23 +020065# if MAKEFLAGS is not set add the -j option to speed up invocations of make
66if [ -z "${MAKEFLAGS+set}" ]; then
67 export MAKEFLAGS="-j"
68fi
69
Andres AGb2fdd042016-09-22 14:17:46 +010070# To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh
71# we just export the variables they require
72export OPENSSL_CMD="$OPENSSL"
73export GNUTLS_CLI="$GNUTLS_CLI"
74export GNUTLS_SERV="$GNUTLS_SERV"
75
Janos Follath7ccac852016-06-06 13:18:39 +010076CONFIG_H='include/mbedtls/config.h'
77CONFIG_BAK="$CONFIG_H.bak"
SimonB21ab9d72016-03-12 20:37:32 +000078
Janos Follathb72c6782016-07-19 14:54:17 +010079# Step 0 - print build environment info
Andres AGb2fdd042016-09-22 14:17:46 +010080OPENSSL="$OPENSSL" \
81 OPENSSL_LEGACY="$OPENSSL_LEGACY" \
82 GNUTLS_CLI="$GNUTLS_CLI" \
83 GNUTLS_SERV="$GNUTLS_SERV" \
84 GNUTLS_LEGACY_CLI="$GNUTLS_LEGACY_CLI" \
85 GNUTLS_LEGACY_SERV="$GNUTLS_LEGACY_SERV" \
86 scripts/output_env.sh
Janos Follathb72c6782016-07-19 14:54:17 +010087echo
88
SimonB21ab9d72016-03-12 20:37:32 +000089# Step 1 - Make and instrumented build for code coverage
Simon Butcherc2b0efc2016-03-18 18:28:43 +000090export CFLAGS=' --coverage -g3 -O0 '
Philippe Antoine702c6592019-07-09 17:44:53 +020091export LDFLAGS=' --coverage'
SimonB098a3b52016-04-16 21:56:59 +010092make clean
Janos Follath7ccac852016-06-06 13:18:39 +010093cp "$CONFIG_H" "$CONFIG_BAK"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +020094scripts/config.py full
Gilles Peskine5a09a4a2021-07-13 23:23:23 +020095make
SimonB21ab9d72016-03-12 20:37:32 +000096
97
98# Step 2 - Execute the tests
99TEST_OUTPUT=out_${PPID}
100cd tests
Gilles Peskine3c8ccc02019-05-20 11:39:18 +0200101if [ ! -f "seedfile" ]; then
Gilles Peskinebfcb6e12020-04-09 18:33:34 +0200102 dd if=/dev/urandom of="seedfile" bs=64 count=1
Gilles Peskine3c8ccc02019-05-20 11:39:18 +0200103fi
Gilles Peskine40be51f2020-04-09 18:50:08 +0200104echo
SimonB21ab9d72016-03-12 20:37:32 +0000105
Gilles Peskineca51b472020-04-09 18:29:42 +0200106# Step 2a - Unit Tests (keep going even if some tests fail)
Gilles Peskine40be51f2020-04-09 18:50:08 +0200107echo '################ Unit tests ################'
Jaeden Amero60ca6e52018-12-07 13:06:24 +0000108perl scripts/run-test-suites.pl -v 2 |tee unit-test-$TEST_OUTPUT
Gilles Peskine40be51f2020-04-09 18:50:08 +0200109echo '^^^^^^^^^^^^^^^^ Unit tests ^^^^^^^^^^^^^^^^'
SimonB21ab9d72016-03-12 20:37:32 +0000110echo
111
Gilles Peskineca51b472020-04-09 18:29:42 +0200112# Step 2b - System Tests (keep going even if some tests fail)
Gilles Peskine40be51f2020-04-09 18:50:08 +0200113echo
114echo '################ ssl-opt.sh ################'
Gilles Peskine8e741412021-07-13 23:26:00 +0200115echo "ssl-opt.sh will use SEED=$SEED for udp_proxy"
SimonB21ab9d72016-03-12 20:37:32 +0000116sh ssl-opt.sh |tee sys-test-$TEST_OUTPUT
Gilles Peskine40be51f2020-04-09 18:50:08 +0200117echo '^^^^^^^^^^^^^^^^ ssl-opt.sh ^^^^^^^^^^^^^^^^'
SimonB21ab9d72016-03-12 20:37:32 +0000118echo
119
Gilles Peskineca51b472020-04-09 18:29:42 +0200120# Step 2c - Compatibility tests (keep going even if some tests fail)
Gilles Peskine40be51f2020-04-09 18:50:08 +0200121echo '################ compat.sh ################'
122{
123 echo '#### compat.sh: Default versions'
124 sh compat.sh -m 'tls1 tls1_1 tls1_2 dtls1 dtls1_2'
125 echo
126
127 echo '#### compat.sh: legacy (SSLv3)'
128 OPENSSL_CMD="$OPENSSL_LEGACY" sh compat.sh -m 'ssl3'
129 echo
130
131 echo '#### compat.sh: legacy (null, DES, RC4)'
132 OPENSSL_CMD="$OPENSSL_LEGACY" \
133 GNUTLS_CLI="$GNUTLS_LEGACY_CLI" GNUTLS_SERV="$GNUTLS_LEGACY_SERV" \
134 sh compat.sh -e '^$' -f 'NULL\|DES\|RC4\|ARCFOUR'
135 echo
136
137 echo '#### compat.sh: next (ARIA, ChaCha)'
138 OPENSSL_CMD="$OPENSSL_NEXT" sh compat.sh -e '^$' -f 'ARIA\|CHACHA'
139 echo
140} | tee compat-test-$TEST_OUTPUT
141echo '^^^^^^^^^^^^^^^^ compat.sh ^^^^^^^^^^^^^^^^'
SimonB21ab9d72016-03-12 20:37:32 +0000142echo
143
144# Step 3 - Process the coverage report
145cd ..
Gilles Peskine5757d542020-04-09 18:32:48 +0200146{
147 make lcov
148 echo SUCCESS
149} | tee tests/cov-$TEST_OUTPUT
150
151if [ "$(tail -n1 tests/cov-$TEST_OUTPUT)" != "SUCCESS" ]; then
152 echo >&2 "Fatal: 'make lcov' failed"
153 exit 2
154fi
SimonB21ab9d72016-03-12 20:37:32 +0000155
156
157# Step 4 - Summarise the test report
158echo
159echo "========================================================================="
160echo "Test Report Summary"
161echo
162
Gilles Peskine81786e42021-07-13 23:27:01 +0200163{
SimonB21ab9d72016-03-12 20:37:32 +0000164
Gilles Peskine81786e42021-07-13 23:27:01 +0200165 cd tests
SimonB21ab9d72016-03-12 20:37:32 +0000166
Gilles Peskine81786e42021-07-13 23:27:01 +0200167 # Step 4a - Unit tests
168 echo "Unit tests - tests/scripts/run-test-suites.pl"
SimonB21ab9d72016-03-12 20:37:32 +0000169
Gilles Peskine81786e42021-07-13 23:27:01 +0200170 PASSED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/test cases passed :[\t]*\([0-9]*\)/\1/p'| tr -d ' ')
171 SKIPPED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/skipped :[ \t]*\([0-9]*\)/\1/p'| tr -d ' ')
172 TOTAL_SUITES=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) .*, [0-9]* tests run)/\1/p'| tr -d ' ')
173 FAILED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/failed :[\t]*\([0-9]*\)/\1/p' |tr -d ' ')
SimonB21ab9d72016-03-12 20:37:32 +0000174
Gilles Peskine81786e42021-07-13 23:27:01 +0200175 echo "No test suites : $TOTAL_SUITES"
176 echo "Passed : $PASSED_TESTS"
177 echo "Failed : $FAILED_TESTS"
178 echo "Skipped : $SKIPPED_TESTS"
179 echo "Total exec'd tests : $(($PASSED_TESTS + $FAILED_TESTS))"
180 echo "Total avail tests : $(($PASSED_TESTS + $FAILED_TESTS + $SKIPPED_TESTS))"
181 echo
SimonB21ab9d72016-03-12 20:37:32 +0000182
Gilles Peskine81786e42021-07-13 23:27:01 +0200183 TOTAL_PASS=$PASSED_TESTS
184 TOTAL_FAIL=$FAILED_TESTS
185 TOTAL_SKIP=$SKIPPED_TESTS
186 TOTAL_AVAIL=$(($PASSED_TESTS + $FAILED_TESTS + $SKIPPED_TESTS))
187 TOTAL_EXED=$(($PASSED_TESTS + $FAILED_TESTS))
SimonB21ab9d72016-03-12 20:37:32 +0000188
Gilles Peskine81786e42021-07-13 23:27:01 +0200189 # Step 4b - TLS Options tests
190 echo "TLS Options tests - tests/ssl-opt.sh"
SimonB21ab9d72016-03-12 20:37:32 +0000191
Gilles Peskine81786e42021-07-13 23:27:01 +0200192 PASSED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) \/ [0-9]* tests ([0-9]* skipped))$/\1/p')
193 SKIPPED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ [0-9]* tests (\([0-9]*\) skipped))$/\1/p')
194 TOTAL_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ \([0-9]*\) tests ([0-9]* skipped))$/\1/p')
195 FAILED_TESTS=$(($TOTAL_TESTS - $PASSED_TESTS))
SimonB21ab9d72016-03-12 20:37:32 +0000196
Gilles Peskine81786e42021-07-13 23:27:01 +0200197 echo "Passed : $PASSED_TESTS"
198 echo "Failed : $FAILED_TESTS"
199 echo "Skipped : $SKIPPED_TESTS"
200 echo "Total exec'd tests : $TOTAL_TESTS"
201 echo "Total avail tests : $(($TOTAL_TESTS + $SKIPPED_TESTS))"
202 echo
203
204 TOTAL_PASS=$(($TOTAL_PASS+$PASSED_TESTS))
205 TOTAL_FAIL=$(($TOTAL_FAIL+$FAILED_TESTS))
206 TOTAL_SKIP=$(($TOTAL_SKIP+$SKIPPED_TESTS))
207 TOTAL_AVAIL=$(($TOTAL_AVAIL + $TOTAL_TESTS + $SKIPPED_TESTS))
208 TOTAL_EXED=$(($TOTAL_EXED + $TOTAL_TESTS))
SimonB21ab9d72016-03-12 20:37:32 +0000209
210
Gilles Peskine81786e42021-07-13 23:27:01 +0200211 # Step 4c - System Compatibility tests
212 echo "System/Compatibility tests - tests/compat.sh"
SimonB21ab9d72016-03-12 20:37:32 +0000213
Gilles Peskine81786e42021-07-13 23:27:01 +0200214 PASSED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* (\([0-9]*\) \/ [0-9]* tests ([0-9]* skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }')
215 SKIPPED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* ([0-9]* \/ [0-9]* tests (\([0-9]*\) skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }')
216 EXED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* ([0-9]* \/ \([0-9]*\) tests ([0-9]* skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }')
217 FAILED_TESTS=$(($EXED_TESTS - $PASSED_TESTS))
SimonB21ab9d72016-03-12 20:37:32 +0000218
Gilles Peskine81786e42021-07-13 23:27:01 +0200219 echo "Passed : $PASSED_TESTS"
220 echo "Failed : $FAILED_TESTS"
221 echo "Skipped : $SKIPPED_TESTS"
222 echo "Total exec'd tests : $EXED_TESTS"
223 echo "Total avail tests : $(($EXED_TESTS + $SKIPPED_TESTS))"
224 echo
SimonB21ab9d72016-03-12 20:37:32 +0000225
Gilles Peskine81786e42021-07-13 23:27:01 +0200226 TOTAL_PASS=$(($TOTAL_PASS+$PASSED_TESTS))
227 TOTAL_FAIL=$(($TOTAL_FAIL+$FAILED_TESTS))
228 TOTAL_SKIP=$(($TOTAL_SKIP+$SKIPPED_TESTS))
229 TOTAL_AVAIL=$(($TOTAL_AVAIL + $EXED_TESTS + $SKIPPED_TESTS))
230 TOTAL_EXED=$(($TOTAL_EXED + $EXED_TESTS))
SimonB21ab9d72016-03-12 20:37:32 +0000231
232
Gilles Peskine81786e42021-07-13 23:27:01 +0200233 # Step 4d - Grand totals
234 echo "-------------------------------------------------------------------------"
235 echo "Total tests"
SimonB21ab9d72016-03-12 20:37:32 +0000236
Gilles Peskine81786e42021-07-13 23:27:01 +0200237 echo "Total Passed : $TOTAL_PASS"
238 echo "Total Failed : $TOTAL_FAIL"
239 echo "Total Skipped : $TOTAL_SKIP"
240 echo "Total exec'd tests : $TOTAL_EXED"
241 echo "Total avail tests : $TOTAL_AVAIL"
242 echo
SimonB21ab9d72016-03-12 20:37:32 +0000243
244
Gilles Peskine81786e42021-07-13 23:27:01 +0200245 # Step 4e - Coverage
246 echo "Coverage"
SimonB21ab9d72016-03-12 20:37:32 +0000247
Gilles Peskine81786e42021-07-13 23:27:01 +0200248 LINES_TESTED=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ lines......: [0-9]*.[0-9]% (\([0-9]*\) of [0-9]* lines)/\1/p')
249 LINES_TOTAL=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ lines......: [0-9]*.[0-9]% ([0-9]* of \([0-9]*\) lines)/\1/p')
250 FUNCS_TESTED=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ functions..: [0-9]*.[0-9]% (\([0-9]*\) of [0-9]* functions)$/\1/p')
251 FUNCS_TOTAL=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ functions..: [0-9]*.[0-9]% ([0-9]* of \([0-9]*\) functions)$/\1/p')
252 BRANCHES_TESTED=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ branches...: [0-9]*.[0-9]% (\([0-9]*\) of [0-9]* branches)$/\1/p')
253 BRANCHES_TOTAL=$(tail -n4 cov-$TEST_OUTPUT|sed -n -e 's/ branches...: [0-9]*.[0-9]% ([0-9]* of \([0-9]*\) branches)$/\1/p')
SimonB21ab9d72016-03-12 20:37:32 +0000254
Gilles Peskine81786e42021-07-13 23:27:01 +0200255 LINES_PERCENT=$((1000*$LINES_TESTED/$LINES_TOTAL))
256 LINES_PERCENT="$(($LINES_PERCENT/10)).$(($LINES_PERCENT-($LINES_PERCENT/10)*10))"
SimonB21ab9d72016-03-12 20:37:32 +0000257
Gilles Peskine81786e42021-07-13 23:27:01 +0200258 FUNCS_PERCENT=$((1000*$FUNCS_TESTED/$FUNCS_TOTAL))
259 FUNCS_PERCENT="$(($FUNCS_PERCENT/10)).$(($FUNCS_PERCENT-($FUNCS_PERCENT/10)*10))"
SimonB21ab9d72016-03-12 20:37:32 +0000260
Gilles Peskine81786e42021-07-13 23:27:01 +0200261 BRANCHES_PERCENT=$((1000*$BRANCHES_TESTED/$BRANCHES_TOTAL))
262 BRANCHES_PERCENT="$(($BRANCHES_PERCENT/10)).$(($BRANCHES_PERCENT-($BRANCHES_PERCENT/10)*10))"
Dan Handleya8b26c22020-05-28 16:20:31 +0100263
Gilles Peskine81786e42021-07-13 23:27:01 +0200264 rm unit-test-$TEST_OUTPUT
265 rm sys-test-$TEST_OUTPUT
266 rm compat-test-$TEST_OUTPUT
267 rm cov-$TEST_OUTPUT
SimonB21ab9d72016-03-12 20:37:32 +0000268
Gilles Peskine81786e42021-07-13 23:27:01 +0200269 echo "Lines Tested : $LINES_TESTED of $LINES_TOTAL $LINES_PERCENT%"
270 echo "Functions Tested : $FUNCS_TESTED of $FUNCS_TOTAL $FUNCS_PERCENT%"
271 echo "Branches Tested : $BRANCHES_TESTED of $BRANCHES_TOTAL $BRANCHES_PERCENT%"
272 echo
SimonB21ab9d72016-03-12 20:37:32 +0000273
Gilles Peskine81786e42021-07-13 23:27:01 +0200274 # If there was a failure, remind the reader here. This also ensures that
275 # the coverage summary ends with a distinctive mark so that this script
276 # knows to exit with a failure status.
277 if [ $TOTAL_FAIL -ne 0 ]; then
278 echo "Note: $TOTAL_FAIL failures."
279 fi
280
281} | tee coverage-summary.txt
Janos Follath7ccac852016-06-06 13:18:39 +0100282
283make clean
284
285if [ -f "$CONFIG_BAK" ]; then
286 mv "$CONFIG_BAK" "$CONFIG_H"
287fi
Gilles Peskine6d6ee982020-04-09 18:28:14 +0200288
Gilles Peskine81786e42021-07-13 23:27:01 +0200289# If the coverage summary doesn't end with the expected last two lines
290# ("Branches Tested" and a blank line), either there was an error while
291# creating the coverage summary or the coverage summary reported failures.
292newline='
293'
294case "$(tail -n2 coverage-summary.txt)" in
295 *"$newline"*) exit 1;;
296 "Branches Tested"*) :;;
297 *) exit 1;;
298esac