Android Open Source - ListViewAnimations Adapter View Util Test






From Project

Back to project page ListViewAnimations.

License

The source code is released under:

Apache License

If you think the Android project ListViewAnimations listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.nhaarman.listviewanimations.util;
//  w  w w  .j a va2s. c om
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.AbsListView;
import android.widget.ListView;

import junit.framework.TestCase;

import org.mockito.*;

import static org.hamcrest.MatcherAssert.*;
import static org.hamcrest.Matchers.*;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.*;

public class AdapterViewUtilTest extends TestCase {

    private static final int POSITION = 5;

    @Mock
    private ListViewWrapper mListViewWrapper;

    @Mock
    private AbsListViewImpl mAbsListView;

    @Mock
    private ListView mListView;

    @Mock
    private View mView;

    @Override
    protected void setUp() throws Exception {
        super.setUp();

        MockitoAnnotations.initMocks(this);
    }

    public void testListViewWrapperGetPositionForView() throws Exception {
        when(mListViewWrapper.getPositionForView(any(View.class))).thenReturn(5);
        when(mListViewWrapper.getHeaderViewsCount()).thenReturn(0);

        assertThat(AdapterViewUtil.getPositionForView(mListViewWrapper, mView), is(5));
    }

    public void testListViewWrapperGetPositionForViewWithHeaderViews() throws Exception {
        when(mListViewWrapper.getPositionForView(any(View.class))).thenReturn(5);
        when(mListViewWrapper.getHeaderViewsCount()).thenReturn(2);

        assertThat(AdapterViewUtil.getPositionForView(mListViewWrapper, mView), is(3));
    }

    public void testAbsListViewGetPositionForView() throws Exception {
        when(mAbsListView.getPositionForView(any(View.class))).thenReturn(5);

        assertThat(AdapterViewUtil.getPositionForView(mAbsListView, mView), is(5));
    }

    public void testListViewGetPositionForView() throws Exception {
        when(mListView.getPositionForView(any(View.class))).thenReturn(5);
        when(mListView.getHeaderViewsCount()).thenReturn(0);

        assertThat(AdapterViewUtil.getPositionForView(mListView, mView), is(5));
    }

    public void testListViewGetPositionForViewWithHeaderViews() throws Exception {
        when(mListView.getPositionForView(any(View.class))).thenReturn(5);
        when(mListView.getHeaderViewsCount()).thenReturn(2);

        assertThat(AdapterViewUtil.getPositionForView(mListView, mView), is(3));
    }

    public void testListViewWrapperGetViewForPosition() throws Exception {
        View dummyView1 = mock(View.class);
        View dummyView2 = mock(View.class);

        when(mListViewWrapper.getChildAt(0)).thenReturn(dummyView1);
        when(mListViewWrapper.getChildAt(1)).thenReturn(mView);
        when(mListViewWrapper.getChildAt(2)).thenReturn(dummyView2);

        when(mListViewWrapper.getPositionForView(dummyView1)).thenReturn(POSITION - 1);
        when(mListViewWrapper.getPositionForView(mView)).thenReturn(POSITION);
        when(mListViewWrapper.getPositionForView(dummyView2)).thenReturn(POSITION + 1);

        assertThat(AdapterViewUtil.getPositionForView(mListViewWrapper, mView), is(POSITION));
    }

    public void testListViewWrapperGetViewForPositionWithHeaderViews() throws Exception {
        View dummyView1 = mock(View.class);
        View dummyView2 = mock(View.class);

        when(mListViewWrapper.getChildAt(0)).thenReturn(dummyView1);
        when(mListViewWrapper.getChildAt(1)).thenReturn(mView);
        when(mListViewWrapper.getChildAt(2)).thenReturn(dummyView2);

        when(mListViewWrapper.getPositionForView(dummyView1)).thenReturn(POSITION - 1);
        when(mListViewWrapper.getPositionForView(mView)).thenReturn(POSITION);
        when(mListViewWrapper.getPositionForView(dummyView2)).thenReturn(POSITION + 1);

        when(mListViewWrapper.getHeaderViewsCount()).thenReturn(2);

        assertThat(AdapterViewUtil.getPositionForView(mListViewWrapper, mView), is(POSITION - 2));
    }

    public void testAbsListViewGetViewForPosition() throws Exception {
        View dummyView1 = mock(View.class);
        View dummyView2 = mock(View.class);

        when(mAbsListView.getChildAt(0)).thenReturn(dummyView1);
        when(mAbsListView.getChildAt(1)).thenReturn(mView);
        when(mAbsListView.getChildAt(2)).thenReturn(dummyView2);

        when(mAbsListView.getPositionForView(dummyView1)).thenReturn(POSITION - 1);
        when(mAbsListView.getPositionForView(mView)).thenReturn(POSITION);
        when(mAbsListView.getPositionForView(dummyView2)).thenReturn(POSITION + 1);

        assertThat(AdapterViewUtil.getPositionForView(mAbsListView, mView), is(POSITION));
    }

    public void testListViewGetViewForPosition() throws Exception {
        View dummyView1 = mock(View.class);
        View dummyView2 = mock(View.class);

        when(mListView.getChildAt(0)).thenReturn(dummyView1);
        when(mListView.getChildAt(1)).thenReturn(mView);
        when(mListView.getChildAt(2)).thenReturn(dummyView2);

        when(mListView.getPositionForView(dummyView1)).thenReturn(POSITION - 1);
        when(mListView.getPositionForView(mView)).thenReturn(POSITION);
        when(mListView.getPositionForView(dummyView2)).thenReturn(POSITION + 1);

        assertThat(AdapterViewUtil.getPositionForView(mListView, mView), is(POSITION));
    }

    public void testListViewGetViewForPositionWithHeaderViews() throws Exception {
        View dummyView1 = mock(View.class);
        View dummyView2 = mock(View.class);

        when(mListView.getChildAt(0)).thenReturn(dummyView1);
        when(mListView.getChildAt(1)).thenReturn(mView);
        when(mListView.getChildAt(2)).thenReturn(dummyView2);

        when(mListView.getPositionForView(dummyView1)).thenReturn(POSITION - 1);
        when(mListView.getPositionForView(mView)).thenReturn(POSITION);
        when(mListView.getPositionForView(dummyView2)).thenReturn(POSITION + 1);

        when(mListView.getHeaderViewsCount()).thenReturn(2);

        assertThat(AdapterViewUtil.getPositionForView(mListView, mView), is(POSITION - 2));
    }

    @SuppressWarnings("ProtectedInnerClass")
    protected abstract static class AbsListViewImpl extends AbsListView {

        protected AbsListViewImpl(final Context context) {
            super(context);
        }

        protected AbsListViewImpl(final Context context, final AttributeSet attrs) {
            super(context, attrs);
        }

        protected AbsListViewImpl(final Context context, final AttributeSet attrs, final int defStyle) {
            super(context, attrs, defStyle);
        }
    }
}




Java Source Code List

com.haarman.listviewanimations.BaseActivity.java
com.haarman.listviewanimations.MainActivity.java
com.haarman.listviewanimations.MyListActivity.java
com.haarman.listviewanimations.MyListAdapter.java
com.haarman.listviewanimations.StickyListHeadersActivity.java
com.haarman.listviewanimations.appearance.AppearanceExamplesActivity.java
com.haarman.listviewanimations.googlecards.GoogleCardsActivity.java
com.haarman.listviewanimations.googlecards.GoogleCardsAdapter.java
com.haarman.listviewanimations.gridview.GridViewActivity.java
com.haarman.listviewanimations.gridview.GridViewAdapter.java
com.haarman.listviewanimations.itemmanipulation.DynamicListViewActivity.java
com.haarman.listviewanimations.itemmanipulation.ItemManipulationsExamplesActivity.java
com.haarman.listviewanimations.itemmanipulation.expandablelistitems.ExpandableListItemActivity.java
com.haarman.listviewanimations.itemmanipulation.expandablelistitems.MyExpandableListItemAdapter.java
com.haarman.listviewanimations.util.BitmapCache.java
com.nhaarman.listviewanimations.ArrayAdapterTest.java
com.nhaarman.listviewanimations.ArrayAdapter.java
com.nhaarman.listviewanimations.BaseAdapterDecoratorTest.java
com.nhaarman.listviewanimations.BaseAdapterDecorator.java
com.nhaarman.listviewanimations.appearance.AnimationAdapter.java
com.nhaarman.listviewanimations.appearance.ResourceAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.SingleAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.StickyListHeadersAdapterDecorator.java
com.nhaarman.listviewanimations.appearance.ViewAnimatorTest.java
com.nhaarman.listviewanimations.appearance.ViewAnimator.java
com.nhaarman.listviewanimations.appearance.simple.AlphaInAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.simple.ScaleInAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.simple.SwingBottomInAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.simple.SwingLeftInAnimationAdapter.java
com.nhaarman.listviewanimations.appearance.simple.SwingRightInAnimationAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.DynamicListView.java
com.nhaarman.listviewanimations.itemmanipulation.TouchEventHandler.java
com.nhaarman.listviewanimations.itemmanipulation.animateaddition.AnimateAdditionAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.animateaddition.InsertQueueTest.java
com.nhaarman.listviewanimations.itemmanipulation.animateaddition.InsertQueue.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.BitmapUtils.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DragAndDropHandler.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DragAndDropListViewWrapper.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DraggableManager.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DynamicListViewDragAndDropTest.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DynamicListViewTestActivity.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.DynamicListViewWrapper.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.GripView.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.HoverDrawableTest.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.HoverDrawable.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.MotionEventUtils.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.OnItemMovedListener.java
com.nhaarman.listviewanimations.itemmanipulation.dragdrop.TouchViewDraggableManager.java
com.nhaarman.listviewanimations.itemmanipulation.expandablelistitem.ExpandableListItemAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.matchers.Matchers.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.DismissableManager.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.MotionEventUtils.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.OnDismissCallback.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeDismissAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeDismissTouchListenerTest.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeDismissTouchListener.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeTouchListenerTestActivity.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeTouchListenerTest.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.SwipeTouchListener.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.SimpleSwipeUndoAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.SwipeUndoAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.SwipeUndoTouchListenerTest.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.SwipeUndoTouchListener.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.SwipeUndoView.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.TimedUndoAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.UndoAdapter.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.UndoCallback.java
com.nhaarman.listviewanimations.itemmanipulation.swipedismiss.undo.Util.java
com.nhaarman.listviewanimations.util.AbsListViewWrapperTest.java
com.nhaarman.listviewanimations.util.AbsListViewWrapper.java
com.nhaarman.listviewanimations.util.AdapterViewUtilTest.java
com.nhaarman.listviewanimations.util.AdapterViewUtil.java
com.nhaarman.listviewanimations.util.AnimatorUtilTest.java
com.nhaarman.listviewanimations.util.AnimatorUtil.java
com.nhaarman.listviewanimations.util.Insertable.java
com.nhaarman.listviewanimations.util.ListViewWrapperSetter.java
com.nhaarman.listviewanimations.util.ListViewWrapper.java
com.nhaarman.listviewanimations.util.StickyListHeadersListViewWrapper.java
com.nhaarman.listviewanimations.util.Swappable.java