- Temperature unit - Calendar type - First day of week Bug: b/246929960 Bug: b/247072550 Bug: b/247071792 Bug: b/247071572 Test: atest passed Test: Manual test passed Change-Id: Iea093588da33b352b5e7bfa5c483659e7afb8296
100 lines
3.5 KiB
Java
100 lines
3.5 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.regionalpreferences;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import android.content.Context;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
|
|
import com.android.settings.testutils.ResourcesUtils;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
import java.util.Locale;
|
|
|
|
public class TemperatureUnitControllerTest {
|
|
private Context mApplicationContext;
|
|
private TemperatureUnitController mController;
|
|
private String mCacheProviderContent = "";
|
|
private Locale mCacheLocale;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
mApplicationContext = ApplicationProvider.getApplicationContext();
|
|
mController = new TemperatureUnitController(mApplicationContext, "key");
|
|
mCacheProviderContent = Settings.System.getString(
|
|
mApplicationContext.getContentResolver(), Settings.System.LOCALE_PREFERENCES);
|
|
mCacheLocale = Locale.getDefault(Locale.Category.FORMAT);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() throws Exception {
|
|
RegionalPreferenceTestUtils.setSettingsProviderContent(
|
|
mApplicationContext, mCacheProviderContent);
|
|
Locale.setDefault(mCacheLocale);
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_hasProviderValue_resultIsCelsius() {
|
|
RegionalPreferenceTestUtils.setSettingsProviderContent(
|
|
mApplicationContext, "und-u-mu-celsius");
|
|
|
|
String summary = mController.getSummary().toString();
|
|
|
|
assertEquals(ResourcesUtils.getResourcesString(
|
|
mApplicationContext, "celsius_temperature_unit"), summary);
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_hasProviderValue_resultIsFahrenheit() {
|
|
RegionalPreferenceTestUtils.setSettingsProviderContent(
|
|
mApplicationContext, "und-u-mu-fahrenhe");
|
|
|
|
String summary = mController.getSummary().toString();
|
|
|
|
assertEquals(ResourcesUtils.getResourcesString(
|
|
mApplicationContext, "fahrenheit_temperature_unit"), summary);
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_noProviderValueButHasDefaultLocaleWithSubtag_resultIsFahrenheit() {
|
|
RegionalPreferenceTestUtils.setSettingsProviderContent(mApplicationContext, "");
|
|
Locale.setDefault(Locale.forLanguageTag("en-US-u-mu-fahrenhe"));
|
|
|
|
String summary = mController.getSummary().toString();
|
|
|
|
assertEquals(ResourcesUtils.getResourcesString(
|
|
mApplicationContext, "fahrenheit_temperature_unit"), summary);
|
|
}
|
|
|
|
@Test
|
|
public void getSummary_noProviderValueAndDefaultLocaleWithoutSubtag_resultIsDefault() {
|
|
RegionalPreferenceTestUtils.setSettingsProviderContent(mApplicationContext, "");
|
|
Locale.setDefault(Locale.forLanguageTag("en-US"));
|
|
|
|
String summary = mController.getSummary().toString();
|
|
|
|
assertEquals(ResourcesUtils.getResourcesString(
|
|
mApplicationContext, "default_string_of_regional_preference"), summary);
|
|
}
|
|
}
|