blob: 2d4302b7524eb885bb66e9e266b92adcbd8ed59e (
plain)
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
|
#!/bin/sh
if [ -z "$PYARTIPROXY_IP" ];then
echo "DEBUG: No PYARTIPROXY_IP variable, using fallbacks"
BAYLIBRE_IP=10.1.1.47
AGLCORELAB_IP=192.168.111.1
if ping -q -W 2 -4 -c 1 $BAYLIBRE_IP ; then
PYARTIPROXY_IP=$BAYLIBRE_IP
fi
if ping -q -W 2 -4 -c 1 $AGLCORELAB_IP ; then
PYARTIPROXY_IP=$AGLCORELAB_IP
fi
if [ -z $PYARTIPROXY_IP ] ; then
echo "ERROR: no PYARTIPROXY_IP"
exit 1
fi
fi
if [ -z "$1" ];then
echo "ERROR: missing path argument"
exit 1
fi
if [ -z "$2" ];then
echo "ERROR: missing filename argument"
exit 1
fi
if [ -d "$1" ];then
echo "ERROR: $1 is a directory"
exit 1
fi
echo "DEBUG: filename=$2 data=$1"
if [ -e "$1" ];then
ls -l "$1"
if [ -s "$1" ];then
echo "DEBUG: $1 exists and not empty"
else
echo "WARNING: $1 is empty"
fi
else
echo "ERROR: data does not exists"
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
|