Add health check to the MC-listener application
[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"
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
61 if ! make -B unit_test                  # ensure that it's fresh
62 then
63         echo "[FAIL] cannot make unit_test"
64         exit 1
65 fi
66
67 if [[ $1 == "purge" ]]
68 then
69         purge_dirs
70         exit 0
71 fi
72
73 setup_dirs
74
75 if [[ $1 == "set"* ]]
76 then
77         exit
78 fi
79
80 abort_after 60 
81 if ! unit_test >/tmp/PID$$.utlog 2>&1
82 then
83         rm /tmp/running
84         cat /tmp/PID$$.utlog
85         rm -f /tmp/PID$$.*
86         purge_dirs
87         exit 1
88 fi
89 rm /tmp/running
90
91 echo "[PASS] base unit tests all pass"
92 echo "[INFO] file/directory verification begins...."
93
94 # validate files that should have been created/copied
95
96 rc=0
97
98 ls -al /tmp/mc_listener_test/* >/tmp/PID$$.fdlog 2>&1
99
100 if [[ -e $copy_src ]]
101 then
102         echo "[FAIL] copy source test should have been unlinked but was there!"
103         rc=1
104 else 
105         dest_md5=$( cat $copy_dest | md5sum )           # use cat so that filename doesn't factor in to output
106         if [[ $dest_md5 != $src_md5 ]]
107         then
108                 echo "[FAIL] md5 of copy test file didn't match soruce"
109 cat $dest_md5
110 echo "$dest_md5  $src_md5"
111                 rc=1
112         fi
113 fi
114 purge_dirs
115
116 if (( rc > 0 ))
117 then
118         cat /tmp/PID$$.fdlog
119 fi
120
121
122 show_coverage.ksh unit_test.c                                                           # compute coverage and generate .gcov files
123 echo "Coverage with discounting (raw values in parens)"
124 discount_chk.ksh $(ls *gcov|egrep -v "^test_|unit_test.c")
125
126
127 if (( rc > 0 ))
128 then
129         echo "[FAIL] overall test fails"
130 else
131         echo "[PASS] overall test passes"
132 fi
133
134 rm -f /tmp/PID$$.*
135 exit $rc