blob: b07e2a3634a2fe3761a23f85ee251f901b8bade4 [file] [log] [blame]
Alan Viverette3da604b2020-06-10 18:34:39 +00001/*
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
17package com.android.setupwizardlib.template;
18
19import static com.google.common.truth.Truth.assertThat;
20import static org.mockito.Mockito.verify;
21import static org.robolectric.RuntimeEnvironment.application;
22
23import android.view.View;
24import com.android.setupwizardlib.view.BottomScrollView;
25import org.junit.Before;
26import org.junit.Test;
27import org.junit.runner.RunWith;
28import org.mockito.Mock;
29import org.mockito.MockitoAnnotations;
30import org.robolectric.RobolectricTestRunner;
31import org.robolectric.annotation.Config;
32
33@Config(sdk = {Config.OLDEST_SDK, Config.NEWEST_SDK})
34@RunWith(RobolectricTestRunner.class)
35public 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}