#!/bin/sh
# PCP QA Test No. 1058
# Basic checkout of the bash PMDA.
#
# Copyright (c) 2016 Red Hat.
#

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

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

[ -f $PCP_PMDAS_DIR/bash/pmdabash ] || _notrun "Bash script PMDA not installed"

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

pmdabash_remove()
{
    echo
    echo "=== remove bash agent ==="
    $sudo ./Remove >$tmp.out 2>&1
    _filter_pmda_remove <$tmp.out
}

pmdabash_install()
{
    # start from known starting points
    $sudo rm -fr "$PCP_TMP_DIR/pmdabash"
    $sudo mkdir -p -m 1777 "$PCP_TMP_DIR/pmdabash"
    cd "$PCP_PMDAS_DIR/bash"
    $sudo ./Remove >/dev/null 2>&1

    echo
    echo "=== bash agent installation ==="
    $sudo ./Install </dev/null >$tmp.out 2>&1
    cat $tmp.out >>$here/$seq.full
    # Check bash metrics have appeared ... X metrics and Y values
    _filter_pmda_install <$tmp.out \
    | sed \
        -e 's/[0-9][0-9]* warnings, //' \
    | $PCP_AWK_PROG '
/Check bash metrics have appeared/    { if ($7 >= 10 && $7 <= 30) $7 = "X"
                                        if ($10 >= 0 && $10 <= 80) $10 = "Y"
                                      }
                                      { print }'
}

_prepare_pmda bash
# note: _restore_auto_restart pmcd done in _cleanup_pmda()
trap "_cleanup_pmda bash; exit \$status" 0 1 2 3 15

_stop_auto_restart pmcd

# real QA test starts here
pmdabash_install

# pmcd should have been started by the Install process - check
if pminfo -v bash > $tmp.info 2> $tmp.err
then
    :
else
    echo "... failed! ... here is the Install log ..."
    cat $tmp.out
fi
cat $tmp.info $tmp.err

pmdabash_remove
status=0
exit
