You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.1 KiB
88 lines
2.1 KiB
#!/bin/bash
|
|
RUN_DIR="$(dirname "$0")"
|
|
export BASE_DIR=${BASE_DIR:-$RUN_DIR}
|
|
BIN_DIR="${BASE_DIR}/bin"
|
|
PROFILE="${PROFILE:-}"
|
|
GROUP="${GROUP:-scenarios}"
|
|
RETRANS=""
|
|
CDR=""
|
|
|
|
usage() {
|
|
echo "Usage: get_results.sh [-p PROFILE] [-h] [-g]"
|
|
echo -e "\\t-p CE|PRO default is autodetect"
|
|
echo -e "\\t-g generate png flow graphs if test fails"
|
|
echo -e "\\t-G generate png all flow graphs"
|
|
echo -e "\\t-h this help"
|
|
echo -e "\\t-P parse only will disable test"
|
|
echo -e "\\t-T test only will disable parse"
|
|
echo -e "\\t-r fix retransmission issues"
|
|
echo -e "\\t-R choose how many messages before and after to check"
|
|
echo -e "\\t-c enable cdr validation"
|
|
echo -e "\\t-x set GROUP scenario. Default: scenarios"
|
|
echo "BASE_DIR:${BASE_DIR}"
|
|
echo "BIN_DIR:${BIN_DIR}"
|
|
}
|
|
|
|
get_scenarios() {
|
|
while read -r t; do
|
|
SCEN+=( "${t}" )
|
|
done < <("${BIN_DIR}/get_scenarios.sh" -p "${PROFILE}" -x "${GROUP}")
|
|
if [[ ${#SCEN[@]} == 0 ]]; then
|
|
echo "$(date) no scenarios found"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
while getopts 'hgGp:TPrR:cx:' opt; do
|
|
case $opt in
|
|
h) usage; exit 0;;
|
|
G) GRAPH="-G";;
|
|
g) GRAPH="-g";;
|
|
P) OPTS="-T";;
|
|
T) OPTS="-P";;
|
|
r) RETRANS="-r";;
|
|
R) RETRANS="-r -w ${OPTARG}";;
|
|
c) CDR="-c";;
|
|
p) PROFILE=${OPTARG};;
|
|
x) GROUP=${OPTARG};;
|
|
*) usage; exit 1;;
|
|
esac
|
|
done
|
|
shift $((OPTIND-1))
|
|
|
|
if [[ $# -ne 0 ]]; then
|
|
echo "Wrong number or arguments"
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "${PROFILE}" ] ; then
|
|
ngcp_type=$(command -v ngcp-type)
|
|
if [ -n "${ngcp_type}" ]; then
|
|
case $(${ngcp_type}) in
|
|
sppro|carrier) PROFILE=PRO;;
|
|
spce) PROFILE=CE;;
|
|
*) ;;
|
|
esac
|
|
echo "ngcp-type: profile ${PROFILE}"
|
|
fi
|
|
fi
|
|
if [ "${PROFILE}" != "CE" ] && [ "${PROFILE}" != "PRO" ]; then
|
|
echo "PROFILE ${PROFILE} unknown"
|
|
usage
|
|
exit 2
|
|
fi
|
|
|
|
get_scenarios
|
|
|
|
echo "${SCEN[@]}" | tr ' ' '\n' \
|
|
| parallel "${BIN_DIR}/check.sh ${GRAPH} -C -R ${OPTS} ${RETRANS} ${CDR} -p ${PROFILE} -s ${GROUP}"
|
|
status=$?
|
|
echo "$(date) - All done[${status}]"
|
|
tap_cmd=()
|
|
for t in "${SCEN[@]}" ; do
|
|
tap_cmd+=( "result/${GROUP}/${t}/"*tap )
|
|
done
|
|
prove -f -Q "${tap_cmd[@]}"
|
|
exit ${status}
|