blob: b1130f1ce800834efc3f7746a01da9350c71a0f9 [file] [log] [blame]
/*
* Copyright (C) 2014 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.google.android.apps.common.testing.ui.espresso.action;
import static com.google.android.apps.common.testing.ui.espresso.Espresso.onView;
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.pressImeActionButton;
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.scrollTo;
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.typeText;
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.typeTextIntoFocusedView;
import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDisplayed;
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withId;
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withParent;
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.Matchers.allOf;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import com.google.android.apps.common.testing.ui.espresso.PerformException;
import com.google.android.apps.common.testing.ui.testapp.R;
import com.google.android.apps.common.testing.ui.testapp.SendActivity;
import android.test.ActivityInstrumentationTestCase2;
import android.test.suitebuilder.annotation.LargeTest;
/**
* {@link TypeTextAction} integration tests.
*/
@LargeTest
public class TypeTextActionIntegrationTest extends ActivityInstrumentationTestCase2<SendActivity> {
@SuppressWarnings("deprecation")
public TypeTextActionIntegrationTest() {
// Supporting froyo.
super("com.google.android.apps.common.testing.ui.testapp", SendActivity.class);
}
@Override
public void setUp() throws Exception {
super.setUp();
getActivity();
}
public void testTypeTextActionPerform() {
onView(withId(is(R.id.send_data_to_call_edit_text))).perform(typeText("Hello!"));
}
@SuppressWarnings("unchecked")
public void testTypeTextActionPerformWithEnter() {
onView(withId(R.id.enter_data_edit_text)).perform(typeText("Hello World!\n"));
onView(allOf(withId(R.id.enter_data_response_text), withText("Hello World!")))
.check(matches(isDisplayed()));
}
public void testTypeTextInFocusedView() {
onView(withId(is(R.id.send_data_to_call_edit_text))).perform(typeText(
"Hello World How Are You Today? I have alot of text to type."));
onView(withId(is(R.id.send_data_to_call_edit_text))).perform(typeTextIntoFocusedView(
"Jolly good!"));
onView(withId(is(R.id.send_data_to_call_edit_text))).check(matches(withText(
"Hello World How Are You Today? I have alot of text to type.Jolly good!")));
}
public void testTypeTextInFocusedView_constraintBreakage() {
onView(withId(is(R.id.send_data_to_call_edit_text))).perform(typeText(
"Hello World How Are You Today? I have alot of text to type."));
try {
onView(withId(is(R.id.edit_text_message)))
.perform(scrollTo(), typeTextIntoFocusedView("Jolly good!"));
fail("Should not have been able to type into focused view.");
} catch (PerformException expected) {
}
}
@SuppressWarnings("unchecked")
public void testTypeTextInDelegatedEditText() {
String toType = "honeybadger doesn't care";
onView(allOf(withParent(withId(R.id.delegating_edit_text)), withId(R.id.delegate_edit_text)))
.perform(scrollTo(), typeText(toType), pressImeActionButton());
onView(withId(R.id.edit_text_message))
.perform(scrollTo())
.check(matches(withText(containsString(toType))));
}
}