Setup a max allowed num for PanelSlicesAdapter to prevent too many slices showing in single panel. Test: Manual verify Test: atest PanelSlicesAdapterTest Fixes: 129358092 Change-Id: I7b72a29489e597b8309d74841eaeab0fe42aace6
160 lines
5.9 KiB
Java
160 lines
5.9 KiB
Java
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* 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.settings.panel;
|
|
|
|
import static com.android.settings.panel.PanelSlicesAdapter.MAX_NUM_OF_SLICES;
|
|
import static com.android.settings.slices.CustomSliceRegistry.MEDIA_OUTPUT_INDICATOR_SLICE_URI;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.mock;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.content.Context;
|
|
import android.net.Uri;
|
|
import android.view.ViewGroup;
|
|
import android.widget.FrameLayout;
|
|
|
|
import androidx.lifecycle.LiveData;
|
|
import androidx.slice.Slice;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.slices.CustomSliceRegistry;
|
|
import com.android.settings.testutils.FakeFeatureFactory;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.Test;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.android.controller.ActivityController;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class PanelSlicesAdapterTest {
|
|
|
|
private static final Uri DATA_URI = CustomSliceRegistry.DATA_USAGE_SLICE_URI;
|
|
|
|
private Context mContext;
|
|
private PanelFragment mPanelFragment;
|
|
private PanelFeatureProvider mPanelFeatureProvider;
|
|
private FakeFeatureFactory mFakeFeatureFactory;
|
|
private FakePanelContent mFakePanelContent;
|
|
private List<LiveData<Slice>> mData = new ArrayList<>();
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
mContext = RuntimeEnvironment.application;
|
|
|
|
mPanelFeatureProvider = spy(new PanelFeatureProviderImpl());
|
|
mFakeFeatureFactory = FakeFeatureFactory.setupForTest();
|
|
mFakeFeatureFactory.panelFeatureProvider = mPanelFeatureProvider;
|
|
mFakePanelContent = new FakePanelContent();
|
|
doReturn(mFakePanelContent).when(mPanelFeatureProvider).getPanel(any(), any(), any());
|
|
|
|
ActivityController<FakeSettingsPanelActivity> activityController =
|
|
Robolectric.buildActivity(FakeSettingsPanelActivity.class);
|
|
activityController.setup();
|
|
|
|
mPanelFragment =
|
|
spy((PanelFragment)
|
|
activityController
|
|
.get()
|
|
.getSupportFragmentManager()
|
|
.findFragmentById(R.id.main_content));
|
|
|
|
}
|
|
|
|
private void addTestLiveData(Uri uri) {
|
|
// Create a slice to return for the LiveData
|
|
final Slice slice = spy(new Slice());
|
|
doReturn(uri).when(slice).getUri();
|
|
final LiveData<Slice> liveData = mock(LiveData.class);
|
|
when(liveData.getValue()).thenReturn(slice);
|
|
mData.add(liveData);
|
|
}
|
|
|
|
@Test
|
|
public void onCreateViewHolder_returnsSliceRowViewHolder() {
|
|
addTestLiveData(DATA_URI);
|
|
final PanelSlicesAdapter adapter =
|
|
new PanelSlicesAdapter(mPanelFragment, mData, 0 /* metrics category */);
|
|
final ViewGroup view = new FrameLayout(mContext);
|
|
final PanelSlicesAdapter.SliceRowViewHolder viewHolder =
|
|
adapter.onCreateViewHolder(view, 0);
|
|
|
|
assertThat(viewHolder.sliceView).isNotNull();
|
|
}
|
|
|
|
@Test
|
|
public void sizeOfAdapter_shouldNotExceedMaxNum() {
|
|
for (int i = 0; i < MAX_NUM_OF_SLICES + 2; i++) {
|
|
addTestLiveData(DATA_URI);
|
|
}
|
|
|
|
assertThat(mData.size()).isEqualTo(MAX_NUM_OF_SLICES + 2);
|
|
|
|
final PanelSlicesAdapter adapter =
|
|
new PanelSlicesAdapter(mPanelFragment, mData, 0 /* metrics category */);
|
|
final ViewGroup view = new FrameLayout(mContext);
|
|
final PanelSlicesAdapter.SliceRowViewHolder viewHolder =
|
|
adapter.onCreateViewHolder(view, 0);
|
|
|
|
assertThat(adapter.getItemCount()).isEqualTo(MAX_NUM_OF_SLICES);
|
|
assertThat(adapter.getData().size()).isEqualTo(MAX_NUM_OF_SLICES);
|
|
}
|
|
|
|
@Test
|
|
public void nonMediaOutputIndicatorSlice_shouldAllowDividerAboveAndBelow() {
|
|
addTestLiveData(DATA_URI);
|
|
final PanelSlicesAdapter adapter =
|
|
new PanelSlicesAdapter(mPanelFragment, mData, 0 /* metrics category */);
|
|
final int position = 0;
|
|
final ViewGroup view = new FrameLayout(mContext);
|
|
final PanelSlicesAdapter.SliceRowViewHolder viewHolder =
|
|
adapter.onCreateViewHolder(view, 0 /* view type*/);
|
|
|
|
adapter.onBindViewHolder(viewHolder, position);
|
|
|
|
assertThat(viewHolder.isDividerAllowedAbove()).isTrue();
|
|
assertThat(viewHolder.isDividerAllowedBelow()).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void mediaOutputIndicatorSlice_shouldNotAllowDividerAbove() {
|
|
addTestLiveData(MEDIA_OUTPUT_INDICATOR_SLICE_URI);
|
|
|
|
final PanelSlicesAdapter adapter =
|
|
new PanelSlicesAdapter(mPanelFragment, mData, 0 /* metrics category */);
|
|
final int position = 0;
|
|
final ViewGroup view = new FrameLayout(mContext);
|
|
final PanelSlicesAdapter.SliceRowViewHolder viewHolder =
|
|
adapter.onCreateViewHolder(view, 0 /* view type*/);
|
|
|
|
adapter.onBindViewHolder(viewHolder, position);
|
|
|
|
assertThat(viewHolder.isDividerAllowedAbove()).isFalse();
|
|
}
|
|
} |