aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/LocaleFactoryTestCase.java
blob: 4ea2ccd16e7133f6e92b6b618238348af2ac3d33 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language;

import org.junit.Test;

import java.util.Locale;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

/**
 * @author Simon Thoresen Hult
 */
public class LocaleFactoryTestCase {

    @Test
    public void requireThatLocaleCanBeCreatedFromLanguageTag() {
        assertLocale("zh", "zh", "", "");
        assertLocale("zh-CN", "zh", "", "CN");
        assertLocale("zh-foo-CN", "zh", "", "CN");
        assertLocale("zh-Hans", "zh", "Hans", "");
        assertLocale("zh-TW", "zh", "", "TW");
        assertLocale("zh-foo-TW", "zh", "", "TW");
        assertLocale("zh-Hant", "zh", "Hant", "");
        assertLocale("ja", "ja", "", "");
        assertLocale("ko", "ko", "", "");
        assertLocale("en", "en", "", "");
        assertLocale("en-NO", "en", "", "NO");
        assertLocale("de", "de", "", "");
        assertLocale("es", "es", "", "");
        assertLocale("es-419", "es", "", "419");

        try {
            LocaleFactory.fromLanguageTag(null);
            fail();
        } catch (NullPointerException e) {

        }

        assertLocale("", "", "", "");
        assertLocale("z-foo", "", "", "");
        assertLocale("ojeroierhoiherohjdadsfodsfoifiopeoipefwoipfwe", "", "", "");
    }

    private static void assertLocale(String tag, String language, String variant, String country) {
        Locale locale = LocaleFactory.fromLanguageTag(tag);
        assertEquals(language, locale.getLanguage());
        assertEquals(country, locale.getCountry());
        assertEquals(variant, locale.getVariant());
    }

}