#! /bin/sh
# PCP QA Test No. 1055
# Check PMCD state change notification, aka PMCD_ADD_AGENT
#
# This one checks sample.dynamic.meta.pmdesc.type ... see also qa/854
#
# Copyright (c) 2016 Red Hat, Inc.
#

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

# get standard filters
. ./common.product
. ./common.filter
. ./common.check

signal=$PCP_BINADM_DIR/pmsignal
status=1
done_clean=false
LOCALHOST=`hostname`
LOGGING_DIR="$PCP_ARCHIVE_DIR"

# if the primary logger is configured for logpush, we need to
# quietly move on and not dink with things ...
#
if pminfo -f pmcd.pmlogger.archive 2>&1 \
   | tee -a $seq_full \
   | grep -q '"primary".*"http://'
then
    _notrun "primary pmlogger configured for logpush"
    # NOTREACHED
fi

_cleanup()
{
    if $done_clean
    then
	:
    else
	$sudo rm -f $LOGGING_DIR/$LOCALHOST/$seq.log
	echo "Restore pmcd.conf and restart PMCD ..."
	if [ -f $tmp.pmcd.conf ]
	then
	    $sudo cp $tmp.pmcd.conf $PCP_PMCDCONF_PATH
	    rm -f $tmp.pmcd.conf
	fi
	_restore_primary_logger
	_service pmcd restart 2>&1 | _filter_pcp_restart
	_wait_for_pmcd
	_service pmlogger restart 2>&1 | _filter_pcp_restart \
	| sed -e '/pmlogger not running/d'
	_wait_for_pmlogger
	done_clean=true
    fi
    $sudo rm -f $tmp.*
    exit $status
}

trap "_cleanup" 0 1 2 3 15

# real QA test starts here
PMDA_PMCD_PATH=$PCP_PMDAS_DIR/pmcd/pmda_pmcd.$DSO_SUFFIX

# copy the pmcd config file to restore state later.
cp $PCP_PMCDCONF_PATH $tmp.pmcd.conf

# start from a known starting point
if ! _service pmlogger stop 2>&1; then _exit 1; fi \
| _filter_pcp_stop
_wait_pmlogger_end || _exit 1
if ! _service pmcd stop 2>&1; then _exit 1; fi \
| _filter_pcp_stop
_wait_pmcd_end || _exit 1

cat <<End-of-File >$tmp.tmp
# Installed by PCP QA test $seq on `date`
pmcd	2	dso	pmcd_init	$PMDA_PMCD_PATH
sample	29	pipe	binary 		$PCP_PMDAS_DIR/sample/pmdasample -d 29 
simple	253	pipe	binary 		/var/lib/pcp/pmdas/simple/pmdasimple -d 253 
End-of-File
$sudo cp $tmp.tmp $PCP_PMCDCONF_PATH

_writable_primary_logger
if ! _service pmcd restart 2>&1; then _exit 1; fi \
| _filter_pcp_restart
_wait_for_pmcd || _exit 1
if ! _service pmlogger restart 2>&1; then _exit 1; fi \
| _filter_pcp_restart
_wait_for_pmlogger || _exit 1

# Reset pmlogger
echo "log sample.dynamic.meta.metric"
# Log the sample pmda's sample.dynamic.meta.metric
cat <<'End-of-File' >$tmp.pmlc
connect primary
log mandatory on 500 msec { sample.dynamic.meta.metric }
End-of-File
_try_pmlc

# log a few samples
sleep 2

# check, to be sure !
#
cat <<'End-of-File' >$tmp.pmlc
connect primary
query sample.dynamic.meta.metric
End-of-File
_try_pmlc

# killing off pmlogger (as expected) may start another pmlogger instance
# thanks to systemd, so remember the current archive and the current log
#
archive=`pmafm $LOGGING_DIR/$LOCALHOST/Latest list | sed -n -e '/ 1]/s/.* //p'`
echo "archive=$archive" >>$seq_full
$sudo rm -f $LOGGING_DIR/$LOCALHOST/$seq.log
$sudo ln $LOGGING_DIR/$LOCALHOST/pmlogger.log $LOGGING_DIR/$LOCALHOST/$seq.log

echo "archive contents before pmda simple restart..."
echo "expect no <mark> record"
echo "---------------------------------------------------------------"
pmdumplog $archive >$tmp.out 2>&1
grep -E '(<mark>)|(sample.dynamic.meta.metric)' $tmp.out \
| _filter_pmdumplog \
| uniq
echo "---------------------------------------------------------------"

# Get the type of sample.dynamic.meta.metric by fetching 
# sample.dynamic.meta.pmdesc.type using pminfo.
echo "pminfo -f sample.dynamic.meta.pmdesc.type" | tee -a $seq_full
type=`pminfo -f sample.dynamic.meta.pmdesc.type | tee -a $seq_full \
    | awk '/value/ { print $2 }'`

# Change the type of sample.dynamic.meta.metric by using pmstore to store into
# sample.dynamic.meta.pmdesc.type
echo "changing type from $type to $((type + 1))"
pmstore sample.dynamic.meta.pmdesc.type $((type + 1))

# Restart the simple pmda by killing it and the getting pmcd to restart it (HUP).
# pmlogger should receive PMCD_ADD_AGENT, which should cause it to re-check
# all of it's configured metrics. It should then flag the change to
# sample.dynamic.meta.pmdesc.type and exit.
echo "restart the simple pmda"
$sudo $signal -a -s TERM pmdasimple
sleep 1 # let the signal arrive and let pmdasimple exit
$sudo $signal -a -s HUP pmcd   # ensure pmcd restarts the PMDA
sleep 1 # let the signal arrive and pmcd think about it

echo "archive contents after pmda simple restart..."
echo "expect no <mark> record"
echo "---------------------------------------------------------------"
pmdumplog $archive >$tmp.out 2>&1
grep -E '(<mark>)|(sample.dynamic.meta.metric)' $tmp.out \
| _filter_pmdumplog \
| uniq
echo "---------------------------------------------------------------"

# pmlogger should have stopped. Check for the messages indicating that
# the re-check of the configured metrics failed and that it stopped.
echo >>$seq_full
echo "pmlogger log ..." >>$seq_full
cat $LOGGING_DIR/$LOCALHOST/$seq.log | tee -a $seq_full | \
grep \
 -e 'Type of metric "sample.dynamic.meta.metric" has changed from 32 to U32' \
 -e 'One or more configured metrics have changed after pmcd state change. Exiting'

status=0
exit
