Home | History | Annotate | Download | only in arrowscroll
      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 
     17 package android.widget.listview.arrowscroll;
     18 
     19 import android.test.ActivityInstrumentationTestCase;
     20 import android.test.suitebuilder.annotation.MediumTest;
     21 import android.widget.ListView;
     22 import android.widget.TextView;
     23 import android.view.KeyEvent;
     24 import android.widget.listview.ListWithOnItemSelectedAction;
     25 
     26 public class ListWithOnItemSelectedActionTest extends ActivityInstrumentationTestCase<ListWithOnItemSelectedAction> {
     27     private ListView mListView;
     28 
     29     public ListWithOnItemSelectedActionTest() {
     30         super("com.android.frameworks.coretests", ListWithOnItemSelectedAction.class);
     31     }
     32 
     33     @Override
     34     protected void setUp() throws Exception {
     35         super.setUp();
     36         mListView = getActivity().getListView();
     37     }
     38 
     39     private String getValueOfSelectedTextView() {
     40         return ((TextView) mListView.getSelectedView()).getText().toString();
     41     }
     42 
     43     @MediumTest
     44     public void testPreconditions() {
     45         assertEquals(0, mListView.getSelectedItemPosition());
     46         assertEquals("header text field should be echoing contents of selected item",
     47                 getValueOfSelectedTextView(),
     48                 getActivity().getHeaderValue());
     49     }
     50 
     51     @MediumTest
     52     public void testHeaderEchoesSelectionAfterMove() {
     53         sendKeys(KeyEvent.KEYCODE_DPAD_DOWN);
     54 
     55         assertEquals(1, mListView.getSelectedItemPosition());
     56         assertEquals("header text field should be echoing contents of selected item",
     57                 getValueOfSelectedTextView(),
     58                 getActivity().getHeaderValue());
     59     }
     60 }
     61