blob: d2dab107d284c09ca3f77a55d3e319579283e435 (
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
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
|
download_mars () {
update_url="$1"
only="$2"
test_only="$3"
to_build_id="$4"
to_app_version="$5"
to_display_version="$6"
max_tries=5
try=1
# retrying until we get offered an update
while [ "$try" -le "$max_tries" ]; do
echo "Using $update_url"
# retrying until AUS gives us any response at all
cached_download update.xml "${update_url}"
echo "Got this response:"
cat update.xml
# If the first line after <updates> is </updates> then we have an
# empty snippet. Otherwise we're done
if [ "$(grep -A1 '<updates>' update.xml | tail -1)" != "</updates>" ]; then
break;
fi
echo "Empty response, sleeping"
sleep 5
try=$(($try+1))
done
echo; echo; # padding
update_line=`fgrep "<update " update.xml`
grep_rv=$?
if [ 0 -ne $grep_rv ]; then
echo "TEST-UNEXPECTED-FAIL: no <update/> found for $update_url"
return 1
fi
command=`echo $update_line | sed -e 's/^.*<update //' -e 's:>.*$::' -e 's:\&:\&:g'`
eval "export $command"
if [ ! -z "$to_build_id" -a "$buildID" != "$to_build_id" ]; then
echo "TEST-UNEXPECTED-FAIL: expected buildID $to_build_id does not match actual $buildID"
return 1
fi
if [ ! -z "$to_display_version" -a "$displayVersion" != "$to_display_version" ]; then
echo "TEST-UNEXPECTED-FAIL: expected displayVersion $to_display_version does not match actual $displayVersion"
return 1
fi
if [ ! -z "$to_app_version" -a "$appVersion" != "$to_app_version" ]; then
echo "TEST-UNEXPECTED-FAIL: expected appVersion $to_app_version does not match actual $appVersion"
return 1
fi
mkdir -p update/
if [ -z $only ]; then
only="partial complete"
fi
for patch_type in $only
do
line=`fgrep "patch type=\"$patch_type" update.xml`
grep_rv=$?
if [ 0 -ne $grep_rv ]; then
echo "TEST-UNEXPECTED-FAIL: no $patch_type update found for $update_url"
return 1
fi
command=`echo $line | sed -e 's/^.*<patch //' -e 's:/>.*$::' -e 's:\&:\&:g'`
eval "export $command"
if [ "$test_only" == "1" ]
then
echo "Testing $URL"
curl -s -I -L $URL
return
else
cached_download "update/${patch_type}.mar" "${URL}"
fi
if [ "$?" != 0 ]; then
echo "Could not download $patch_type!"
echo "from: $URL"
fi
actual_size=`perl -e "printf \"%d\n\", (stat(\"update/$patch_type.mar\"))[7]"`
actual_hash=`openssl dgst -$hashFunction update/$patch_type.mar | sed -e 's/^.*= //'`
if [ $actual_size != $size ]; then
echo "TEST-UNEXPECTED-FAIL: $patch_type from $update_url wrong size"
echo "TEST-UNEXPECTED-FAIL: update.xml size: $size"
echo "TEST-UNEXPECTED-FAIL: actual size: $actual_size"
return 1
fi
if [ $actual_hash != $hashValue ]; then
echo "TEST-UNEXPECTED-FAIL: $patch_type from $update_url wrong hash"
echo "TEST-UNEXPECTED-FAIL: update.xml hash: $hashValue"
echo "TEST-UNEXPECTED-FAIL: actual hash: $actual_hash"
return 1
fi
cp update/$patch_type.mar update/update.mar
echo $actual_size > update/$patch_type.size
done
}
|