Bug: 231927706 Test: build, flash, run unit test, then test manually. Change-Id: Ia0585302c5cf86cd6035315fa750c71b9df55237
96 lines
4.0 KiB
Java
96 lines
4.0 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.location;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import android.content.Context;
|
|
import android.location.LocationManager;
|
|
|
|
import com.android.settings.R;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class TopLevelLocationPreferenceControllerTest {
|
|
private static final String PREFERENCE_KEY = "top_level_location";
|
|
private Context mContext;
|
|
private TopLevelLocationPreferenceController mController;
|
|
private LocationManager mLocationManager;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mContext = RuntimeEnvironment.application;
|
|
mController = new TopLevelLocationPreferenceController(mContext, PREFERENCE_KEY);
|
|
mLocationManager = (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE);
|
|
}
|
|
|
|
@Test
|
|
public void isAvailable_byDefault_shouldReturnTrue() {
|
|
assertThat(mController.isAvailable()).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_whenLocationIsOff_shouldReturnStringForOff() {
|
|
mLocationManager.setLocationEnabledForUser(false, android.os.Process.myUserHandle());
|
|
assertThat(mController.getSummary()).isEqualTo(
|
|
mContext.getString(R.string.location_settings_summary_location_off));
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_whenLocationIsOn_shouldPreservePreviousText() {
|
|
final int locationAppCount = 5;
|
|
// Retrieve summary text once.
|
|
mLocationManager.setLocationEnabledForUser(true, android.os.Process.myUserHandle());
|
|
mController.setLocationAppCount(locationAppCount);
|
|
mController.getSummary();
|
|
// Turn off location.
|
|
mLocationManager.setLocationEnabledForUser(false, android.os.Process.myUserHandle());
|
|
// Turn on location again and check if the previous summary text is still cached.
|
|
mLocationManager.setLocationEnabledForUser(true, android.os.Process.myUserHandle());
|
|
assertThat(mController.getSummary()).isEqualTo(
|
|
mContext.getResources().getQuantityString(
|
|
R.plurals.location_settings_summary_location_on, locationAppCount,
|
|
locationAppCount));
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_whenLocationAppCountIsOne_shouldShowSingularString() {
|
|
final int locationAppCount = 1;
|
|
mLocationManager.setLocationEnabledForUser(true, android.os.Process.myUserHandle());
|
|
mController.setLocationAppCount(locationAppCount);
|
|
assertThat(mController.getSummary()).isEqualTo(
|
|
mContext.getResources().getQuantityString(
|
|
R.plurals.location_settings_summary_location_on,
|
|
locationAppCount, locationAppCount));
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_whenLocationAppCountIsGreaterThanOne_shouldShowPluralString() {
|
|
final int locationAppCount = 5;
|
|
mLocationManager.setLocationEnabledForUser(true, android.os.Process.myUserHandle());
|
|
mController.setLocationAppCount(locationAppCount);
|
|
assertThat(mController.getSummary()).isEqualTo(
|
|
mContext.getResources().getQuantityString(
|
|
R.plurals.location_settings_summary_location_on,
|
|
locationAppCount, locationAppCount));
|
|
}
|
|
} |