blob: 10b809d90b2ced2a9152832e9daf098c3220561f [file] [log] [blame]
Joe Onorato4a64bde2009-06-25 23:53:29 -04001#!/bin/bash
2
Omari Stephens1f808c62009-08-03 20:23:55 -07003# Copyright (C) 2009 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Omari Stephens0cfeb252009-08-11 21:44:21 -070017# uncomment for debugging
18#export DRY_RUN="echo"
19source test_backup_common.sh
Omari Stephens1f808c62009-08-03 20:23:55 -070020
Omari Stephens0cfeb252009-08-11 21:44:21 -070021# wipe prior backup data for packages
22b_pkgs=$(a shell dumpsys backup | \
23 ruby -ne 'print($1+" ") if $_ =~ /^\s*ApplicationInfo\S+ (.+?)\}/')
Omari Stephens1f808c62009-08-03 20:23:55 -070024
Omari Stephens0cfeb252009-08-11 21:44:21 -070025for pkg in $b_pkgs; do
26 a shell bmgr wipe "$pkg"
Omari Stephens864ed1a2009-08-06 15:36:34 -070027done
28
Omari Stephens864ed1a2009-08-06 15:36:34 -070029echo 'Waiting 5 seconds for things to settle...'
30sleep 5
31
Omari Stephens1f808c62009-08-03 20:23:55 -070032# run adb as root so we can poke at com.android.backuptest's data
Omari Stephens0cfeb252009-08-11 21:44:21 -070033adb_root
Omari Stephens1f808c62009-08-03 20:23:55 -070034
35# show commands as we go
36set -x
37
Joe Onorato4a64bde2009-06-25 23:53:29 -040038# set the transport
Omari Stephens0cfeb252009-08-11 21:44:21 -070039a shell bmgr transport com.google.android.backup/.BackupTransportService
Joe Onorato4a64bde2009-06-25 23:53:29 -040040
41# load up the three files
Omari Stephens0cfeb252009-08-11 21:44:21 -070042a shell \
Omari Stephens864ed1a2009-08-06 15:36:34 -070043 "rm /data/data/com.android.backuptest/files/file.txt ; \
44 rm /data/data/com.android.backuptest/files/another_file.txt ; \
45 rm /data/data/com.android.backuptest/files/empty.txt ; \
Omari Stephens1f808c62009-08-03 20:23:55 -070046 mkdir /data/data/com.android.backuptest ; \
47 mkdir /data/data/com.android.backuptest/files ; \
48 mkdir /data/data/com.android.backuptest/shared_prefs ; \
Omari Stephens864ed1a2009-08-06 15:36:34 -070049 echo -n \"<map><int name=\\\"pref\\\" value=\\\"1\\\" /></map>\" \
50 > /data/data/com.android.backuptest/shared_prefs/raw.xml ; \
Omari Stephens1f808c62009-08-03 20:23:55 -070051 echo -n first file > /data/data/com.android.backuptest/files/file.txt ; \
52 echo -n asdf > /data/data/com.android.backuptest/files/another_file.txt ; \
Omari Stephens1f808c62009-08-03 20:23:55 -070053 echo -n "" > /data/data/com.android.backuptest/files/empty.txt ; \
Omari Stephens864ed1a2009-08-06 15:36:34 -070054 date >> /data/data/com.android.backuptest/files/3.txt ; \
Joe Onorato4a64bde2009-06-25 23:53:29 -040055"
Omari Stephens864ed1a2009-08-06 15:36:34 -070056# echo -n 3 > /data/data/com.android.backuptest/files/3.txt ; \
Joe Onorato4a64bde2009-06-25 23:53:29 -040057
58# say that the data has changed
Omari Stephens0cfeb252009-08-11 21:44:21 -070059a shell bmgr backup com.android.backuptest
Joe Onorato4a64bde2009-06-25 23:53:29 -040060
61# run the backup
Omari Stephens0cfeb252009-08-11 21:44:21 -070062a shell bmgr run
Joe Onoratodc355a92009-06-26 14:45:25 -040063