From 8c7a2b7d023d9f24ff7db3ba2e02672aa006c45b Mon Sep 17 00:00:00 2001 From: Tsu Chiang Chuang Date: Fri, 20 May 2011 16:17:17 -0700 Subject: Adding stress test for launcher2 rotation. Change-Id: I03b7dbdd025af39fc733a91f54633a548225e140 --- tests/stress/Android.mk | 33 +++++++++++ tests/stress/AndroidManifest.xml | 31 ++++++++++ .../stress/LauncherRotationStressTest.java | 68 ++++++++++++++++++++++ 3 files changed, 132 insertions(+) create mode 100644 tests/stress/Android.mk create mode 100644 tests/stress/AndroidManifest.xml create mode 100644 tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java (limited to 'tests/stress') diff --git a/tests/stress/Android.mk b/tests/stress/Android.mk new file mode 100644 index 000000000..da22bb9f8 --- /dev/null +++ b/tests/stress/Android.mk @@ -0,0 +1,33 @@ +# Copyright (C) 2011 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) + +# We only want this apk build for tests. +LOCAL_MODULE_TAGS := tests + +LOCAL_JAVA_LIBRARIES := android.test.runner + +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +LOCAL_PACKAGE_NAME := LauncherRotationStressTest + +LOCAL_CERTIFICATE := shared + +LOCAL_INSTRUMENTATION_FOR := Launcher2 + +LOCAL_SDK_VERSION := current + +include $(BUILD_PACKAGE) diff --git a/tests/stress/AndroidManifest.xml b/tests/stress/AndroidManifest.xml new file mode 100644 index 000000000..ce5dbe426 --- /dev/null +++ b/tests/stress/AndroidManifest.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java b/tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java new file mode 100644 index 000000000..3d787f263 --- /dev/null +++ b/tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java @@ -0,0 +1,68 @@ +/* + * Copyright (C) 2011 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.launcher2.stress; + + +import com.android.launcher2.Launcher; + +import android.content.pm.ActivityInfo; +import android.os.SystemClock; +import android.test.ActivityInstrumentationTestCase2; +import android.test.TimedTest; +import android.util.Log; + +/** + * Run rotation stress test using Launcher2 for 50 iterations. + */ +public class LauncherRotationStressTest extends ActivityInstrumentationTestCase2 { + + private static final int NUM_ITERATIONS = 50; + private static final String LOG_TAG = "LauncherRotationStressTest"; + + public LauncherRotationStressTest() { + super(Launcher.class); + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + } + + @Override + protected void tearDown() throws Exception { + super.tearDown(); + } + + @TimedTest(includeDetailedStats=true) + public void testLauncherRotationStress() throws Exception { + Launcher launcher = getActivity(); + for (int i = 0; i < NUM_ITERATIONS; i++) { + Log.i(LOG_TAG, "Starting LauncherRotationStressTest " + (i + 1) + " of " + + NUM_ITERATIONS); + getInstrumentation().waitForIdleSync(); + SystemClock.sleep(500); + launcher.setRequestedOrientation( + ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); + getInstrumentation().waitForIdleSync(); + SystemClock.sleep(500); + launcher.setRequestedOrientation( + ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); + Log.i(LOG_TAG, "Finished LauncherRotationStressTest " + (i + 1) + " of " + + NUM_ITERATIONS); + } + } +} -- cgit v1.2.3