Correct unit test invocation in cmake file
[ric-app/mc.git] / sidecars / listener / run_unit_test.ksh
1 #!/usr/bin/env bash
2
3 #==================================================================================
4 #        Copyright (c) 2018-2019 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #==================================================================================
18
19
20 #
21 #       Mnemonic:       run_unit_test.ksh
22 #       Abstract:       This drives unit testing setting up working directories
23 #                               and such.
24 #
25 #       Date:           10 December 2019
26 #       Author:         E. Scott Daniels
27 # -------------------------------------------------------------------------
28
29 function abort_after {
30         touch /tmp/running
31         sleep ${1:-60}
32         if [[ -e /tmp/running ]]
33         then
34                 echo "abort: unit test running too long, killing $2"
35                 kill -9 ${2:-bad-pid}
36         fi
37 }
38
39 function setup_dirs {
40         mkdir -p /tmp/fifos
41         mkdir -p /tmp/mc_listener_test/final
42         mkdir -p /tmp/mc_listener_test/stage
43
44         mv_src=/tmp/mc_listener_test/mv_src             # source that will be renamed rather than copied
45         mv_dest=/tmp/mc_listener_test/mv_dest
46         ps -elf >$mv_src
47
48         copy_src=/tmp/mc_listener_test/copy_src
49         copy_dest=/tmp/mc_listener_test/copy_dest
50         ps -elf >$copy_src
51
52         src_md5=$( cat $copy_src | md5sum )             # use cat so that filename doesn't factor in to output
53         rm -f $copy_dest
54 }
55
56 function purge_dirs {
57         rm -fr /tmp/mc_listener_test
58 }
59
60 if ! make -B unit_test                  # ensure that it's fresh
61 then
62         echo "[FAIL] cannot make unit_test"
63         exit 1
64 fi
65
66 if [[ $1 == "purge" ]]
67 then
68         purge_dirs
69         exit 0
70 fi
71
72 setup_dirs
73
74 if [[ $1 == "set"* ]]
75 then
76         exit
77 fi
78
79 abort_after 60
80 if ! unit_test >/tmp/PID$$.utlog 2>&1
81 then
82         rm -f /tmp/running
83         cat /tmp/PID$$.utlog
84         rm -f /tmp/PID$$.*
85         purge_dirs
86         exit 1
87 fi
88 rm -f /tmp/running
89
90 echo "[PASS] base unit tests all pass"
91 echo "[INFO] file/directory verification begins...."
92
93 # validate files that should have been created/copied
94
95 rc=0
96
97 ls -al /tmp/mc_listener_test/* >/tmp/PID$$.fdlog 2>&1
98
99 if [[ -e $copy_src ]]
100 then
101         echo "[FAIL] copy source test should have been unlinked but was there!"
102         rc=1
103 else
104         dest_md5=$( cat $copy_dest | md5sum )           # use cat so that filename doesn't factor in to output
105         if [[ $dest_md5 != $src_md5 ]]
106         then
107                 echo "[FAIL] md5 of copy test file didn't match soruce"
108 cat $dest_md5
109 echo "$dest_md5  $src_md5"
110                 rc=1
111         fi
112 fi
113 purge_dirs
114
115 if (( rc > 0 ))
116 then
117         cat /tmp/PID$$.fdlog
118 fi
119
120
121 show_coverage.ksh unit_test.c                                                           # compute coverage and generate .gcov files
122 echo "Coverage with discounting (raw values in parens)"
123 discount_chk.ksh $(ls *gcov|egrep -v "^test_|unit_test.c")
124
125
126 if (( rc > 0 ))
127 then
128         echo "[FAIL] overall test fails"
129 else
130         echo "[PASS] overall test passes"
131         rm -f *test*.gcov
132 fi
133
134 rm -f /tmp/PID$$.*
135 exit $rc