1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
#!/bin/sh
# PCP QA Test No. 1793
# Test pmrep and pcp2xxx labels handling
#
# Copyright (c) 2020 Red Hat.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.python
. ./common.config
which pmrep >/dev/null 2>&1 || _notrun pmrep not installed
$python -c "from collections import OrderedDict" >/dev/null 2>&1 || _notrun no OrderedDict
which pcp2json >/dev/null 2>&1 || _notrun pcp2json not installed
_cleanup()
{
cd $here
if $need_restore
then
need_restore=false
$sudo rm -rf $PCP_ETC_DIR/pcp/labels/*
_restore_config $PCP_ETC_DIR/pcp/labels
_sighup_pmcd
fi
$sudo rm -rf $tmp $tmp.*
}
status=1 # failure is the default!
userid=`id -u`
groupid=`id -g`
hostname=`hostname`
machineid=`_machine_id`
domainname=`_domain_name`
trap "_cleanup; exit \$status" 0 1 2 3 15
need_restore=true
_filter()
{
sed \
-e "s/'/\"/g" \
-e "s/\(\"userid\"\):\"$userid\"/\1:\"USERID\"/g" \
-e "s/\(\"groupid\"\):\"$groupid\"/\1:\"GROUPID\"/g" \
-e "s/\(\"hostname\"\):\"$hostname\"/\1:\"HOSTNAME\"/g" \
-e "s/\(\"machineid\"\):\"$machineid\"/\1:\"MACHINEID\"/g" \
-e "s/\(\"domainname\"\):\"$domainname\"/\1:\"DOMAINNAME\"/g" \
| tee -a $seq_full \
| pmjson \
| sed -e 's/^[\{\}]$//' -e '/^$/d' -e 's/,$//' | LC_COLLATE=POSIX sort
}
# Take pcp2csv output like ...
# Time,"sample.colour-red","{'domainname':'localdomain';'groupid':'1000';'hostname':'bozo.localdomain';'machineid':'6c78e37f87514105b535e855a43de6ac';'userid':'1000';'agent':'sample';'role':'testing';'model':'RGB';'cluster':'zero'}","sample.colour-green",...
# and turn it something pmjson can grok, like ...
# {'domainname':'localdomain','groupid':'1000','hostname':'bozo.localdomain','machineid':'6c78e37f87514105b535e855a43de6ac','userid':'1000','agent':'sample','role':'testing','model':'RGB','cluster':'zero'} {...
#
_pre_json()
{
sed -n -e '/{/{
s/^[^{]*{/{/
s/}"[^{]*{/} {/g
s/}"/}/
s/'"'"';'"'"'/'"'"','"'"'/g
p
}'
}
if [ $PCP_PLATFORM = freebsd ]
then
# workaround datetime.strftime() in Python that is busted when
# the timezone|timeinfo is, er, Australia/Someplace, for at least
# some parts of the year
#
version=`uname -rs | sed -e 's/FreeBSD //'`
case "$version"
in
14.[0-3]-*)
TZ=UTC; export TZ
echo "Forcing TZ=UTC to dodge FreeBSD bug" >>$seq_full
;;
esac
fi
# real QA test starts here
_save_config $PCP_ETC_DIR/pcp/labels
$sudo rm -rf $PCP_ETC_DIR/pcp/labels/*
_sighup_pmcd || _exit 1
mkdir -p $tmp
echo === check pmrep writing an archive with labels | tee -a $seq_full
pmrep -m -t1 -s2 -o archive -F $tmp/pmrep_sample_colour sample.colour >> $seq_full 2>&1
pmdumplog -e $tmp/pmrep_sample_colour | _filter_pmdumplog |\
grep -e 'Domain.*labels' -e 'Cluster.*labels' -e 'InDom.*labels' | tee -a $seq_full
echo === check pmrep replaying an archive with labels | tee -a $seq_full
pmrep -m -w 1024 -s1 -i "red" -a $tmp/pmrep_sample_colour sample.colour | \
tee -a $seq_full | grep '{' | $PCP_AWK_PROG '{print $1}' | _filter
echo === check pcp2json replaying an archive with labels | tee -a $seq_full
pcp2json -m -s1 -a $tmp/pmrep_sample_colour sample.colour | \
tee -a $seq_full | grep '@labels' | $PCP_AWK_PROG '{print $2}' | \
sed -e s/\'/\"/g -e 's/,$//' -e 's/^"//' -e 's/"$//' | _filter
echo === check pcp2csv replaying an archive with labels | tee -a $seq_full
pcp2csv -m -s1 -a $tmp/pmrep_sample_colour sample.colour \
| tee -a $seq_full \
| _pre_json \
| _filter
echo === check pmrep outputting labels live | tee -a $seq_full
pmrep -m -w 1024 -s1 -i "red" sample.colour \
| tee -a $seq_full \
| grep '{' \
| _filter
echo === check pcp2csv outputting labels live | tee -a $seq_full
pcp2csv -m -s1 sample.colour \
| tee -a $seq_full \
| _pre_json \
| _filter
# success, all done
echo "== done"
status=0
exit
|