blob: 66be677cef8967b315fe1581b44fa8ab89715e9d [file] [log] [blame]
/*
* Copyright (C) 2016 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.documentsui.bots;
import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.typeText;
import static android.support.test.espresso.matcher.ViewMatchers.hasDescendant;
import static android.support.test.espresso.matcher.ViewMatchers.isClickable;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withId;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
import static org.hamcrest.CoreMatchers.allOf;
import static org.hamcrest.CoreMatchers.anyOf;
import android.content.Context;
import android.support.test.uiautomator.UiDevice;
import android.support.test.uiautomator.UiObject;
import android.support.test.uiautomator.UiObjectNotFoundException;
import android.support.v7.recyclerview.R;
import android.view.View;
import org.hamcrest.Matcher;
/**
* A test helper class that provides support for controlling the search UI
* programmatically, and making assertions against the state of the UI.
* <p>
* Support for working directly with Roots and Directory view can be found in the respective bots.
*/
public class SearchBot extends Bots.BaseBot {
public static final String TARGET_PKG = "com.android.documentsui";
// Dumb search layout changes substantially between Ryu and Angler.
@SuppressWarnings("unchecked")
private static final Matcher<View> SEARCH_WIDGET = allOf(
withId(R.id.menu_search),
anyOf(isClickable(), hasDescendant(isClickable())));
// Note that input is visible when the clicky button is not
// present. So to clearly qualify the two...we explicitly
// require this input be not clickable.
@SuppressWarnings("unchecked")
private static final Matcher<View> SEARCH_INPUT = allOf(
withId(R.id.menu_search),
isDisplayed());
public SearchBot(UiDevice device, Context context, int timeout) {
super(device, context, timeout);
}
public void clickIcon() throws UiObjectNotFoundException {
UiObject searchView = findSearchView();
searchView.click();
assertTrue(searchView.exists());
}
public void setInputText(String query) throws UiObjectNotFoundException {
onView(SEARCH_INPUT).perform(typeText(query));
}
public void assertIconVisible(boolean visible) {
if (visible) {
assertTrue(
"Search icon should be visible.",
Matchers.present(SEARCH_WIDGET));
} else {
assertFalse(
"Search icon should not be visible.",
Matchers.present(SEARCH_WIDGET));
}
}
public void assertInputEquals(String query)
throws UiObjectNotFoundException {
UiObject textField = findSearchViewTextField();
assertTrue(textField.exists());
assertEquals(query, textField.getText());
}
public void assertInputFocused(boolean focused)
throws UiObjectNotFoundException {
UiObject textField = findSearchViewTextField();
assertTrue(textField.exists());
assertEquals(focused, textField.isFocused());
}
public void assertInputExists(boolean exists)
throws UiObjectNotFoundException {
assertEquals(exists, findSearchViewTextField().exists());
}
private UiObject findSearchView() {
return findObject("com.android.documentsui:id/menu_search");
}
private UiObject findSearchViewTextField() {
return findObject("com.android.documentsui:id/menu_search", "android:id/search_src_text");
}
private UiObject findSearchViewIcon() {
return mContext.getResources().getBoolean(R.bool.full_bar_search_view)
? findObject("com.android.documentsui:id/menu_search")
: findObject("com.android.documentsui:id/menu_search", "android:id/search_button");
}
}