Also added a FakeFeatureFactory to make it easier to mock different FeatureProviders. Bug: 31781480 Test: make RunSettingsRoboTests Change-Id: Ie45db601e0bec951d7ef983ec2e3ca747ec1c3af
155 lines
4.9 KiB
Java
155 lines
4.9 KiB
Java
/*
|
|
* Copyright (C) 2016 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.dashboard;
|
|
|
|
import android.content.Context;
|
|
import android.support.v7.preference.Preference;
|
|
import android.support.v7.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.TestConfig;
|
|
import com.android.settings.core.PreferenceController;
|
|
import com.android.settings.overlay.FeatureFactory;
|
|
import com.android.settings.testutils.FakeFeatureFactory;
|
|
import com.android.settingslib.drawer.DashboardCategory;
|
|
import com.android.settingslib.drawer.Tile;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Answers;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowApplication;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static org.mockito.Matchers.any;
|
|
import static org.mockito.Mockito.never;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public class DashboardFragmentTest {
|
|
|
|
@Mock(answer = Answers.RETURNS_DEEP_STUBS)
|
|
private Context mContext;
|
|
@Mock
|
|
private DashboardCategory mDashboardCategory;
|
|
@Mock
|
|
private FakeFeatureFactory mFakeFeatureFactory;
|
|
@Mock
|
|
private PreferenceScreen mScreen;
|
|
private TestFragment mTestFragment;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
FakeFeatureFactory.setupForTest(mContext);
|
|
mFakeFeatureFactory = (FakeFeatureFactory) FeatureFactory.getFactory(mContext);
|
|
mDashboardCategory.tiles = new ArrayList<>();
|
|
mDashboardCategory.tiles.add(new Tile());
|
|
mTestFragment = new TestFragment(ShadowApplication.getInstance().getApplicationContext());
|
|
mTestFragment.onAttach(mContext);
|
|
}
|
|
|
|
@Test
|
|
public void testPreferenceControllerGetterSetter_shouldAddAndGetProperly() {
|
|
final TestPreferenceController controller = new TestPreferenceController(mContext);
|
|
mTestFragment.addPreferenceController(controller);
|
|
|
|
final TestPreferenceController retrievedController = mTestFragment.getPreferenceController
|
|
(TestPreferenceController.class);
|
|
|
|
assertThat(controller).isSameAs(retrievedController);
|
|
}
|
|
|
|
@Test
|
|
public void displayTilesAsPreference_shouldAddTilesWithIntent() {
|
|
when(mFakeFeatureFactory.dashboardFeatureProvider.getDashboardKeyForTile(any(Tile.class)))
|
|
.thenReturn("test_key");
|
|
mTestFragment.displayTilesAsPreference("TEST_FRAGMENT", mScreen, mDashboardCategory);
|
|
|
|
verify(mScreen).addPreference(any(DashboardTilePreference.class));
|
|
}
|
|
|
|
@Test
|
|
public void displayTilesAsPreference_shouldNotAddTilesWithoutIntent() {
|
|
mTestFragment.displayTilesAsPreference("TEST_FRAGMENT", mScreen, mDashboardCategory);
|
|
|
|
verify(mScreen, never()).addPreference(any(DashboardTilePreference.class));
|
|
}
|
|
|
|
@Test
|
|
public void displayTilesAsPreference_withEmptyCategory_shouldNotAddTiles() {
|
|
mDashboardCategory.tiles = null;
|
|
mTestFragment.displayTilesAsPreference("TEST_FRAGMENT", mScreen, mDashboardCategory);
|
|
|
|
verify(mScreen, never()).addPreference(any(DashboardTilePreference.class));
|
|
}
|
|
|
|
public static class TestPreferenceController extends PreferenceController {
|
|
|
|
public TestPreferenceController(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public boolean handlePreferenceTreeClick(Preference preference) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void updateNonIndexableKeys(List<String> keys) {
|
|
|
|
}
|
|
}
|
|
|
|
public static class TestFragment extends DashboardFragment {
|
|
|
|
private final Context mContext;
|
|
|
|
public TestFragment(Context context) {
|
|
mContext = context;
|
|
}
|
|
|
|
@Override
|
|
public Context getContext() {
|
|
return mContext;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void onCategoriesChanged() {
|
|
|
|
}
|
|
}
|
|
|
|
}
|