The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | #!/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 | |
| 13 | EMULATOR_PORT=5580 |
| 14 | DATA_DIR=$ANDROID_BUILD_TOP/build/tools/applypatch/testdata |
| 15 | |
| 16 | # This must be the filename that applypatch uses for its copies. |
| 17 | CACHE_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. |
| 22 | WORK_DIR=/system |
| 23 | |
| 24 | # partition that WORK_DIR is located on, without the leading slash |
| 25 | WORK_FS=system |
| 26 | |
| 27 | # ------------------------ |
| 28 | |
| 29 | tmpdir=$(mktemp -d) |
| 30 | |
| 31 | emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT & |
| 32 | pid_emulator=$! |
| 33 | |
| 34 | ADB="adb -s emulator-$EMULATOR_PORT " |
| 35 | |
| 36 | echo "emulator is $pid_emulator; waiting for startup" |
| 37 | $ADB wait-for-device |
| 38 | echo "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. |
| 45 | run_command() { |
| 46 | $ADB shell "$@" \; echo \$? | awk '{if (b) {print a}; a=$0; b=1} END {exit a}' |
| 47 | } |
| 48 | |
| 49 | testname() { |
| 50 | echo |
| 51 | echo "$1"... |
| 52 | testname="$1" |
| 53 | } |
| 54 | |
| 55 | fail() { |
| 56 | echo |
| 57 | echo FAIL: $testname |
| 58 | echo |
| 59 | kill $pid_emulator |
| 60 | exit 1 |
| 61 | } |
| 62 | |
| 63 | sha1() { |
| 64 | sha1sum $1 | awk '{print $1}' |
| 65 | } |
| 66 | |
| 67 | free_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 | |
| 74 | BAD1_SHA1=$(printf "%040x" $RANDOM) |
| 75 | BAD2_SHA1=$(printf "%040x" $RANDOM) |
| 76 | OLD_SHA1=$(sha1 $DATA_DIR/old.file) |
| 77 | NEW_SHA1=$(sha1 $DATA_DIR/new.file) |
| 78 | NEW_SIZE=$(stat -c %s $DATA_DIR/new.file) |
| 79 | |
| 80 | # --------------- basic execution ---------------------- |
| 81 | |
| 82 | testname "usage message" |
| 83 | run_command $WORK_DIR/applypatch && fail |
| 84 | |
| 85 | testname "display license" |
| 86 | run_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 | |
| 93 | testname "check mode single" |
| 94 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail |
| 95 | |
| 96 | testname "check mode multiple" |
| 97 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail |
| 98 | |
| 99 | testname "check mode failure" |
| 100 | run_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 |
| 104 | run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail |
| 105 | |
| 106 | testname "check mode cache (corrupted) single" |
| 107 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail |
| 108 | |
| 109 | testname "check mode cache (corrupted) multiple" |
| 110 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail |
| 111 | |
| 112 | testname "check mode cache (corrupted) failure" |
| 113 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD2_SHA1 $BAD1_SHA1 && fail |
| 114 | |
| 115 | # remove the old file entirely |
| 116 | run_command rm $WORK_DIR/old.file |
| 117 | |
| 118 | testname "check mode cache (missing) single" |
| 119 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $OLD_SHA1 || fail |
| 120 | |
| 121 | testname "check mode cache (missing) multiple" |
| 122 | run_command $WORK_DIR/applypatch -c $WORK_DIR/old.file $BAD1_SHA1 $OLD_SHA1 $BAD2_SHA1|| fail |
| 123 | |
| 124 | testname "check mode cache (missing) failure" |
| 125 | run_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. |
| 136 | testname "apply patches (with enough space)" |
| 137 | free_kb=$(free_space $WORK_FS) |
| 138 | echo "${free_kb}kb free on /$WORK_FS." |
| 139 | if (( 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 |
| 146 | fi |
| 147 | |
| 148 | testname "apply bsdiff patch" |
| 149 | run_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 |
| 151 | diff -q $DATA_DIR/new.file $tmpdir/patched || fail |
| 152 | |
| 153 | testname "reapply bsdiff patch" |
| 154 | run_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 |
| 156 | diff -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 | |
| 164 | free_kb=$(free_space $WORK_FS) |
| 165 | echo "${free_kb}kb free on /$WORK_FS; we'll soon fix that." |
| 166 | echo run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail |
| 167 | run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail |
| 168 | free_kb=$(free_space $WORK_FS) |
| 169 | echo "${free_kb}kb free on /$WORK_FS now." |
| 170 | |
| 171 | testname "apply bsdiff patch with low space" |
| 172 | run_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 |
| 174 | diff -q $DATA_DIR/new.file $tmpdir/patched || fail |
| 175 | |
| 176 | testname "reapply bsdiff patch with low space" |
| 177 | run_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 |
| 179 | diff -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 | |
| 186 | free_kb=$(free_space $WORK_FS) |
| 187 | echo "${free_kb}kb free on /$WORK_FS" |
| 188 | |
| 189 | run_command mkdir /cache/subdir |
| 190 | run_command 'echo > /cache/subdir/a.file' |
| 191 | run_command 'echo > /cache/a.file' |
| 192 | run_command mkdir /cache/recovery /cache/recovery/otatest |
| 193 | run_command 'echo > /cache/recovery/otatest/b.file' |
| 194 | run_command "echo > $CACHE_TEMP_SOURCE" |
| 195 | free_kb=$(free_space cache) |
| 196 | echo "${free_kb}kb free on /cache; we'll soon fix that." |
| 197 | run_command dd if=/dev/zero of=/cache/bloat_small.dat count=128 bs=1024 || fail |
| 198 | run_command dd if=/dev/zero of=/cache/bloat_large.dat count=$((free_kb-640)) bs=1024 || fail |
| 199 | free_kb=$(free_space cache) |
| 200 | echo "${free_kb}kb free on /cache now." |
| 201 | |
| 202 | testname "apply bsdiff patch with low space, full cache, can't delete enough" |
| 203 | $ADB shell 'cat >> /cache/bloat_large.dat' & open_pid=$! |
| 204 | echo "open_pid is $open_pid" |
| 205 | |
| 206 | # size check should fail even though it deletes some stuff |
| 207 | run_command $WORK_DIR/applypatch -s $NEW_SIZE && fail |
| 208 | run_command ls /cache/bloat_small.dat && fail # was deleted |
| 209 | run_command ls /cache/a.file && fail # was deleted |
| 210 | run_command ls /cache/recovery/otatest/b.file && fail # was deleted |
| 211 | run_command ls /cache/bloat_large.dat || fail # wasn't deleted because it was open |
| 212 | run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir |
| 213 | run_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 |
| 216 | run_command $WORK_DIR/applypatch $WORK_DIR/old.file $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff && fail |
| 217 | run_command ls /cache/bloat_large.dat || fail # wasn't deleted because it was open |
| 218 | run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir |
| 219 | run_command ls $CACHE_TEMP_SOURCE || fail # wasn't deleted because it's the source file copy |
| 220 | |
| 221 | kill $open_pid # /cache/bloat_large.dat is no longer open |
| 222 | |
| 223 | testname "apply bsdiff patch with low space, full cache, can delete enough" |
| 224 | |
| 225 | # should succeed after deleting /cache/bloat_large.dat |
| 226 | run_command $WORK_DIR/applypatch -s $NEW_SIZE || fail |
| 227 | run_command ls /cache/bloat_large.dat && fail # was deleted |
| 228 | run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir |
| 229 | run_command ls $CACHE_TEMP_SOURCE || fail # wasn't deleted because it's the source file copy |
| 230 | |
| 231 | # should succeed |
| 232 | run_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 |
| 234 | diff -q $DATA_DIR/new.file $tmpdir/patched || fail |
| 235 | run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir |
| 236 | run_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 |
| 242 | run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail |
| 243 | |
| 244 | testname "apply bsdiff patch from cache (corrupted source) with low space" |
| 245 | run_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 |
| 247 | diff -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 |
| 251 | run_command rm $WORK_DIR/old.file |
| 252 | |
| 253 | testname "apply bsdiff patch from cache (missing source) with low space" |
| 254 | run_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 |
| 256 | diff -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. |
| 263 | run_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 | |
| 265 | kill $pid_emulator |
| 266 | |
| 267 | rm -rf $tmpdir |
| 268 | |
| 269 | echo |
| 270 | echo PASS |
| 271 | echo |
| 272 | |