summaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/providers/contacts/LocaleSetTest.java
blob: 4c1b8d344b271d6d1344597f21b2017c0afe512b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (C) 2014 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.providers.contacts;

import android.test.suitebuilder.annotation.SmallTest;
import java.util.Locale;
import junit.framework.TestCase;

@SmallTest
public class LocaleSetTest extends TestCase {
    private void testLocaleStringsHelper(Locale primaryLocale,
            Locale secondaryLocale, final String expectedString) throws Exception {
        final LocaleSet locales = new LocaleSet(primaryLocale, secondaryLocale);
        final String localeString = locales.toString();
        assertEquals(expectedString, localeString);

        final LocaleSet parseLocales = LocaleSet.getLocaleSet(localeString);
        assertEquals(locales, parseLocales);
    }

    @SmallTest
    public void testLocaleStrings() throws Exception {
        testLocaleStringsHelper(Locale.US, null, "en-US");
        testLocaleStringsHelper(Locale.US, Locale.CHINA, "en-US;zh-CN");
        testLocaleStringsHelper(Locale.JAPAN, Locale.GERMANY, "ja-JP;de-DE");
    }

    private void testNormalizationHelper(String localeString,
            Locale expectedPrimary, Locale expectedSecondary) throws Exception {
        final LocaleSet expected = new LocaleSet(expectedPrimary, expectedSecondary);
        final LocaleSet actual = LocaleSet.getLocaleSet(localeString).normalize();
        assertEquals(expected, actual);
    }

    @SmallTest
    public void testNormalization() throws Exception {
        // Single locale
        testNormalizationHelper("en-US", Locale.US, null);
        // Disallow secondary with same language as primary
        testNormalizationHelper("fr-CA;fr-FR", Locale.CANADA_FRENCH, null);
        testNormalizationHelper("en-US;zh-CN", Locale.US, Locale.CHINA);
        // Disallow both locales CJK
        testNormalizationHelper("ja-JP;zh-CN", Locale.JAPAN, null);
        // Disallow en as secondary (happens by default)
        testNormalizationHelper("zh-CN;en-US", Locale.CHINA, null);
        testNormalizationHelper("zh-CN;de-DE", Locale.CHINA, Locale.GERMANY);
    }
}