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
|
#!/bin/sh
# PCP QA Test No. 1837
# Exercise PMWEBAPI handling server OPTIONS and TRACE.
#
# Copyright (c) 2020 Red Hat. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
_check_series
which curl >/dev/null 2>&1 || _notrun "No curl binary installed"
curl --request-target 2>&1 | grep -q 'requires parameter' || \
_notrun "Test requires curl --request-target option"
status=1 # failure is the default!
trap "cd $here; _cleanup; exit \$status" 0 1 2 3 15
pmproxy_was_running=false
[ -f $PCP_RUN_DIR/pmproxy.pid ] && pmproxy_was_running=true
echo "pmproxy_was_running=$pmproxy_was_running" >>$seq_full
_cleanup()
{
if $pmproxy_was_running
then
echo "Restart pmproxy ..." >>$seq_full
_service pmproxy restart >>$seq_full 2>&1
_wait_for_pmproxy
else
echo "Stopping pmproxy ..." >>$seq_full
_service pmproxy stop >>$seq_full 2>&1
fi
$sudo rm -f $tmp.*
}
# real QA test starts here
if ! _service pmproxy restart >/dev/null 2>&1; then _exit 1; fi
echo; echo "=== OPTIONS"
curl -isS -X OPTIONS --request-target "*" http://localhost:44322 \
2>&1 | tee -a $seq_full | _webapi_header_filter
echo; echo "=== TRACE"
curl -isS -X TRACE http://localhost:44322 \
2>&1 | tee -a $seq_full | _webapi_header_filter
echo >>$seq_full
echo "=== pmproxy log ===" >>$seq_full
cat $PCP_LOG_DIR/pmproxy/pmproxy.log >>$seq_full
# success, all done
status=0
exit
|