aboutsummaryrefslogtreecommitdiff
path: root/tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java')
-rw-r--r--tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java b/tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java
new file mode 100644
index 00000000..d342723d
--- /dev/null
+++ b/tests/common/src/com/android/tv/testing/uihelper/SidePanelHelper.java
@@ -0,0 +1,63 @@
+/*
+ * Copyright (C) 2015 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.tv.testing.uihelper;
+
+import android.content.res.Resources;
+import android.support.test.uiautomator.By;
+import android.support.test.uiautomator.BySelector;
+import android.support.test.uiautomator.Direction;
+import android.support.test.uiautomator.UiDevice;
+import android.support.test.uiautomator.UiObject2;
+
+import com.android.tv.R;
+import com.android.tv.testing.uihelper.BaseUiDeviceHelper;
+import com.android.tv.testing.uihelper.ByResource;
+import com.android.tv.testing.uihelper.Constants;
+import com.android.tv.testing.uihelper.UiDeviceAsserts;
+import com.android.tv.ui.sidepanel.SideFragment;
+
+import junit.framework.Assert;
+
+/**
+ * Helper for testing {@link SideFragment}s.
+ */
+public class SidePanelHelper extends BaseUiDeviceHelper {
+
+ public SidePanelHelper(UiDevice uiDevice, Resources targetResources) {
+ super(uiDevice, targetResources);
+ }
+
+ public BySelector bySidePanelTitled(int titleResId) {
+ return By.copy(Constants.SIDE_PANEL)
+ .hasDescendant(ByResource.text(mTargetResources, titleResId));
+ }
+
+ public UiObject2 assertNavigateToItem(int resId) {
+ String title = mTargetResources.getString(resId);
+ return assertNavigateToItem(title);
+ }
+
+ public UiObject2 assertNavigateToItem(String title) {
+ BySelector sidePanelSelector = ByResource.id(mTargetResources, R.id.side_panel_list);
+ UiObject2 sidePanelList = mUiDevice.findObject(sidePanelSelector);
+ Assert.assertNotNull(sidePanelSelector + " not found", sidePanelList);
+
+ return UiDeviceAsserts
+ .assertNavigateTo(mUiDevice, sidePanelList, By.hasDescendant(By.text(title)),
+ Direction.DOWN);
+ }
+}