summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge change 5485 into donutAndroid (Google) Code Review2009-06-291-0/+13
|\ \ | | | | | | | | | | | | * changes: cdma sms is91 support
| * | cdma sms is91 supportTammo Spalink2009-06-281-0/+13
| | |
* | | Merge change 5359 into donutAndroid (Google) Code Review2009-06-291-0/+7
|\ \ \ | |_|/ |/| | | | | | | | * changes: fix potential string index problems in PhoneNumberUtils.numberToCalledPartyBCDHelper
| * | fix potential string index problems in ↵Tammo Spalink2009-06-291-0/+7
| |/ | | | | | | | | | | PhoneNumberUtils.numberToCalledPartyBCDHelper addresses http://buganizer/issue?id=1489784
* | Merge change 5645 into donutAndroid (Google) Code Review2009-06-296-150/+288
|\ \ | |/ |/| | | | | * changes: Added a new operation mode where user can launch all tests under a folder from test app ui.
| * Added a new operation mode where user can launch all tests under a folder ↵Guang Zhu2009-06-296-150/+288
| | | | | | | | from test app ui.
* | Merge change 5192 into donutAndroid (Google) Code Review2009-06-262-8/+31
|\ \ | | | | | | | | | | | | * changes: make BitwiseInputStream.read return int
| * | make BitwiseInputStream.read return intTammo Spalink2009-06-242-8/+31
| | | | | | | | | | | | | | | Keep the maximum access 8 bits to avoid dealing with endianness issues.
* | | Merge change 5483 into donutAndroid (Google) Code Review2009-06-266-0/+79
|\ \ \ | | | | | | | | | | | | | | | | * changes: Expand support for different screen sizes.
| * | | Expand support for different screen sizes.Dianne Hackborn2009-06-266-0/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Applications can now declare that they support small, normal, or large screens. Resource selection can also be done based on these sizes. By default, pre-Donut apps are false for small and large, and Donut or later apps are assumed to support all sizes. In either case they can use <supports-screens> in their manifest to declare what they actually support.
* | | | Add a test for SharedPreferencesBackupHelperJoe Onorato2009-06-263-6/+20
|/ / / | | | | | | | | | | | | (which nobody had ever tested. I like it when stuff just works the first time).
* | | Test that we correctly back up an empty file.Joe Onorato2009-06-263-1/+4
| | | | | | | | | | | | | | | (It turns out that we do. It didn't used to work, I'm not sure what changed)
* | | Add some helpful tests scripts for backup and make bmgr restore wait until ↵Joe Onorato2009-06-253-1/+67
| | | | | | | | | | | | the backup is done.
* | | Make the BackupHelperDispatcher properly handle multiple helpers.Joe Onorato2009-06-251-0/+1
| |/ |/|
* | Merge change 4878 into donutAndroid (Google) Code Review2009-06-231-0/+2
|\ \ | |/ |/| | | | | * changes: Add smalltest annotation to HardwareServicePermissionTest.
| * Add smalltest annotation to HardwareServicePermissionTest.Brett Chabot2009-06-191-0/+2
| |
* | Pass the originating app's versionCode along with a restore setChristopher Tate2009-06-221-1/+2
| | | | | | | | | | | | | | This change amends the doRestore() / onRestore() interface to backup agents to provide the integer android:versionCode of the app that stored the backup set. This should help agents figure out how to handle whatever historical data set they're handed at restore time.
* | Helper API cleanup. Allows multiple helpers to function,Joe Onorato2009-06-222-45/+11
| | | | | | | | | | because they'll always go in the same order, and this lets us not have to write headers to keep them paired.
* | Remove test for SearchManager activity context restriction.Bjorn Bringert2009-06-221-20/+0
| | | | | | | | | | This restriction was removed in https://android-git.corp.google.com/g/4908 see http://b/issue?id=1926254
* | Make all static methods in SearchManager non-static.Bjorn Bringert2009-06-221-6/+8
|/ | | | | | | They were only static because of a now removed restriction that only activity contexts could instantiate SearchManager. This only changes hidden APIs, but all users of the changed methods must be updated to use them non-statically before this is submitted.
* Merge change 4834 into donutAndroid (Google) Code Review2009-06-191-1/+1
|\ | | | | | | | | * changes: Fix a bug where wrong variable was used for comparison.
| * Fix a bug where wrong variable was used for comparison.Guang Zhu2009-06-191-1/+1
| |
* | Add permission tests for IHardwareService.Brett Chabot2009-06-191-0/+134
|/
* Remove deprecated api. Aptly rename freeStorageWithIntent to freeStorage.Suchi Amalapurapu2009-06-191-1/+1
|
* Make RestoreHelper and friends also write out the snapshot state.Joe Onorato2009-06-182-2/+7
|
* backup fixes:Joe Onorato2009-06-172-7/+23
| | | | | | - BackupTestAgent calls the DispatchHelper - Make BackupAgent.onRestore take a BackupDataInput, not just a generic ParcelFileDescriptor.
* Merge change 4524 into donutAndroid (Google) Code Review2009-06-171-3/+57
|\ | | | | | | | | * changes: FileRestoreHelper and RestoreHelperDispatcher work.
| * FileRestoreHelper and RestoreHelperDispatcher work.Joe Onorato2009-06-171-3/+57
| |
* | Merge change 4489 into donutAndroid (Google) Code Review2009-06-171-0/+85
|\ \ | |/ |/| | | | | * changes: Add SmsManager permission test.
| * Add SmsManager permission test.Brett Chabot2009-06-171-0/+85
| |
* | add feedback test with gsm7bit special case charactersTammo Spalink2009-06-171-0/+3
|/
* Merge change 4234 into donutAndroid (Google) Code Review2009-06-153-0/+641
|\ | | | | | | | | * changes: Implement permission test for activity, window, service manager.
| * Implement permission test for activity, window, service manager.Dianne Hackborn2009-06-153-0/+641
| | | | | | | | | | | | This also includes some changes to the window manager permission checks. Almost all of these are to make it most testable (through an exception on a permission failure), though there is one permission check that needed to be added: updateOrientationFromAppTokens().
* | Merge change 4224 into donutAndroid (Google) Code Review2009-06-152-13/+54
|\ \ | | | | | | | | | | | | * changes: Add test for GServices write permission, and remove dummy placeholder framework permission test.
| * | Add test for GServices write permission, and remove dummy placeholder ↵Brett Chabot2009-06-152-13/+54
| | | | | | | | | | | | framework permission test.
* | | More tests to check permissions in PackageManager api's are enforcedSuchi Amalapurapu2009-06-151-8/+100
|/ /
* | Add tests to check permissions in PackageManager api'sSuchi Amalapurapu2009-06-151-0/+49
|/
* Merge change 4184 into donutAndroid (Google) Code Review2009-06-153-0/+60
|\ | | | | | | | | * changes: Add permission test structure for private framework permissions.
| * Add permission test structure for private framework permissions.Brett Chabot2009-06-153-0/+60
| |
* | Merge change 4182 into donutAndroid (Google) Code Review2009-06-151-4/+13
|\ \ | | | | | | | | | | | | * changes: Add more data to reliability test report, includes min, max, std, run data.
| * | Add more data to reliability test report, includes min, max, std, run data.Guang Zhu2009-06-151-4/+13
| | |
* | | Merge change 4106 into donutAndroid (Google) Code Review2009-06-151-18/+23
|\ \ \ | |/ / | | | | | | | | | * changes: Adjust order of file/section list in output diff
| * | Adjust order of file/section list in output diffGuang Zhu2009-06-121-18/+23
| | |
* | | Run search dialog in the system process.Bjorn Bringert2009-06-156-39/+312
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | Fixes http://b/issue?id=1905863 This is needed to address two security issues with global search: http://b/issue?id=1871088 (Apps can read content providers through GlobalSearch) http://b/issue?id=1819627 (Apps can use GlobalSearch to launch arbirtrary intents) This also fixes http://b/issue?id=1693153 (SearchManager.OnDismissListener never gets called) To fix the security issues, GlobalSearch also needs to require a non-app permission to access its content provider and launch intents.
* | Add RestoreFileHelper, BackupDataInput, and add java wrappers for the ↵Joe Onorato2009-06-121-1/+2
|/ | | | methods on BackupDataOutput.
* Merge changes 3953,3954 into donutAndroid (Google) Code Review2009-06-111-0/+2
|\ | | | | | | | | | | * changes: Make the file backup helper not crash if a file you requested can't be stated. This means you don't need to know if the files you are backing up exist or not -- we'll figure it out for you. Fix SharedPrefsBackupHelper so it doesn't hard code the paths to the files.
| * Make the file backup helper not crash if a file you requestedJoe Onorato2009-06-111-0/+1
| | | | | | | | | | can't be stated. This means you don't need to know if the files you are backing up exist or not -- we'll figure it out for you.
| * Fix SharedPrefsBackupHelper so it doesn't hard code the paths to the files.Joe Onorato2009-06-111-0/+1
| | | | | | | | This took quite a bit of refactoring.
* | Update control files (pass/fail/nontext/crash) to results from CRB45Guang Zhu2009-06-113-374/+4275
|/
* Merge change 3761 into donutAndroid (Google) Code Review2009-06-104-60/+148
|\ | | | | | | | | * changes: Added support to record page load time for each url.