Fix a bug where autocaps would jam auto-commit

Bug: 11311002
Change-Id: I62955e364c9ffc75322cf05fa3ad7985f1d09259
main
Jean Chalard 2013-10-21 14:40:32 +09:00
parent 859b117118
commit c6a121805f
2 changed files with 9 additions and 3 deletions

View File

@ -475,7 +475,7 @@ public final class Suggest {
}
return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKind,
wordInfo.mSourceDict, wordInfo.mIndexOfTouchPointOfSecondWord,
SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */);
wordInfo.mAutoCommitFirstWordConfidence);
}
public void close() {

View File

@ -25,6 +25,7 @@ import com.android.inputmethod.latin.utils.CollectionUtils;
import java.util.ArrayList;
import java.util.Locale;
import java.util.Random;
@SmallTest
public class SuggestedWordsTests extends AndroidTestCase {
@ -72,15 +73,20 @@ public class SuggestedWordsTests extends AndroidTestCase {
return new SuggestedWordInfo(s, 100,
SuggestedWordInfo.KIND_TYPED, null /* sourceDict */,
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */);
new Random().nextInt(1000000) /* autoCommitFirstWordConfidence */);
}
// Helper for testGetTransformedWordInfo
private SuggestedWordInfo transformWordInfo(final String info,
final int trailingSingleQuotesCount) {
return Suggest.getTransformedSuggestedWordInfo(createWordInfo(info),
final SuggestedWordInfo suggestedWordInfo = createWordInfo(info);
final SuggestedWordInfo returnedWordInfo =
Suggest.getTransformedSuggestedWordInfo(suggestedWordInfo,
Locale.ENGLISH, false /* isAllUpperCase */, false /* isFirstCharCapitalized */,
trailingSingleQuotesCount);
assertEquals(suggestedWordInfo.mAutoCommitFirstWordConfidence,
returnedWordInfo.mAutoCommitFirstWordConfidence);
return returnedWordInfo;
}
public void testGetTransformedSuggestedWordInfo() {