summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2016-09-07 21:13:58 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-09-07 21:13:58 +0000
commit651131c3cbb8aeeefbed1bff6d286ca12787fb52 (patch)
tree9426f254d69091b54fce5f3922771e446e3bc215
parentd729c65cf4f0f2b4f25b5c040c402da0c1fa1838 (diff)
parente93e8576f813f411158c7685ed8ee718b0d9c3ca (diff)
downloadplatform_testing-651131c3cbb8aeeefbed1bff6d286ca12787fb52.tar.gz
Merge "Add quick settings jank test" into nyc-mr1-dev
-rw-r--r--tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/SystemUiJankTests.java46
1 files changed, 42 insertions, 4 deletions
diff --git a/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/SystemUiJankTests.java b/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/SystemUiJankTests.java
index 173623ef9..62c4ebdef 100644
--- a/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/SystemUiJankTests.java
+++ b/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/SystemUiJankTests.java
@@ -40,6 +40,7 @@ import android.support.test.uiautomator.UiSelector;
import android.support.test.uiautomator.Until;
import android.util.Log;
import android.widget.Button;
+import android.widget.ImageView;
import java.io.File;
import java.io.IOException;
@@ -227,14 +228,14 @@ public class SystemUiJankTests extends JankTestBase {
}
}
- private void openNotification() {
+ private void swipeDown() {
mDevice.swipe(mDevice.getDisplayWidth() / 2,
SWIPE_MARGIN, mDevice.getDisplayWidth() / 2,
mDevice.getDisplayHeight() - SWIPE_MARGIN,
DEFAULT_SCROLL_STEPS);
}
- private void closeNotification() {
+ private void swipeUp() {
mDevice.swipe(mDevice.getDisplayWidth() / 2,
mDevice.getDisplayHeight() - SWIPE_MARGIN,
mDevice.getDisplayWidth() / 2,
@@ -248,9 +249,46 @@ public class SystemUiJankTests extends JankTestBase {
@GfxMonitor(processName = SYSTEMUI_PACKAGE)
public void testNotificationListPull() {
for (int i = 0; i < INNER_LOOP; i++) {
- openNotification();
+ swipeDown();
mDevice.waitForIdle();
- closeNotification();
+ swipeUp();
+ mDevice.waitForIdle();
+ }
+ }
+
+ public void beforeQuickSettings() throws Exception {
+
+ // Make sure we have some notifications.
+ prepareNotifications();
+ mDevice.openNotification();
+ SystemClock.sleep(100);
+ mDevice.waitForIdle();
+ TimeResultLogger.writeTimeStampLogStart(String.format("%s-%s",
+ getClass().getSimpleName(), getName()), TIMESTAMP_FILE);
+ }
+
+ public void afterQuickSettings(Bundle metrics) throws Exception {
+ TimeResultLogger.writeTimeStampLogEnd(String.format("%s-%s",
+ getClass().getSimpleName(), getName()), TIMESTAMP_FILE);
+ cancelNotifications(metrics);
+ mDevice.pressHome();
+ TimeResultLogger.writeResultToFile(String.format("%s-%s",
+ getClass().getSimpleName(), getName()), RESULTS_FILE, metrics);
+ super.afterTest(metrics);
+ }
+
+ /** Measures jank while pulling down the quick settings */
+ @JankTest(expectedFrames = 100,
+ beforeTest = "beforeQuickSettings", afterTest = "afterQuickSettings")
+ @GfxMonitor(processName = SYSTEMUI_PACKAGE)
+ public void testQuickSettingsPull() throws Exception {
+ UiObject quickSettingsButton = mDevice.findObject(
+ new UiSelector().className(ImageView.class)
+ .descriptionContains("quick settings"));
+ for (int i = 0; i < INNER_LOOP; i++) {
+ quickSettingsButton.click();
+ mDevice.waitForIdle();
+ quickSettingsButton.click();
mDevice.waitForIdle();
}
}