Change the SettingsUI logic slightly: All other things being equal, pick the "worst" location dependency status to show. Some renaming and annotations for clarity. Also fixes the mocking behavior in the tests around resources, which were accidentally using the real strings and therefore dependent on real resource string values. Tests are made more explicit. Bug: 266921482 Test: atest tests/robotests/src/com/android/settings/datetime/LocationProviderStatusPreferenceControllerTest.java Change-Id: Ifd96c543dad692884be23bf94e3f1294eed291d5
280 lines
14 KiB
Java
280 lines
14 KiB
Java
/*
|
|
* Copyright (C) 2022 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.datetime;
|
|
|
|
import static android.app.time.DetectorStatusTypes.DETECTION_ALGORITHM_STATUS_RUNNING;
|
|
import static android.app.time.DetectorStatusTypes.DETECTOR_STATUS_RUNNING;
|
|
import static android.app.time.LocationTimeZoneAlgorithmStatus.PROVIDER_STATUS_IS_CERTAIN;
|
|
import static android.app.time.LocationTimeZoneAlgorithmStatus.PROVIDER_STATUS_IS_UNCERTAIN;
|
|
import static android.service.timezone.TimeZoneProviderStatus.DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS;
|
|
import static android.service.timezone.TimeZoneProviderStatus.DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS;
|
|
import static android.service.timezone.TimeZoneProviderStatus.DEPENDENCY_STATUS_OK;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.app.time.Capabilities;
|
|
import android.app.time.Capabilities.CapabilityState;
|
|
import android.app.time.LocationTimeZoneAlgorithmStatus;
|
|
import android.app.time.LocationTimeZoneAlgorithmStatus.ProviderStatus;
|
|
import android.app.time.TelephonyTimeZoneAlgorithmStatus;
|
|
import android.app.time.TimeManager;
|
|
import android.app.time.TimeZoneCapabilities;
|
|
import android.app.time.TimeZoneCapabilitiesAndConfig;
|
|
import android.app.time.TimeZoneConfiguration;
|
|
import android.app.time.TimeZoneDetectorStatus;
|
|
import android.content.Context;
|
|
import android.os.UserHandle;
|
|
import android.service.timezone.TimeZoneProviderStatus;
|
|
import android.service.timezone.TimeZoneProviderStatus.DependencyStatus;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class LocationProviderStatusPreferenceControllerTest {
|
|
|
|
private Context mContext;
|
|
@Mock
|
|
private TimeManager mTimeManager;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
mContext = spy(RuntimeEnvironment.application);
|
|
|
|
when(mContext.getSystemService(TimeManager.class)).thenReturn(mTimeManager);
|
|
when(mContext.getString(
|
|
R.string.location_time_zone_detection_status_summary_blocked_by_settings))
|
|
.thenReturn("BBS");
|
|
when(mContext.getString(
|
|
R.string.location_time_zone_detection_status_summary_degraded_by_settings))
|
|
.thenReturn("DBS");
|
|
}
|
|
|
|
@Test
|
|
public void testProviderStatus_primaryCertain() {
|
|
LocationProviderStatusPreferenceController controller =
|
|
new LocationProviderStatusPreferenceController(mContext, "LPSPC");
|
|
|
|
TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
// Test whether reportable statuses that can still result in the LTZP being "certain" are
|
|
// reported.
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_DEGRADED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
}
|
|
|
|
@Test
|
|
public void testProviderStatus_primaryUncertain() {
|
|
LocationProviderStatusPreferenceController controller =
|
|
new LocationProviderStatusPreferenceController(mContext, "LPSPC");
|
|
|
|
TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_OK);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
}
|
|
|
|
@Test
|
|
public void testProviderStatus_nullProviderStatuses() {
|
|
LocationProviderStatusPreferenceController controller =
|
|
new LocationProviderStatusPreferenceController(mContext, "LPSPC");
|
|
|
|
TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, null,
|
|
PROVIDER_STATUS_IS_CERTAIN, null);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, null);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, DEPENDENCY_STATUS_OK,
|
|
PROVIDER_STATUS_IS_CERTAIN, null);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.CONDITIONALLY_UNAVAILABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS,
|
|
PROVIDER_STATUS_IS_CERTAIN, null);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
|
|
capabilitiesAndConfig = createCapabilitiesAndConfig(false,
|
|
PROVIDER_STATUS_IS_CERTAIN, null,
|
|
PROVIDER_STATUS_IS_UNCERTAIN, DEPENDENCY_STATUS_BLOCKED_BY_SETTINGS);
|
|
when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig);
|
|
|
|
assertThat(controller.getAvailabilityStatus()).isEqualTo(
|
|
BasePreferenceController.AVAILABLE_UNSEARCHABLE);
|
|
}
|
|
|
|
private static TimeZoneCapabilitiesAndConfig createCapabilitiesAndConfig(
|
|
boolean userCanConfigureGeoDetection,
|
|
@ProviderStatus int primaryProviderStatus,
|
|
@Nullable @DependencyStatus Integer primaryProviderLocationStatus,
|
|
@ProviderStatus int secondaryProviderStatus,
|
|
@Nullable @DependencyStatus Integer secondaryProviderLocationStatus) {
|
|
TelephonyTimeZoneAlgorithmStatus telephonyTimeZoneAlgorithmStatus =
|
|
new TelephonyTimeZoneAlgorithmStatus(DETECTION_ALGORITHM_STATUS_RUNNING);
|
|
|
|
LocationTimeZoneAlgorithmStatus locationTimeZoneAlgorithmStatus =
|
|
new LocationTimeZoneAlgorithmStatus(DETECTION_ALGORITHM_STATUS_RUNNING,
|
|
primaryProviderStatus,
|
|
createTimeZoneProviderStatusOrNull(primaryProviderLocationStatus),
|
|
secondaryProviderStatus,
|
|
createTimeZoneProviderStatusOrNull(secondaryProviderLocationStatus));
|
|
|
|
TimeZoneDetectorStatus status = new TimeZoneDetectorStatus(DETECTOR_STATUS_RUNNING,
|
|
telephonyTimeZoneAlgorithmStatus, locationTimeZoneAlgorithmStatus);
|
|
|
|
@CapabilityState int configureGeoDetectionEnabledCapability = userCanConfigureGeoDetection
|
|
? Capabilities.CAPABILITY_POSSESSED : Capabilities.CAPABILITY_NOT_SUPPORTED;
|
|
TimeZoneCapabilities capabilities = new TimeZoneCapabilities.Builder(UserHandle.SYSTEM)
|
|
.setConfigureAutoDetectionEnabledCapability(Capabilities.CAPABILITY_POSSESSED)
|
|
.setUseLocationEnabled(true)
|
|
.setConfigureGeoDetectionEnabledCapability(configureGeoDetectionEnabledCapability)
|
|
.setSetManualTimeZoneCapability(Capabilities.CAPABILITY_POSSESSED)
|
|
.build();
|
|
|
|
return new TimeZoneCapabilitiesAndConfig(status, capabilities,
|
|
new TimeZoneConfiguration.Builder().build());
|
|
}
|
|
|
|
private static TimeZoneProviderStatus createTimeZoneProviderStatusOrNull(
|
|
@Nullable @DependencyStatus Integer locationDependencyStatusOrNull) {
|
|
if (locationDependencyStatusOrNull == null) {
|
|
return null;
|
|
}
|
|
return new TimeZoneProviderStatus.Builder()
|
|
.setLocationDetectionDependencyStatus(locationDependencyStatusOrNull)
|
|
.build();
|
|
}
|
|
}
|