Only disable the controllers not the whole fragment because user might need to have entry for other features. Change-Id: I9c44cca97189a2115785cf70aee8eb580ac56000 Fixes: 73664409 Signed-off-by: Weilun Du <wdu@google.com>
117 lines
4.3 KiB
Java
117 lines
4.3 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.connecteddevice;
|
|
|
|
import static android.arch.lifecycle.Lifecycle.Event.ON_START;
|
|
|
|
import static com.android.settings.core.BasePreferenceController.AVAILABLE;
|
|
import static com.android.settings.core.BasePreferenceController.DISABLED_UNSUPPORTED;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.never;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
|
|
import android.arch.lifecycle.LifecycleOwner;
|
|
import android.content.Context;
|
|
import android.content.pm.PackageManager;
|
|
import android.support.v7.preference.Preference;
|
|
import android.support.v7.preference.PreferenceGroup;
|
|
import android.support.v7.preference.PreferenceManager;
|
|
import android.support.v7.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.TestConfig;
|
|
import com.android.settings.bluetooth.BluetoothDeviceUpdater;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
|
|
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.RuntimeEnvironment;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public class SavedDeviceGroupControllerTest {
|
|
private static final String PREFERENCE_KEY_1 = "pref_key_1";
|
|
|
|
@Mock
|
|
private DashboardFragment mDashboardFragment;
|
|
@Mock
|
|
private BluetoothDeviceUpdater mBluetoothDeviceUpdater;
|
|
@Mock
|
|
private PreferenceScreen mPreferenceScreen;
|
|
@Mock(answer = Answers.RETURNS_DEEP_STUBS)
|
|
private PreferenceManager mPreferenceManager;
|
|
@Mock
|
|
private PackageManager mPackageManager;
|
|
|
|
private PreferenceGroup mPreferenceGroup;
|
|
private Context mContext;
|
|
private Preference mPreference;
|
|
private SavedDeviceGroupController mConnectedDeviceGroupController;
|
|
private LifecycleOwner mLifecycleOwner;
|
|
private Lifecycle mLifecycle;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
|
|
mContext = spy(RuntimeEnvironment.application);
|
|
mLifecycleOwner = () -> mLifecycle;
|
|
mLifecycle = new Lifecycle(mLifecycleOwner);
|
|
|
|
doReturn(mContext).when(mDashboardFragment).getContext();
|
|
doReturn(mPackageManager).when(mContext).getPackageManager();
|
|
}
|
|
|
|
@Test
|
|
public void constructor_noBluetoothFeature_shouldNotRegisterCallback() {
|
|
doReturn(false).when(mPackageManager).hasSystemFeature(PackageManager.FEATURE_BLUETOOTH);
|
|
|
|
mConnectedDeviceGroupController = new SavedDeviceGroupController(mDashboardFragment,
|
|
mLifecycle, mBluetoothDeviceUpdater);
|
|
|
|
assertThat(mConnectedDeviceGroupController.getAvailabilityStatus()).isEqualTo(
|
|
DISABLED_UNSUPPORTED);
|
|
|
|
mLifecycle.handleLifecycleEvent(ON_START);
|
|
verify(mBluetoothDeviceUpdater, never()).registerCallback();
|
|
}
|
|
|
|
|
|
@Test
|
|
public void constructor_hasBluetoothFeature_shouldRegisterCallback() {
|
|
doReturn(true).when(mPackageManager).hasSystemFeature(PackageManager.FEATURE_BLUETOOTH);
|
|
|
|
mConnectedDeviceGroupController = new SavedDeviceGroupController(mDashboardFragment,
|
|
mLifecycle, mBluetoothDeviceUpdater);
|
|
|
|
assertThat(mConnectedDeviceGroupController.getAvailabilityStatus()).isEqualTo(
|
|
AVAILABLE);
|
|
|
|
mLifecycle.handleLifecycleEvent(ON_START);
|
|
verify(mBluetoothDeviceUpdater).registerCallback();
|
|
}
|
|
}
|