2013-04-10 09:30:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 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.inputmethod.latin;
|
|
|
|
|
|
|
|
import android.test.AndroidTestCase;
|
|
|
|
import android.test.suitebuilder.annotation.SmallTest;
|
|
|
|
|
2014-05-23 11:18:17 +00:00
|
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
2013-06-23 16:11:32 +00:00
|
|
|
|
2013-04-10 09:30:11 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
@SmallTest
|
|
|
|
public class SuggestedWordsTests extends AndroidTestCase {
|
2014-08-24 21:37:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to create a dummy {@link SuggestedWordInfo} with specifying
|
|
|
|
* {@link SuggestedWordInfo#KIND_TYPED}.
|
|
|
|
*
|
|
|
|
* @param word the word to be used to create {@link SuggestedWordInfo}.
|
|
|
|
* @return a new instance of {@link SuggestedWordInfo}.
|
|
|
|
*/
|
|
|
|
private static SuggestedWordInfo createTypedWordInfo(final String word) {
|
|
|
|
// Use 100 as the frequency because the numerical value does not matter as
|
|
|
|
// long as it's > 1 and < INT_MAX.
|
|
|
|
return new SuggestedWordInfo(word, 100 /* score */,
|
|
|
|
SuggestedWordInfo.KIND_TYPED,
|
|
|
|
null /* sourceDict */,
|
|
|
|
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
|
|
|
|
1 /* autoCommitFirstWordConfidence */);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to create a dummy {@link SuggestedWordInfo} with specifying
|
|
|
|
* {@link SuggestedWordInfo#KIND_CORRECTION}.
|
|
|
|
*
|
|
|
|
* @param word the word to be used to create {@link SuggestedWordInfo}.
|
|
|
|
* @return a new instance of {@link SuggestedWordInfo}.
|
|
|
|
*/
|
|
|
|
private static SuggestedWordInfo createCorrectionWordInfo(final String word) {
|
|
|
|
return new SuggestedWordInfo(word, 1 /* score */,
|
|
|
|
SuggestedWordInfo.KIND_CORRECTION,
|
|
|
|
null /* sourceDict */,
|
|
|
|
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
|
|
|
|
SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */);
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:30:11 +00:00
|
|
|
public void testGetSuggestedWordsExcludingTypedWord() {
|
|
|
|
final String TYPED_WORD = "typed";
|
|
|
|
final int NUMBER_OF_ADDED_SUGGESTIONS = 5;
|
2014-08-26 09:54:08 +00:00
|
|
|
final int KIND_OF_SECOND_CORRECTION = SuggestedWordInfo.KIND_CORRECTION;
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> list = new ArrayList<>();
|
2014-08-24 21:37:24 +00:00
|
|
|
list.add(createTypedWordInfo(TYPED_WORD));
|
2013-04-10 09:30:11 +00:00
|
|
|
for (int i = 0; i < NUMBER_OF_ADDED_SUGGESTIONS; ++i) {
|
2014-08-24 21:37:24 +00:00
|
|
|
list.add(createCorrectionWordInfo(Integer.toString(i)));
|
2013-04-10 09:30:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final SuggestedWords words = new SuggestedWords(
|
2014-02-06 06:51:04 +00:00
|
|
|
list, null /* rawSuggestions */,
|
2013-04-10 09:30:11 +00:00
|
|
|
false /* typedWordValid */,
|
|
|
|
false /* willAutoCorrect */,
|
|
|
|
false /* isObsoleteSuggestions */,
|
2014-08-14 03:48:50 +00:00
|
|
|
SuggestedWords.INPUT_STYLE_NONE);
|
2013-04-10 09:30:11 +00:00
|
|
|
assertEquals(NUMBER_OF_ADDED_SUGGESTIONS + 1, words.size());
|
|
|
|
assertEquals("typed", words.getWord(0));
|
2014-05-28 11:35:45 +00:00
|
|
|
assertTrue(words.getInfo(0).isKindOf(SuggestedWordInfo.KIND_TYPED));
|
2013-04-10 09:30:11 +00:00
|
|
|
assertEquals("0", words.getWord(1));
|
2014-08-26 09:54:08 +00:00
|
|
|
assertTrue(words.getInfo(1).isKindOf(KIND_OF_SECOND_CORRECTION));
|
2013-04-10 09:30:11 +00:00
|
|
|
assertEquals("4", words.getWord(5));
|
2014-08-26 09:54:08 +00:00
|
|
|
assertTrue(words.getInfo(5).isKindOf(KIND_OF_SECOND_CORRECTION));
|
2013-04-10 09:30:11 +00:00
|
|
|
|
2014-08-26 09:54:08 +00:00
|
|
|
final SuggestedWords wordsWithoutTyped =
|
|
|
|
words.getSuggestedWordsExcludingTypedWordForRecorrection();
|
|
|
|
// Make sure that the typed word has indeed been excluded, by testing the size of the
|
|
|
|
// suggested words, the string and the kind of the top suggestion, which should match
|
|
|
|
// the string and kind of what we inserted after the typed word.
|
2013-04-10 09:30:11 +00:00
|
|
|
assertEquals(words.size() - 1, wordsWithoutTyped.size());
|
|
|
|
assertEquals("0", wordsWithoutTyped.getWord(0));
|
2014-08-26 09:54:08 +00:00
|
|
|
assertTrue(wordsWithoutTyped.getInfo(0).isKindOf(KIND_OF_SECOND_CORRECTION));
|
2013-04-10 09:30:11 +00:00
|
|
|
}
|
2013-09-17 10:43:22 +00:00
|
|
|
|
|
|
|
// Helper for testGetTransformedWordInfo
|
|
|
|
private SuggestedWordInfo transformWordInfo(final String info,
|
|
|
|
final int trailingSingleQuotesCount) {
|
2014-08-24 21:37:24 +00:00
|
|
|
final SuggestedWordInfo suggestedWordInfo = createTypedWordInfo(info);
|
2013-10-21 05:40:32 +00:00
|
|
|
final SuggestedWordInfo returnedWordInfo =
|
|
|
|
Suggest.getTransformedSuggestedWordInfo(suggestedWordInfo,
|
2013-09-17 10:43:22 +00:00
|
|
|
Locale.ENGLISH, false /* isAllUpperCase */, false /* isFirstCharCapitalized */,
|
|
|
|
trailingSingleQuotesCount);
|
2013-10-21 05:40:32 +00:00
|
|
|
assertEquals(suggestedWordInfo.mAutoCommitFirstWordConfidence,
|
|
|
|
returnedWordInfo.mAutoCommitFirstWordConfidence);
|
|
|
|
return returnedWordInfo;
|
2013-09-17 10:43:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void testGetTransformedSuggestedWordInfo() {
|
|
|
|
SuggestedWordInfo result = transformWordInfo("word", 0);
|
|
|
|
assertEquals(result.mWord, "word");
|
|
|
|
result = transformWordInfo("word", 1);
|
|
|
|
assertEquals(result.mWord, "word'");
|
|
|
|
result = transformWordInfo("word", 3);
|
|
|
|
assertEquals(result.mWord, "word'''");
|
|
|
|
result = transformWordInfo("didn't", 0);
|
|
|
|
assertEquals(result.mWord, "didn't");
|
|
|
|
result = transformWordInfo("didn't", 1);
|
|
|
|
assertEquals(result.mWord, "didn't");
|
|
|
|
result = transformWordInfo("didn't", 3);
|
|
|
|
assertEquals(result.mWord, "didn't''");
|
|
|
|
}
|
2014-08-24 21:37:24 +00:00
|
|
|
|
|
|
|
public void testGetTypedWordInfoOrNull() {
|
|
|
|
final String TYPED_WORD = "typed";
|
|
|
|
final int NUMBER_OF_ADDED_SUGGESTIONS = 5;
|
|
|
|
final ArrayList<SuggestedWordInfo> list = new ArrayList<>();
|
|
|
|
list.add(createTypedWordInfo(TYPED_WORD));
|
|
|
|
for (int i = 0; i < NUMBER_OF_ADDED_SUGGESTIONS; ++i) {
|
|
|
|
list.add(createCorrectionWordInfo(Integer.toString(i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure getTypedWordInfoOrNull() returns non-null object.
|
|
|
|
final SuggestedWords wordsWithTypedWord = new SuggestedWords(
|
|
|
|
list, null /* rawSuggestions */,
|
|
|
|
false /* typedWordValid */,
|
|
|
|
false /* willAutoCorrect */,
|
|
|
|
false /* isObsoleteSuggestions */,
|
|
|
|
SuggestedWords.INPUT_STYLE_NONE);
|
|
|
|
final SuggestedWordInfo typedWord = wordsWithTypedWord.getTypedWordInfoOrNull();
|
|
|
|
assertNotNull(typedWord);
|
|
|
|
assertEquals(TYPED_WORD, typedWord.mWord);
|
|
|
|
|
|
|
|
// Make sure getTypedWordInfoOrNull() returns null.
|
|
|
|
final SuggestedWords wordsWithoutTypedWord =
|
2014-08-26 09:54:08 +00:00
|
|
|
wordsWithTypedWord.getSuggestedWordsExcludingTypedWordForRecorrection();
|
2014-08-24 21:37:24 +00:00
|
|
|
assertNull(wordsWithoutTypedWord.getTypedWordInfoOrNull());
|
|
|
|
|
|
|
|
// Make sure getTypedWordInfoOrNull() returns null.
|
2014-09-22 03:40:41 +00:00
|
|
|
assertNull(SuggestedWords.getEmptyInstance().getTypedWordInfoOrNull());
|
2014-08-29 04:18:23 +00:00
|
|
|
|
|
|
|
final SuggestedWords emptySuggestedWords = new SuggestedWords(
|
|
|
|
new ArrayList<SuggestedWordInfo>(), null /* rawSuggestions */,
|
|
|
|
false /* typedWordValid */,
|
|
|
|
false /* willAutoCorrect */,
|
|
|
|
false /* isObsoleteSuggestions */,
|
|
|
|
SuggestedWords.INPUT_STYLE_NONE);
|
|
|
|
assertNull(emptySuggestedWords.getTypedWordInfoOrNull());
|
|
|
|
|
2014-09-22 03:40:41 +00:00
|
|
|
assertNull(SuggestedWords.getEmptyInstance().getTypedWordInfoOrNull());
|
2014-08-24 21:37:24 +00:00
|
|
|
}
|
2013-04-10 09:30:11 +00:00
|
|
|
}
|