#!/bin/sh
# PCP QA Test No. 1353
# pmlogger - pass0 scanner checks
#
# Copyright (c) 2021 Ken McDonell.  All Rights Reserved.
#

seq=`basename $0`
echo "QA output created by $seq"

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

_cleanup()
{
    cd $here
    $sudo rm -rf $tmp $tmp.*
}

status=0	# success is the default!
$sudo rm -rf $tmp $tmp.* $seq.full
trap "_cleanup; exit \$status" 0 1 2 3 15

_filter()
{
    sed \
	-e "s@$PCP_BINADM_DIR@PCP_BINADM_DIR@" \
	-e "s@$PCP_VAR_DIR@PCP_VAR_DIR@" \
	-e "s@$tmp@TMP@" \
	-e 's/ key=[1-9][0-9]*/ key=NNN/' \
    | _filter_pmlogger_log
}

# real QA test starts here
cat <<End-of-File >$tmp.config
# not_a_name_0 in comment
#
log advisory on once { sample.bin ["bin-100", "bin-200", "]"] }
log
mandatory
on
once
{
is_a_name_0
}
log advisory on 1 minute { is_a_name_1 [ "]", "not_a_name_1",  "not_a_name_2" ] }
log advisory on 10 minutes { is_a_name_2 [ "]", "not_a_name_3", "not_a_name_4" ] }
log mandatory on 15 seconds { is_a_name_3 is_a_name_4 # is_not_a_name_5
# is_not_a_name_6
		is_a_name_5
		dup_key_ key_dup_	# these will be hash key synonyms
		sample.bin		# duplicate name
		sample.bad.unknown	# no pmDesc
}
End-of-File

pmlogger -C -c $tmp.config -Dappl6 2>&1 \
| tee -a $seq.full \
| _filter

# success, all done
exit
