aboutsummaryrefslogtreecommitdiffstats
path: root/coverage/scripts/04-monitor.sh
blob: cc9453f5d0f5e0f374aba1a195293d1e6c76393e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

$R/bin/afb-client -s -e $WSURL <<EOC
monitor get {"verbosity":true}
monitor get {"apis":true}
monitor set {"verbosity":"debug"}
monitor session {"refresh-token":false}
monitor session {"refresh-token":true}
EOC
> exit 1 fi if [ -z "$2" ];then echo "ERROR: missing filename argument" exit 1 fi curl --silent --show-error -F "filename=$2" -F "data=@$1" http://$PYARTIPROXY_IP:9090/cgi-bin/pyartiproxy.py --output curl.out if [ $? -ne 0 ];then echo "ERROR: with curl" # retry without silent curl --show-error -F "filename=$2" -F "data=@$1" http://$PYARTIPROXY_IP:9090/cgi-bin/pyartiproxy.py --output curl.out fi ARTI_URL=$(grep -E '^http://.*|https://.*' curl.out) echo "===========================" cat curl.out echo "===========================" if [ -z "$ARTI_URL" ];then # No URL something is wrong lava-test-reference artifactory-$2 --result fail exit 1 else lava-test-reference artifactory-$2 --result pass --reference $ARTI_URL fi