summaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/simple/SimpleNormalizerTestCase.java
blob: ae8fefcc15cd73cc775f11e91580b661cc21f041 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.simple;

import com.yahoo.language.process.Normalizer;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
public class SimpleNormalizerTestCase {

    private static final Normalizer NORMALIZER = new SimpleNormalizer();

    @Test
    public void requireThatInputIsNfkcNormalized() {
        assertNormalize("\u212B", "\u00C5");
        assertNormalize("\u2126", "\u03A9");
        assertNormalize("\u00C5", "\u00C5");
        assertNormalize("\u00F4", "\u00F4");
        assertNormalize("\u1E69", "\u1E69");
        assertNormalize("\u1E0B\u0323", "\u1E0D\u0307");
        assertNormalize("\u0071\u0307\u0323", "q\u0323\u0307");
        assertNormalize("\uFB01", "fi");
        assertNormalize("\u0032\u2075", "25");
        assertNormalize("\u1E9B\u0323", "\u1E69");
    }

    private static void assertNormalize(String input, String expectedNormalForm) {
        assertEquals(expectedNormalForm, NORMALIZER.normalize(input));
    }

}