FuzzyScoreTest.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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
 *
 *      https://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 org.apache.commons.text.similarity;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertSame;
import static org.junit.jupiter.api.Assertions.assertThrows;

import java.util.Locale;

import org.junit.jupiter.api.Test;

/**
 * Tests {@link FuzzyScore}.
 */
class FuzzyScoreTest {

    private static final FuzzyScore ENGLISH_SCORE = new FuzzyScore(Locale.ENGLISH);

    @Test
    void testGetFuzzyScore() {
        assertEquals(0, ENGLISH_SCORE.fuzzyScore("", ""));
        assertEquals(0, ENGLISH_SCORE.fuzzyScore("Workshop", "b"));
        assertEquals(1, ENGLISH_SCORE.fuzzyScore("Room", "o"));
        assertEquals(1, ENGLISH_SCORE.fuzzyScore("Workshop", "w"));
        assertEquals(2, ENGLISH_SCORE.fuzzyScore("Workshop", "ws"));
        assertEquals(4, ENGLISH_SCORE.fuzzyScore("Workshop", "wo"));
        assertEquals(3, ENGLISH_SCORE.fuzzyScore("Apache Software Foundation", "asf"));
    }

    @Test
    void testGetFuzzyScore_NullNullLocale() {
        assertThrows(IllegalArgumentException.class, () -> ENGLISH_SCORE.fuzzyScore(null, null));
    }

    @Test
    void testGetFuzzyScore_NullStringLocale() {
        assertThrows(IllegalArgumentException.class, () -> ENGLISH_SCORE.fuzzyScore(null, "not null"));
    }

    @Test
    void testGetFuzzyScore_StringNullLocale() {
        assertThrows(IllegalArgumentException.class, () -> ENGLISH_SCORE.fuzzyScore("not null", null));
    }

    @Test
    void testGetLocale() {
        final Locale locale = Locale.CANADA_FRENCH;
        final FuzzyScore fuzzyScore = new FuzzyScore(locale);
        final Locale localeTwo = fuzzyScore.getLocale();
        assertSame(localeTwo, locale);
    }

    @Test
    void testMissingLocale() {
        assertThrows(IllegalArgumentException.class, () -> new FuzzyScore((Locale) null));
    }

}