blob: 181cd5c4812827753b9249ce4924b8b153c826e0 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#!/bin/bash
2#
3# A test suite for applypatch. Run in a client where you have done
4# envsetup, choosecombo, etc.
5#
6# DO NOT RUN THIS ON A DEVICE YOU CARE ABOUT. It will mess up your
7# system partition.
8#
9#
10# TODO: find some way to get this run regularly along with the rest of
11# the tests.
12
13EMULATOR_PORT=5580
14DATA_DIR=$ANDROID_BUILD_TOP/build/tools/applypatch/testdata
15
16# This must be the filename that applypatch uses for its copies.
17CACHE_TEMP_SOURCE=/cache/saved.file
18
19# Put all binaries and files here. We use /cache because it's a
20# temporary filesystem in the emulator; it's created fresh each time
21# the emulator starts.
22WORK_DIR=/system
23
24# partition that WORK_DIR is located on, without the leading slash
25WORK_FS=system
26
27# ------------------------
28
29tmpdir=$(mktemp -d)
30
31emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
32pid_emulator=$!
33
34ADB="adb -s emulator-$EMULATOR_PORT "
35
36echo "emulator is $pid_emulator; waiting for startup"
37$ADB wait-for-device
38echo "device is available"
39$ADB remount
40# free up enough space on the system partition for the test to run.
41$ADB shell rm -r /system/media
42
43# run a command on the device; exit with the exit status of the device
44# command.
45run_command() {
46 $ADB shell "$@" \; echo \$? | awk '{if (b) {print a}; a=$0; b=1} END {exit a}'
47}
48
49testname() {
50 echo
51 echo "$1"...
52 testname="$1"
53}
54
55fail() {
56 echo
57 echo FAIL: $testname
58 echo
59 kill $pid_emulator
60 exit 1
61}
62
63sha1() {
64 sha1sum $1 | awk '{print $1}'
65}
66
67free_space() {
68 run_command df | awk "/$1/ {print gensub(/K/, \"\", \"g\", \$6)}"
69}
70
71
72$ADB push $ANDROID_PRODUCT_OUT/system/bin/applypatch $WORK_DIR/applypatch
73
74BAD1_SHA1=$(printf "%040x" $RANDOM)
75BAD2_SHA1=$(printf "%040x" $RANDOM)
76OLD_SHA1=$(sha1 $DATA_DIR/old.file)
77NEW_SHA1=$(sha1 $DATA_DIR/new.file)
78NEW_SIZE=$(stat -c %s $DATA_DIR/new.file)
79
80# --------------- basic execution ----------------------
81
82testname "usage message"
83run_command $WORK_DIR/applypatch && fail
84
85testname "display license"
86run_command $WORK_DIR/applypatch -l | grep -q -i copyright || fail
87
88
89# --------------- check mode ----------------------
90
91$ADB push $DATA_DIR/old.file $WORK_DIR
92
93testname "check mode single"
94run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail
95
96testname "check mode multiple"
97run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail
98
99testname "check mode failure"
100run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD2_SHA1 $BAD1_SHA1 && fail
101
102$ADB push $DATA_DIR/old.file $CACHE_TEMP_SOURCE
103# put some junk in the old file
104run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail
105
106testname "check mode cache (corrupted) single"
107run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail
108
109testname "check mode cache (corrupted) multiple"
110run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail
111
112testname "check mode cache (corrupted) failure"
113run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD2_SHA1 $BAD1_SHA1 && fail
114
115# remove the old file entirely
116run_command rm $WORK_DIR/old.file
117
118testname "check mode cache (missing) single"
119run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail
120
121testname "check mode cache (missing) multiple"
122run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail
123
124testname "check mode cache (missing) failure"
125run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD2_SHA1 $BAD1_SHA1 && fail
126
127
128# --------------- apply patch ----------------------
129
130$ADB push $DATA_DIR/old.file $WORK_DIR
131$ADB push $DATA_DIR/patch.bsdiff $WORK_DIR
132
133# Check that the partition has enough space to apply the patch without
134# copying. If it doesn't, we'll be testing the low-space condition
135# when we intend to test the not-low-space condition.
136testname "apply patches (with enough space)"
137free_kb=$(free_space $WORK_FS)
138echo "${free_kb}kb free on /$WORK_FS."
139if (( free_kb * 1024 < NEW_SIZE * 3 / 2 )); then
140 echo "Not enough space on /$WORK_FS to patch test file."
141 echo
142 echo "This doesn't mean that applypatch is necessarily broken;"
143 echo "just that /$WORK_FS doesn't have enough free space to"
144 echo "properly run this test."
145 exit 1
146fi
147
148testname "apply bsdiff patch"
149run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
150$ADB pull $WORK_DIR/old.file $tmpdir/patched
151diff -q $DATA_DIR/new.file $tmpdir/patched || fail
152
153testname "reapply bsdiff patch"
154run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
155$ADB pull $WORK_DIR/old.file $tmpdir/patched
156diff -q $DATA_DIR/new.file $tmpdir/patched || fail
157
158
159# --------------- apply patch with low space on /system ----------------------
160
161$ADB push $DATA_DIR/old.file $WORK_DIR
162$ADB push $DATA_DIR/patch.bsdiff $WORK_DIR
163
164free_kb=$(free_space $WORK_FS)
165echo "${free_kb}kb free on /$WORK_FS; we'll soon fix that."
166echo run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail
167run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail
168free_kb=$(free_space $WORK_FS)
169echo "${free_kb}kb free on /$WORK_FS now."
170
171testname "apply bsdiff patch with low space"
172run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
173$ADB pull $WORK_DIR/old.file $tmpdir/patched
174diff -q $DATA_DIR/new.file $tmpdir/patched || fail
175
176testname "reapply bsdiff patch with low space"
177run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
178$ADB pull $WORK_DIR/old.file $tmpdir/patched
179diff -q $DATA_DIR/new.file $tmpdir/patched || fail
180
181# --------------- apply patch with low space on /system and /cache ----------------------
182
183$ADB push $DATA_DIR/old.file $WORK_DIR
184$ADB push $DATA_DIR/patch.bsdiff $WORK_DIR
185
186free_kb=$(free_space $WORK_FS)
187echo "${free_kb}kb free on /$WORK_FS"
188
189run_command mkdir /cache/subdir
190run_command 'echo > /cache/subdir/a.file'
191run_command 'echo > /cache/a.file'
192run_command mkdir /cache/recovery /cache/recovery/otatest
193run_command 'echo > /cache/recovery/otatest/b.file'
194run_command "echo > $CACHE_TEMP_SOURCE"
195free_kb=$(free_space cache)
196echo "${free_kb}kb free on /cache; we'll soon fix that."
197run_command dd if=/dev/zero of=/cache/bloat_small.dat count=128 bs=1024 || fail
198run_command dd if=/dev/zero of=/cache/bloat_large.dat count=$((free_kb-640)) bs=1024 || fail
199free_kb=$(free_space cache)
200echo "${free_kb}kb free on /cache now."
201
202testname "apply bsdiff patch with low space, full cache, can't delete enough"
203$ADB shell 'cat >> /cache/bloat_large.dat' & open_pid=$!
204echo "open_pid is $open_pid"
205
206# size check should fail even though it deletes some stuff
207run_command $WORK_DIR/applypatch -s $NEW_SIZE && fail
208run_command ls /cache/bloat_small.dat && fail # was deleted
209run_command ls /cache/a.file && fail # was deleted
210run_command ls /cache/recovery/otatest/b.file && fail # was deleted
211run_command ls /cache/bloat_large.dat || fail # wasn't deleted because it was open
212run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir
213run_command ls $CACHE_TEMP_SOURCE || fail # wasn't deleted because it's the source file copy
214
215# should fail; not enough files can be deleted
216run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff && fail
217run_command ls /cache/bloat_large.dat || fail # wasn't deleted because it was open
218run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir
219run_command ls $CACHE_TEMP_SOURCE || fail # wasn't deleted because it's the source file copy
220
221kill $open_pid # /cache/bloat_large.dat is no longer open
222
223testname "apply bsdiff patch with low space, full cache, can delete enough"
224
225# should succeed after deleting /cache/bloat_large.dat
226run_command $WORK_DIR/applypatch -s $NEW_SIZE || fail
227run_command ls /cache/bloat_large.dat && fail # was deleted
228run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir
229run_command ls $CACHE_TEMP_SOURCE || fail # wasn't deleted because it's the source file copy
230
231# should succeed
232run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
233$ADB pull $WORK_DIR/old.file $tmpdir/patched
234diff -q $DATA_DIR/new.file $tmpdir/patched || fail
235run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir
236run_command ls $CACHE_TEMP_SOURCE && fail # was deleted because patching overwrote it, then deleted it
237
238# --------------- apply patch from cache ----------------------
239
240$ADB push $DATA_DIR/old.file $CACHE_TEMP_SOURCE
241# put some junk in the old file
242run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail
243
244testname "apply bsdiff patch from cache (corrupted source) with low space"
245run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
246$ADB pull $WORK_DIR/old.file $tmpdir/patched
247diff -q $DATA_DIR/new.file $tmpdir/patched || fail
248
249$ADB push $DATA_DIR/old.file $CACHE_TEMP_SOURCE
250# remove the old file entirely
251run_command rm $WORK_DIR/old.file
252
253testname "apply bsdiff patch from cache (missing source) with low space"
254run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
255$ADB pull $WORK_DIR/old.file $tmpdir/patched
256diff -q $DATA_DIR/new.file $tmpdir/patched || fail
257
258
259# --------------- cleanup ----------------------
260
261# not necessary if we're about to kill the emulator, but nice for
262# running on real devices or already-running emulators.
263run_command rm /cache/bloat*.dat $WORK_DIR/bloat.dat $CACHE_TEMP_SOURCE $WORK_DIR/old.file $WORK_DIR/patch.xdelta3 $WORK_DIR/patch.bsdiff $WORK_DIR/applypatch
264
265kill $pid_emulator
266
267rm -rf $tmpdir
268
269echo
270echo PASS
271echo
272