Alan Viverette | 3da604b | 2020-06-10 18:34:39 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) 2017 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 com.android.setupwizardlib.template; |
| 18 | |
| 19 | import static com.google.common.truth.Truth.assertThat; |
| 20 | import static org.mockito.Mockito.verify; |
| 21 | import static org.robolectric.RuntimeEnvironment.application; |
| 22 | |
| 23 | import android.view.View; |
| 24 | import com.android.setupwizardlib.view.BottomScrollView; |
| 25 | import org.junit.Before; |
| 26 | import org.junit.Test; |
| 27 | import org.junit.runner.RunWith; |
| 28 | import org.mockito.Mock; |
| 29 | import org.mockito.MockitoAnnotations; |
| 30 | import org.robolectric.RobolectricTestRunner; |
| 31 | import org.robolectric.annotation.Config; |
| 32 | |
| 33 | @Config(sdk = {Config.OLDEST_SDK, Config.NEWEST_SDK}) |
| 34 | @RunWith(RobolectricTestRunner.class) |
| 35 | public class ScrollViewScrollHandlingDelegateTest { |
| 36 | |
| 37 | @Mock private RequireScrollMixin requireScrollMixin; |
| 38 | |
| 39 | private BottomScrollView scrollView; |
| 40 | private ScrollViewScrollHandlingDelegate delegate; |
| 41 | |
| 42 | @Before |
| 43 | public void setUp() throws Exception { |
| 44 | MockitoAnnotations.initMocks(this); |
| 45 | |
| 46 | scrollView = new BottomScrollView(application); |
| 47 | View childView = new View(application); |
| 48 | scrollView.addView(childView); |
| 49 | delegate = new ScrollViewScrollHandlingDelegate(requireScrollMixin, scrollView); |
| 50 | |
| 51 | scrollView.layout(0, 0, 500, 500); |
| 52 | childView.layout(0, 0, 1000, 1000); |
| 53 | } |
| 54 | |
| 55 | @Test |
| 56 | public void testRequireScroll() throws Throwable { |
| 57 | delegate.startListening(); |
| 58 | |
| 59 | scrollView.getBottomScrollListener().onRequiresScroll(); |
| 60 | verify(requireScrollMixin).notifyScrollabilityChange(true); |
| 61 | } |
| 62 | |
| 63 | @Test |
| 64 | public void testScrolledToBottom() throws Throwable { |
| 65 | delegate.startListening(); |
| 66 | |
| 67 | scrollView.getBottomScrollListener().onRequiresScroll(); |
| 68 | verify(requireScrollMixin).notifyScrollabilityChange(true); |
| 69 | |
| 70 | scrollView.getBottomScrollListener().onScrolledToBottom(); |
| 71 | |
| 72 | verify(requireScrollMixin).notifyScrollabilityChange(false); |
| 73 | } |
| 74 | |
| 75 | @Test |
| 76 | public void testPageScrollDown() throws Throwable { |
| 77 | delegate.pageScrollDown(); |
| 78 | assertThat(scrollView.getScrollY()).isEqualTo(500); |
| 79 | } |
| 80 | } |