diff options
Diffstat (limited to 'core/tests/hosttests')
7 files changed, 350 insertions, 0 deletions
diff --git a/core/tests/hosttests/Android.mk b/core/tests/hosttests/Android.mk new file mode 100644 index 0000000..0001201 --- /dev/null +++ b/core/tests/hosttests/Android.mk @@ -0,0 +1,32 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +#LOCAL_TEST_TYPE := hostSideOnly + +# Only compile source java files in this apk. +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +LOCAL_MODULE := FrameworkCoreHostTests + +LOCAL_JAVA_LIBRARIES := hosttestlib ddmlib junit + +include $(BUILD_HOST_JAVA_LIBRARY) + +# Build the test APKs using their own makefiles +include $(call all-makefiles-under,$(LOCAL_PATH)) + diff --git a/core/tests/hosttests/README b/core/tests/hosttests/README new file mode 100644 index 0000000..d3bdb83 --- /dev/null +++ b/core/tests/hosttests/README @@ -0,0 +1,6 @@ +This dir contains tests which run on a host machine, and test aspects of +package install etc via adb. + +To run, do: +runtest framework-core-host + diff --git a/core/tests/hosttests/src/android/content/pm/PackageManagerHostTests.java b/core/tests/hosttests/src/android/content/pm/PackageManagerHostTests.java new file mode 100644 index 0000000..9c9d777 --- /dev/null +++ b/core/tests/hosttests/src/android/content/pm/PackageManagerHostTests.java @@ -0,0 +1,216 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.content.pm; + +import com.android.ddmlib.IShellOutputReceiver; +import com.android.ddmlib.Log; +import com.android.ddmlib.MultiLineReceiver; +import com.android.ddmlib.SyncService; +import com.android.ddmlib.SyncService.ISyncProgressMonitor; +import com.android.ddmlib.SyncService.SyncResult; +import com.android.hosttest.DeviceTestCase; +import com.android.hosttest.DeviceTestSuite; + +import java.io.File; +import java.io.IOException; + +import junit.framework.Test; + +/** + * Set of tests that verify host side install cases + */ +public class PackageManagerHostTests extends DeviceTestCase { + + // testPushAppPrivate constants + // these constants must match values defined in test-apps/SimpleTestApp + private static final String SIMPLE_APK = "SimpleTestApp.apk"; + private static final String SIMPLE_PKG = "com.android.framework.simpletestapp"; + // TODO: get this value from Android Environment instead of hardcoding + private static final String APP_PRIVATE_PATH = "/data/app-private/"; + + private static final String LOG_TAG = "PackageManagerHostTests"; + + private static final int MAX_WAIT_FOR_DEVICE_TIME = 120 * 1000; + private static final int WAIT_FOR_DEVICE_POLL_TIME = 10 * 1000; + + @Override + protected void setUp() throws Exception { + super.setUp(); + // ensure apk path has been set before test is run + assertNotNull(getTestAppPath()); + } + + /** + * Regression test to verify that pushing an apk to the private app directory doesn't install + * the app, and otherwise cause the system to blow up. + * <p/> + * Assumes adb is running as root in device under test. + */ + public void testPushAppPrivate() throws IOException, InterruptedException { + Log.i(LOG_TAG, "testing pushing an apk to /data/app-private"); + final String apkAppPrivatePath = APP_PRIVATE_PATH + SIMPLE_APK; + + // cleanup test app just in case it was accidently installed + getDevice().uninstallPackage(SIMPLE_PKG); + executeShellCommand("stop"); + pushFile(getTestAppFilePath(SIMPLE_APK), apkAppPrivatePath); + // sanity check to make sure file is there + assertTrue(doesRemoteFileExist(apkAppPrivatePath)); + executeShellCommand("start"); + + waitForDevice(); + + // grep for package to make sure its not installed + assertFalse(doesPackageExist(SIMPLE_PKG)); + // ensure it has been deleted from app-private + assertFalse(doesRemoteFileExist(apkAppPrivatePath)); + } + + /** + * Helper method to push a file to device + * @param apkAppPrivatePath + * @throws IOException + */ + private void pushFile(final String localFilePath, final String destFilePath) + throws IOException { + SyncResult result = getDevice().getSyncService().pushFile( + localFilePath, destFilePath, + new NullSyncProgressMonitor()); + assertEquals(SyncService.RESULT_OK, result.getCode()); + } + + /** + * Helper method to determine if file on device exists. + * + * @param destPath the absolute path of file on device to check + * @return <code>true</code> if file exists, <code>false</code> otherwise. + * @throws IOException if adb shell command failed + */ + private boolean doesRemoteFileExist(String destPath) throws IOException { + String lsGrep = executeShellCommand(String.format("ls %s", + destPath)); + return !lsGrep.contains("No such file or directory"); + } + + /** + * Helper method to determine if package on device exists. + * + * @param packageName the Android manifest package to check. + * @return <code>true</code> if package exists, <code>false</code> otherwise + * @throws IOException if adb shell command failed + */ + private boolean doesPackageExist(String packageName) throws IOException { + String pkgGrep = executeShellCommand(String.format("pm path %s", + packageName)); + return pkgGrep.contains("package:"); + } + + /** + * Waits for device's package manager to respond. + * + * @throws InterruptedException + * @throws IOException + */ + private void waitForDevice() throws InterruptedException, IOException { + Log.i(LOG_TAG, "waiting for device"); + int currentWaitTime = 0; + // poll the package manager until it returns something for android + while (!doesPackageExist("android")) { + Thread.sleep(WAIT_FOR_DEVICE_POLL_TIME); + currentWaitTime += WAIT_FOR_DEVICE_POLL_TIME; + if (currentWaitTime > MAX_WAIT_FOR_DEVICE_TIME) { + Log.e(LOG_TAG, "time out waiting for device"); + throw new InterruptedException(); + } + } + } + + /** + * Helper method which executes a adb shell command and returns output as a {@link String} + * @return + * @throws IOException + */ + private String executeShellCommand(String command) throws IOException { + Log.d(LOG_TAG, String.format("adb shell %s", command)); + CollectingOutputReceiver receiver = new CollectingOutputReceiver(); + getDevice().executeShellCommand(command, receiver); + String output = receiver.getOutput(); + Log.d(LOG_TAG, String.format("Result: %s", output)); + return output; + } + + /** + * Get the absolute file system location of test app with given filename + * @param fileName the file name of the test app apk + * @return {@link String} of absolute file path + */ + private String getTestAppFilePath(String fileName) { + return String.format("%s%s%s", getTestAppPath(), File.separator, fileName); + } + + public static Test suite() { + return new DeviceTestSuite(PackageManagerHostTests.class); + } + + /** + * A {@link IShellOutputReceiver} which collects the whole shell output into one {@link String} + */ + private static class CollectingOutputReceiver extends MultiLineReceiver { + + private StringBuffer mOutputBuffer = new StringBuffer(); + + public String getOutput() { + return mOutputBuffer.toString(); + } + + @Override + public void processNewLines(String[] lines) { + for (String line: lines) { + mOutputBuffer.append(line); + mOutputBuffer.append("\n"); + } + } + + public boolean isCancelled() { + return false; + } + } + + private static class NullSyncProgressMonitor implements ISyncProgressMonitor { + public void advance(int work) { + // ignore + } + + public boolean isCanceled() { + // ignore + return false; + } + + public void start(int totalWork) { + // ignore + + } + + public void startSubTask(String name) { + // ignore + } + + public void stop() { + // ignore + } + } +} diff --git a/core/tests/hosttests/test-apps/Android.mk b/core/tests/hosttests/test-apps/Android.mk new file mode 100644 index 0000000..e25764f --- /dev/null +++ b/core/tests/hosttests/test-apps/Android.mk @@ -0,0 +1,21 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +# Build the test APKs using their own makefiles +include $(call all-makefiles-under,$(LOCAL_PATH)) + diff --git a/core/tests/hosttests/test-apps/SimpleTestApp/Android.mk b/core/tests/hosttests/test-apps/SimpleTestApp/Android.mk new file mode 100644 index 0000000..82543aa --- /dev/null +++ b/core/tests/hosttests/test-apps/SimpleTestApp/Android.mk @@ -0,0 +1,27 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH:= $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := tests + +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +LOCAL_SDK_VERSION := current + +LOCAL_PACKAGE_NAME := SimpleTestApp + +include $(BUILD_PACKAGE) diff --git a/core/tests/hosttests/test-apps/SimpleTestApp/AndroidManifest.xml b/core/tests/hosttests/test-apps/SimpleTestApp/AndroidManifest.xml new file mode 100644 index 0000000..ae36fe7 --- /dev/null +++ b/core/tests/hosttests/test-apps/SimpleTestApp/AndroidManifest.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.android.framework.simpletestapp"> + + <!-- + A simple empty app used to test various install scenarios/ + --> + +</manifest> diff --git a/core/tests/hosttests/test-apps/SimpleTestApp/src/com/android/framework/simpletestapp/SimpleAppActivity.java b/core/tests/hosttests/test-apps/SimpleTestApp/src/com/android/framework/simpletestapp/SimpleAppActivity.java new file mode 100644 index 0000000..b7bbf94 --- /dev/null +++ b/core/tests/hosttests/test-apps/SimpleTestApp/src/com/android/framework/simpletestapp/SimpleAppActivity.java @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.android.framework.simpletestapp; + +import android.app.Activity; + +/** + * Empty activity, not needed for this test + */ +public class SimpleAppActivity extends Activity { + +} |