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 android.widget.layout.linear;
18
19import com.android.frameworks.coretests.R;
20import android.widget.layout.linear.BaselineAlignmentZeroWidthAndWeight;
21import android.widget.layout.linear.ExceptionTextView;
22
23import android.app.Activity;
24import android.test.ActivityInstrumentationTestCase;
25import android.test.suitebuilder.annotation.MediumTest;
26import android.view.KeyEvent;
27import android.widget.Button;
28
29public class BaselineAlignmentZeroWidthAndWeightTest extends ActivityInstrumentationTestCase<BaselineAlignmentZeroWidthAndWeight> {
30    private Button mShowButton;
31
32    public BaselineAlignmentZeroWidthAndWeightTest() {
33        super("com.android.frameworks.coretests", BaselineAlignmentZeroWidthAndWeight.class);
34    }
35
36    @Override
37    protected void setUp() throws Exception {
38        super.setUp();
39
40        final Activity activity = getActivity();
41        mShowButton = (Button) activity.findViewById(R.id.show);
42    }
43
44    @MediumTest
45    public void testSetUpConditions() throws Exception {
46        assertNotNull(mShowButton);
47    }
48
49    @MediumTest
50    public void testComputeTexViewWithoutIllegalArgumentException() throws Exception {
51        assertTrue(mShowButton.hasFocus());
52
53        // Pressing the button will show an ExceptionTextView that might set a failed bit if
54        // the test fails.
55        sendKeys(KeyEvent.KEYCODE_DPAD_CENTER);
56        getInstrumentation().waitForIdleSync();
57
58        final ExceptionTextView etv = (ExceptionTextView) getActivity()
59                .findViewById(R.id.routeToField);
60        assertFalse("exception test view should not fail", etv.isFailed());
61    }
62}
63