Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4164660 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix robolectric test failure"

parents d9f5d1ca 491e475d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ import com.android.settings.datetime.ZonePicker;
import com.android.settings.testutils.SettingsRobolectricTestRunner;
import com.android.settings.testutils.shadow.ShadowLibcoreTimeZoneNames;
import com.android.settings.testutils.shadow.ShadowTimeZoneNames;
import com.android.settings.testutils.shadow.ShadowZoneGetterData;

import org.junit.Test;
import org.junit.runner.RunWith;
@@ -38,11 +39,12 @@ import org.robolectric.annotation.Config;
@RunWith(SettingsRobolectricTestRunner.class)
@Config(
        manifest = TestConfig.MANIFEST_PATH,
        sdk = TestConfig.SDK_VERSION,
        sdk = TestConfig.SDK_VERSION_O,
        shadows = {
                ShadowLibcoreTimeZoneNames.class,
                ShadowLibcoreTimeZoneNames.ShadowZoneStringsCache.class,
                ShadowTimeZoneNames.class
                ShadowTimeZoneNames.class,
                ShadowZoneGetterData.class,
        }
)
public class ZonePickerTest {
+52 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 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.testutils.shadow;


import android.icu.util.TimeZone;

import com.android.settingslib.datetime.ZoneGetter;

import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;

import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@Implements(ZoneGetter.ZoneGetterData.class)
public class ShadowZoneGetterData {
    private static final Map<String, List<String>> TIME_ZONE_LOOKUP = new HashMap<>();

    static {
        TIME_ZONE_LOOKUP.put("FR", Collections.singletonList(
                TimeZone.getTimeZone("Europe/Paris", TimeZone.TIMEZONE_JDK).getID()));
        TIME_ZONE_LOOKUP.put("ML", Collections.singletonList(
                TimeZone.getTimeZone("Europe/Amsterdam", TimeZone.TIMEZONE_JDK).getID()));
        TIME_ZONE_LOOKUP.put("US", Arrays.asList(
                TimeZone.getTimeZone("America/New_York", TimeZone.TIMEZONE_JDK).getID()));
        TIME_ZONE_LOOKUP.put("JP", Collections.singletonList(
                TimeZone.getTimeZone("Asia/Tokyo", TimeZone.TIMEZONE_JDK).getID()));
    }

    @Implementation
    public List<String> lookupTimeZoneIdsByCountry(String country) {
        return TIME_ZONE_LOOKUP.get(country);
    }
}