Fix copyright statements
[ric-app/ts.git] / test / unit_test.sh
1 #!/usr/bin/env bash
2 # vim: ts=4 sw=4 noet:
3
4 #==================================================================================
5 #       Copyright (c) 2020 Nokia
6 #       Copyright (c) 2020 AT&T Intellectual Property.
7 #
8 #   Licensed under the Apache License, Version 2.0 (the "License");
9 #   you may 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,
16 #   WITHOUT 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 #==================================================================================
20
21 # LICENSE NOTE:
22 # this code is based on the unit test code in the o-ran-sc RMR repositiory which
23 # is covered by the original license above, and thus that license governs this
24 # extension as well.
25 # ---------------------------------------------------------------------------------
26
27 #
28 #       Mnemonic:       unit_test.sh
29 #       Abstract:       This drives the unit tests and combs out the needed .gcov
30 #                               files which are by some magic collected for Sonar.
31 #
32 #       Date:           23 March 2020
33 #       Author:         E. Scott Daniels
34 # -----------------------------------------------------------------------------
35
36
37 # Make a list of our modules under test so that we don't look at gcov
38 # files that are generated for system lib headers in /usr/*
39 # (bash makes the process of building a list of names  harder than it 
40 # needs to be, so use caution with the printf() call.)
41 #
42 function mk_list {
43         grep -l "Source:\.\./src"  *.gcov | while read f
44         do
45                 printf "$f "            # do NOT use echo or add \n!
46         done 
47 }
48
49 function abort_if_error {
50         if (( $1 == 0 ))
51         then
52                 return
53         fi
54
55         if [[ -n /tmp/PID$$.log ]]
56         then
57                 $spew /tmp/PID$$.log
58         fi
59         echo "abort: $2"
60
61         rm -f /tmp/PID$$.*
62         exit 1
63 }
64
65 # -------------------------------------------------------------------------
66
67 spew="cat"                                      # default to dumping all make output on failure (-q turns it to ~40 lines)
68
69 while [[ $1 == "-"* ]]
70 do
71         case $1 in
72                 -q) spew="head -40";;           # how much to dump on build error
73                 -v)     spew="cat";;
74         esac
75
76         shift
77 done
78
79 if [[ ! -f unit_test.cpp ]]
80 then
81         echo "[PASS] no unit test source exists"
82         exit 0
83 fi
84
85 make nuke >/dev/null
86 make unit_test >/tmp/PID$$.log 2>&1
87 abort_if_error $? "unable to make"
88
89 spew="cat"                                                                      # after we build, dump everything on error
90 ./unit_test >/tmp/PID$$.log 2>&1
91 abort_if_error $? "unit test failed"
92
93 gcov unit_test >/tmp/PID$$.gcov_log 2>&1        # suss out our gcov files
94 ./scrub_gcov.sh                                                         # remove cruft
95
96 list=$( mk_list )
97 echo "[INFO] coverage stats, discounted (raw), for the various modules:"
98 ./parse_gcov.sh $list                                           # generate simple, short, coverage stats
99
100 rm -f /tmp/PID$$.*
101