blob: b97887dc9b657485c58e2bf4033ecd0bee58ef34 [file] [log] [blame]
/*
* 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.car.settings.location;
import static com.android.car.settings.common.PreferenceController.AVAILABLE;
import static com.android.car.settings.common.PreferenceController.UNSUPPORTED_ON_DEVICE;
import static com.google.common.truth.Truth.assertThat;
import android.content.Context;
import android.content.pm.PackageManager;
import android.provider.Settings;
import androidx.lifecycle.Lifecycle;
import androidx.preference.SwitchPreference;
import com.android.car.settings.CarSettingsRobolectricTestRunner;
import com.android.car.settings.common.PreferenceControllerTestHelper;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.Shadows;
@RunWith(CarSettingsRobolectricTestRunner.class)
public class WifiScanningPreferenceControllerTest {
private Context mContext;
private SwitchPreference mPreference;
private WifiScanningPreferenceController mController;
@Before
public void setUp() {
mContext = RuntimeEnvironment.application;
mPreference = new SwitchPreference(mContext);
PreferenceControllerTestHelper<WifiScanningPreferenceController> controllerHelper =
new PreferenceControllerTestHelper<>(mContext,
WifiScanningPreferenceController.class, mPreference);
mController = controllerHelper.getController();
Shadows.shadowOf(mContext.getPackageManager()).setSystemFeature(
PackageManager.FEATURE_WIFI, /* supported= */ true);
controllerHelper.sendLifecycleEvent(Lifecycle.Event.ON_CREATE);
}
@Test
public void getAvailabilityStatus_hasWifiFeature_available() {
Shadows.shadowOf(mContext.getPackageManager()).setSystemFeature(
PackageManager.FEATURE_WIFI, /* supported= */ true);
assertThat(mController.getAvailabilityStatus()).isEqualTo(AVAILABLE);
}
@Test
public void getAvailabilityStatus_noWifiFeature_unsupported() {
Shadows.shadowOf(mContext.getPackageManager()).setSystemFeature(
PackageManager.FEATURE_WIFI, /* supported= */ false);
assertThat(mController.getAvailabilityStatus()).isEqualTo(UNSUPPORTED_ON_DEVICE);
}
@Test
public void refreshUi_wifiScanningEnabled_shouldCheckPreference() {
mPreference.setChecked(false);
Settings.Global.putInt(mContext.getContentResolver(),
Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 1);
mController.refreshUi();
assertThat(mPreference.isChecked()).isTrue();
}
@Test
public void refreshUi_wifiScanningDisabled_shouldUncheckPreference() {
mPreference.setChecked(true);
Settings.Global.putInt(mContext.getContentResolver(),
Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 0);
mController.refreshUi();
assertThat(mPreference.isChecked()).isFalse();
}
@Test
public void handlePreferenceChanged_preferenceChecked_shouldEnableWifiScanning() {
mPreference.callChangeListener(true);
assertThat(Settings.Global.getInt(mContext.getContentResolver(),
Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 0)).isEqualTo(1);
}
@Test
public void handlePreferenceChanged_preferenceUnchecked_shouldDisableWifiScanning() {
mPreference.callChangeListener(false);
assertThat(Settings.Global.getInt(mContext.getContentResolver(),
Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 1)).isEqualTo(0);
}
}