blob: 307c39dd652e4e2bbd4a102149721f213042af63 [file] [log] [blame]
/*
* Copyright (C) 2008 Google Inc.
*
* 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.frameworktest.listview.arrowscroll;
import com.android.frameworktest.listview.ListWithFirstScreenUnSelectable;
import android.test.ActivityInstrumentationTestCase2;
import android.view.KeyEvent;
import android.widget.ListView;
import android.widget.AdapterView;
public class ListWithFirstScreenUnSelectableTest
extends ActivityInstrumentationTestCase2<ListWithFirstScreenUnSelectable> {
private ListView mListView;
public ListWithFirstScreenUnSelectableTest() {
super("com.android.frameworktest", ListWithFirstScreenUnSelectable.class);
}
protected void setUp() throws Exception {
super.setUp();
setActivityInitialTouchMode(true);
mListView = getActivity().getListView();
}
public void testPreconditions() {
assertTrue(mListView.isInTouchMode());
assertEquals(1, mListView.getChildCount());
assertFalse(mListView.getAdapter().isEnabled(0));
assertEquals(AdapterView.INVALID_POSITION, mListView.getSelectedItemPosition());
}
public void testRessurectSelection() {
sendKeys(KeyEvent.KEYCODE_SPACE);
assertEquals(AdapterView.INVALID_POSITION, mListView.getSelectedItemPosition());
}
public void testScrollUpDoesNothing() {
sendKeys(KeyEvent.KEYCODE_DPAD_UP);
assertEquals(AdapterView.INVALID_POSITION, mListView.getSelectedItemPosition());
assertEquals(1, mListView.getChildCount());
assertEquals(0, mListView.getFirstVisiblePosition());
}
public void testScrollDownPansNextItemOn() {
sendKeys(KeyEvent.KEYCODE_DPAD_DOWN);
assertEquals(2, mListView.getChildCount());
}
}