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
|
#!/bin/sh
# PCP QA Test No. 1696
# Valgrind pmproxy REST API load testing.
# Copyright (c) 2019 Red Hat.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
. ./common.python
_check_python36 # needed by ./src/pmproxy_load_test.python
_check_valgrind
_check_series
_check_key_server_version_offline
_cleanup()
{
cd $here
$sudo rm -rf $tmp $tmp.*
}
status=1 # failure is the default!
username=`id -u -n`
trap "_cleanup; exit \$status" 0 1 2 3 15
# create a pmproxy configuration
cat <<EOF > $tmp.conf
[pmproxy]
pcp.enabled = true
http.enabled = true
[pmseries]
enabled = true
EOF
port=`_find_free_port`
_filter_port()
{
sed \
-e "s/ FD $port / FD PORT /g" \
-e '/PORT ipv6 /d' \
# end
}
# real QA test starts here
mkdir -p $tmp.pmproxy/pmproxy
PCP_RUN_DIR=$tmp.pmproxy; export PCP_RUN_DIR
PCP_TMP_DIR=$tmp.pmproxy; export PCP_TMP_DIR
$valgrind_clean_assert pmproxy -f -p $port -U $username -l- -c $tmp.conf >$tmp.valout 2>$tmp.valerr &
pid=$!
echo "valgrind pid: $pid" >>$seq_full
echo "pmproxy port: $port" >>$seq_full
# valgrind takes awhile to fire up
i=0
while [ $i -lt 40 ]
do
$PCP_BINADM_DIR/telnet-probe -c localhost $port && break
sleep 1
i=`expr $i + 1`
done
if $PCP_BINADM_DIR/telnet-probe -c localhost $port
then
echo "Startup took $i secs" >>$seq_full
else
echo "Arrgh: valgrind failed start pmproxy and get port $port ready after 30 secs"
exit
fi
date >>$seq_full
echo "=== pmproxy load test ===" | tee -a $seq_full
./src/pmproxy_load_test.python $port 100
echo "=== check pmproxy is running ==="
pminfo -v -h localhost@localhost:$port hinv.ncpu
if [ $? -eq 0 ]; then
echo "pmproxy check passed"
else
echo "pmproxy check failed"
fi
# valgrind takes awhile to shutdown too
pmsignal $pid
_wait_process_end $pid
echo "=== valgrind stdout ===" | tee -a $seq_full
cat $tmp.valout | _filter_valgrind
echo "=== valgrind stderr ===" | tee -a $seq_full
cat $tmp.valerr | _filter_pmproxy_log | grep -v "Cannot connect to key server" | _filter_port
# success, all done
status=0
exit
|