blob: e07d17fa89663732838e62adfb995994be7cfca1 [file] [log] [blame]
Selim Cinek3acdc8e72017-04-06 17:38:27 -07001/*
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.systemui;
18
Jason Monka716bac2018-12-05 15:48:21 -050019import static org.mockito.ArgumentMatchers.any;
20import static org.mockito.Mockito.mock;
21import static org.mockito.Mockito.when;
22
Selim Cinek3acdc8e72017-04-06 17:38:27 -070023import android.animation.ObjectAnimator;
24import android.content.Context;
Jason Monk6dceace2018-05-15 20:24:07 -040025import android.testing.AndroidTestingRunner;
Jason Monka716bac2018-12-05 15:48:21 -050026import android.testing.TestableLooper;
Jason Monk6dceace2018-05-15 20:24:07 -040027import android.testing.TestableLooper.RunWithLooper;
Selim Cinek3acdc8e72017-04-06 17:38:27 -070028
Brett Chabot84151d92019-02-27 15:37:59 -080029import androidx.test.annotation.UiThreadTest;
30import androidx.test.filters.SmallTest;
31
Selim Cinek3acdc8e72017-04-06 17:38:27 -070032import com.android.systemui.statusbar.NotificationTestHelper;
Jason Monka716bac2018-12-05 15:48:21 -050033import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow;
34import com.android.systemui.util.Assert;
Selim Cinek3acdc8e72017-04-06 17:38:27 -070035
36import org.junit.Before;
37import org.junit.Test;
38import org.junit.runner.RunWith;
39
Selim Cinek3acdc8e72017-04-06 17:38:27 -070040@SmallTest
Jason Monk6dceace2018-05-15 20:24:07 -040041@RunWith(AndroidTestingRunner.class)
Jason Monka716bac2018-12-05 15:48:21 -050042@RunWithLooper
Selim Cinek3acdc8e72017-04-06 17:38:27 -070043public class ExpandHelperTest extends SysuiTestCase {
44
45 private ExpandableNotificationRow mRow;
46 private ExpandHelper mExpandHelper;
47 private ExpandHelper.Callback mCallback;
48
49 @Before
Selim Cinek5ba22542017-04-20 15:16:10 -070050 public void setUp() throws Exception {
Jason Monka716bac2018-12-05 15:48:21 -050051 Assert.sMainLooper = TestableLooper.get(this).getLooper();
Selim Cinek3acdc8e72017-04-06 17:38:27 -070052 Context context = getContext();
53 mRow = new NotificationTestHelper(context).createRow();
54 mCallback = mock(ExpandHelper.Callback.class);
Jason Monk6dceace2018-05-15 20:24:07 -040055 mExpandHelper = new ExpandHelper(context, mCallback, 10, 100);
Selim Cinek3acdc8e72017-04-06 17:38:27 -070056 }
57
58 @Test
59 @UiThreadTest
60 public void testAnimationDoesntClearViewIfNewExpansionStarted() {
61 when(mCallback.getMaxExpandHeight(any())).thenReturn(100);
62 mExpandHelper.startExpanding(mRow, 0);
63 mExpandHelper.finishExpanding(false, 0);
64 mExpandHelper.startExpanding(mRow, 0);
65 ObjectAnimator scaleAnimation = mExpandHelper.getScaleAnimation();
66 scaleAnimation.end();
67 mExpandHelper.updateExpansion();
68 }
69
70}