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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
#! /bin/sh
# PCP QA Test No. 134
# Check pmGetArchiveEnd for multi-volume logs
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard filters
. ./common.product
. ./common.filter
. ./common.check
trap "$sudo rm -f $tmp.*; exit" 0 1 2 3 15
signal=$PCP_BINADM_DIR/pmsignal
_do_ls()
{
eval `cat $tmp.last`
$PCP_AWK_PROG '
/Cannot/ { print; next }
{ print $9,$5,"bytes" }' \
| sed -e "s;$tmp;MYLOG;" \
| $PCP_AWK_PROG '
BEGIN { l0='$l0'; l1='$l1' }
$1 ~ /\.1$/ { if (l1 == 0) {
if ($2 == 132 || $2 == 808)
print $1,"initial OK"
else
print $1,"initial BAD - ",$2
}
else if (l1 == $2)
print $1,"unchanged"
else {
# change is not deterministic, due to epilogue
# record size
# was truncated to 100 byte boundaries, but
# hostnames like
# fv-az121-446.xhy4bhhdincepo0av04agjzkjc.cx.internal.cloudapp.net
# in CI broke that, so go to 400 byte boundary
# truncation
#
chunk = 400
h = int(($2 - l1) / chunk)
print $1,"incr",h*chunk "-" (h+1)*chunk,"bytes"
}
l1=$2
next
}
$1 ~ /\.0$/ { if (l0 == 0) {
if ($2 > 132 && $2 < 400) {
# V2 archives
print $1,"initial OK"
}
else if ($2 > 808 && $2 <= 1100) {
# V3 archives
# Note on upper limit:
# for hostname bozo.localdomain the .0 size is 1036
# for hostname fv-az1023-380.cxk2etxb0jje1nvwrtfsy0dgjd.bx.internal.cloudapp.net
# the expected .0 size is 1036 - 16 + 65 = 1085 ... add
# some other slop for timezone, even longer hostname
# and we get to 1100
print $1,"initial OK"
}
else
print $1,"initial BAD - ",$2
}
else if (l0 == $2)
print $1,"unchanged"
else if ($2 - l0 == 40) {
# V2 archives
print $1,"incr OK"
}
else if ($2 - l0 == 44) {
# V3 archives
print $1,"incr OK"
}
else
print $1,"incr",$2-l0,"bytes"
l0=$2
next
}
{ print }
END { print "l0=" l0 " l1=" l1 >"'$tmp.last'" }'
echo "end _do_ls $tmp.last: `cat $tmp.last`" >>$seq_full
}
_do_time()
{
tstamp=`wc -l <$tmp.sed | sed -e 's/ *//g'`
tstamp=`expr $tstamp - 2`
sed >$tmp.tmp \
-e "s;$tmp;MYLOG;" \
-e 's/from host .*/from host LOCALHOST/' \
-e "/\"$logger_pid\"/s/$logger_pid/LOGGER_PID/g" \
-e '/pmcd.pmlogger.port/s/value .*/value PORT/' \
-e '/pmcd.pmlogger.host/s/value ".*/value "HOST"/' \
-e '/pmcd.pmlogger.archive/s/value ".*/value "PATH"/' \
-e '/(Log Format Version [0-9][0-9]*)/s/ [23])/ OK)/' \
-e 's/^ Log Vol/ Log Vol/' \
# end
sed -n <$tmp.tmp \
-e 's/.*\([0-9][0-9]:[0-9][0-9]:[0-9][0-9].[0-9][0-9]*[0-9]\).*/\1/p' \
| LC_COLLATE=POSIX sort -u \
| while read time
do
case "$time"
in
*.??????000)
# nsec precision, but usec value
time=`echo "$time" | sed -e 's/\(.*\)000/\1/'`
;;
esac
if grep "/${time}"'0\*/' $tmp.sed >/dev/null
then
:
else
# new timestamp, match optionally with trailing zeroes
echo "s/${time}0*/TIMESTAMP-$tstamp/g" >>$tmp.sed
tstamp=`expr $tstamp + 1`
fi
done
cat $tmp.sed >>$seq_full
sed -f $tmp.sed $tmp.tmp \
| $PCP_AWK_PROG '
$1 ~ /TIMESTAMP/ && NF == 4 { print $1 " " $2 " OFFSET OFFSET"; next }
{ print }'
}
_do_metrics()
{
echo "Metrics in archive:"
grep -E 'sample|pmcd' \
| sed -e 's/.*(//' -e 's/).*//' -e 's/^/ /'
}
# force one pmResult into the archive to trigger log label
# and preamble writing
#
echo "log mandatory on once sampledso.long.ten" >$tmp.config
# real QA test starts here
echo 's/ [A-Z][a-z][a-z] [A-Z][a-z][a-z] .. / month-day /g' >$tmp.sed
echo 's/ [12][0-9][0-9][0-9]$/ year/' >>$tmp.sed
echo "l0=0 l1=0" >$tmp.last
echo "init $tmp.last: `cat $tmp.last`" >>$seq_full
_start_up_pmlogger -Dlog,desperate -L -c $tmp.config -l $tmp.log $tmp
_wait_for_pmlogger $pid $tmp.log || _exit 1
echo
echo "=== logger started, nothing logged ==="
echo "=== logger started, nothing logged ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? 2>&1 | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp 2>&1 | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
pmlc <<End-of-File
connect $pid
log mandatory on once pmcd.control.register["0"]
End-of-File
pmsleep 1.1
echo flush | pmlc $pid >/dev/null
echo
echo "=== first volume, one result ==="
echo "=== first volume, one result ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
pmlc <<End-of-File
connect $pid
new volume
End-of-File
pmsleep 1.1
echo
echo "=== second empty volume ==="
echo "=== second empty volume ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
pmlc <<End-of-File
connect $pid
log mandatory on once pmcd.control.register["0"]
End-of-File
pmsleep 1.1
echo flush | pmlc $pid >/dev/null
echo
echo "=== second volume, one result ==="
echo "=== second volume, one result ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
pmlc <<End-of-File
connect $pid
log mandatory on once {
pmcd.control.debug
pmcd.control.timeout
sample.bin
}
End-of-File
pmsleep 1.1
pmlc <<End-of-File
connect $pid
log mandatory on once pmcd.control.register["0"]
End-of-File
pmsleep 1.1
echo flush | pmlc $pid >/dev/null
echo
echo "=== second volume, second + third result ==="
echo "=== second volume, second + third result ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
$sudo $signal -s TERM $pid
_wait_pmlogger_end $pid || _exit 1
echo
echo "=== logger done ==="
echo "=== logger done ===" >>$seq_full
LC_TIME=POSIX ls -l $tmp.? | tee -a $seq_full | _do_ls
pmdumplog -lt $tmp | tee -a $seq_full | _do_time
pmdumplog $tmp | tee -a $seq_full | _do_metrics
# save the archive files for post-mortem test failure analysis
#
for i in 0 1 meta index
do
cp ${tmp}.$i $seq_full.$i
done
echo >>$seq_full
echo "-- pmlogger.log --" >>$seq_full
cat $tmp.log >>$seq_full
echo >>$seq_full
echo "-- .0 --" >>$seq_full
src/scandata -o -v $tmp.0 >>$seq_full 2>&1
echo "-- .1 --" >>$seq_full
src/scandata -o -v $tmp.1 >>$seq_full 2>&1
echo "-- .meta --" >>$seq_full
src/scanmeta -o -a $tmp.meta >>$seq_full 2>&1
echo "-- .index --" >>$seq_full
pmdumplog -t $tmp >>$seq_full 2>&1
exit 0
|