OneEditTextActivityNotSelectedTests.java revision 9066cfe9886ac131c34d59ed0e2d287b0e3c0087
1/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.imftest.samples;
18
19import android.test.suitebuilder.annotation.LargeTest;
20import android.view.View;
21
22
23public class OneEditTextActivityNotSelectedTests extends ImfBaseTestCase<OneEditTextActivityNotSelected> {
24
25	public final String TAG = "OneEditTextActivityNotSelectedTests";
26
27    public OneEditTextActivityNotSelectedTests() {
28        super(OneEditTextActivityNotSelected.class);
29    }
30
31	@LargeTest
32	public void testSoftKeyboardNoAutoPop() {
33
34	    // Give the IME 2 seconds to appear.
35	    pause(2000);
36
37	    assertFalse(mImm.isAcceptingText());
38
39	    View rootView = ((OneEditTextActivityNotSelected) mTargetActivity).getRootView();
40        View servedView = ((OneEditTextActivityNotSelected) mTargetActivity).getDefaultFocusedView();
41
42        assertNotNull(rootView);
43        assertNotNull(servedView);
44
45        destructiveCheckImeInitialState(rootView, servedView);
46
47        verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
48	}
49
50}
51