Fix some of the input logic tests

This behavior has been changed for bug#6105732

Bug: 6516976
Change-Id: Ief8225b26d831cd92a051ce25cc005270b6b1776
main
Jean Chalard 2012-05-18 19:10:48 +09:00
parent 1fc0c71fad
commit f83a6821bb
3 changed files with 33 additions and 25 deletions

View File

@ -18,6 +18,9 @@ package com.android.inputmethod.latin;
import com.android.inputmethod.keyboard.Keyboard; import com.android.inputmethod.keyboard.Keyboard;
import android.text.style.SuggestionSpan;
import android.text.style.UnderlineSpan;
public class BlueUnderlineTests extends InputTestsBase { public class BlueUnderlineTests extends InputTestsBase {
public void testBlueUnderline() { public void testBlueUnderline() {
@ -27,7 +30,7 @@ public class BlueUnderlineTests extends InputTestsBase {
type(STRING_TO_TYPE); type(STRING_TO_TYPE);
sleep(DELAY_TO_WAIT_FOR_UNDERLINE); sleep(DELAY_TO_WAIT_FOR_UNDERLINE);
runMessages(); runMessages();
final Span span = new Span(mTextView.getText()); final SpanGetter span = new SpanGetter(mTextView.getText(), SuggestionSpan.class);
assertEquals("show blue underline, span start", EXPECTED_SPAN_START, span.mStart); assertEquals("show blue underline, span start", EXPECTED_SPAN_START, span.mStart);
assertEquals("show blue underline, span end", EXPECTED_SPAN_END, span.mEnd); assertEquals("show blue underline, span end", EXPECTED_SPAN_END, span.mEnd);
assertEquals("show blue underline, span color", true, span.isAutoCorrectionIndicator()); assertEquals("show blue underline, span color", true, span.isAutoCorrectionIndicator());
@ -44,7 +47,7 @@ public class BlueUnderlineTests extends InputTestsBase {
type(STRING_2_TO_TYPE); type(STRING_2_TO_TYPE);
// We haven't have time to look into the dictionary yet, so the line should still be // We haven't have time to look into the dictionary yet, so the line should still be
// blue to avoid any flicker. // blue to avoid any flicker.
final Span spanBefore = new Span(mTextView.getText()); final SpanGetter spanBefore = new SpanGetter(mTextView.getText(), SuggestionSpan.class);
assertEquals("extend blue underline, span start", EXPECTED_SPAN_START, spanBefore.mStart); assertEquals("extend blue underline, span start", EXPECTED_SPAN_START, spanBefore.mStart);
assertEquals("extend blue underline, span end", EXPECTED_SPAN_END, spanBefore.mEnd); assertEquals("extend blue underline, span end", EXPECTED_SPAN_END, spanBefore.mEnd);
assertEquals("extend blue underline, span color", true, assertEquals("extend blue underline, span color", true,
@ -52,14 +55,15 @@ public class BlueUnderlineTests extends InputTestsBase {
sleep(DELAY_TO_WAIT_FOR_UNDERLINE); sleep(DELAY_TO_WAIT_FOR_UNDERLINE);
runMessages(); runMessages();
// Now we have been able to re-evaluate the word, there shouldn't be an auto-correction span // Now we have been able to re-evaluate the word, there shouldn't be an auto-correction span
final Span spanAfter = new Span(mTextView.getText()); final SpanGetter spanAfter = new SpanGetter(mTextView.getText(), SuggestionSpan.class);
assertNull("hide blue underline", spanAfter.mSpan); assertNull("hide blue underline", spanAfter.mSpan);
} }
public void testBlueUnderlineOnBackspace() { public void testBlueUnderlineOnBackspace() {
final String STRING_TO_TYPE = "tgis"; final String STRING_TO_TYPE = "tgis";
final int EXPECTED_SPAN_START = 0; final int EXPECTED_SUGGESTION_SPAN_START = -1;
final int EXPECTED_SPAN_END = 4; final int EXPECTED_UNDERLINE_SPAN_START = 0;
final int EXPECTED_UNDERLINE_SPAN_END = 4;
type(STRING_TO_TYPE); type(STRING_TO_TYPE);
sleep(DELAY_TO_WAIT_FOR_UNDERLINE); sleep(DELAY_TO_WAIT_FOR_UNDERLINE);
runMessages(); runMessages();
@ -72,13 +76,14 @@ public class BlueUnderlineTests extends InputTestsBase {
type(Keyboard.CODE_DELETE); type(Keyboard.CODE_DELETE);
sleep(DELAY_TO_WAIT_FOR_UNDERLINE); sleep(DELAY_TO_WAIT_FOR_UNDERLINE);
runMessages(); runMessages();
final Span span = new Span(mTextView.getText()); final SpanGetter suggestionSpan = new SpanGetter(mTextView.getText(), SuggestionSpan.class);
assertEquals("show blue underline after backspace, span start", assertEquals("show no blue underline after backspace, span start should be -1",
EXPECTED_SPAN_START, span.mStart); EXPECTED_SUGGESTION_SPAN_START, suggestionSpan.mStart);
assertEquals("show blue underline after backspace, span end", final SpanGetter underlineSpan = new SpanGetter(mTextView.getText(), UnderlineSpan.class);
EXPECTED_SPAN_END, span.mEnd); assertEquals("should be composing, so should have an underline span",
assertEquals("show blue underline after backspace, span color", true, EXPECTED_UNDERLINE_SPAN_START, underlineSpan.mStart);
span.isAutoCorrectionIndicator()); assertEquals("should be composing, so should have an underline span",
EXPECTED_UNDERLINE_SPAN_END, underlineSpan.mEnd);
} }
public void testBlueUnderlineDisappearsWhenCursorMoved() { public void testBlueUnderlineDisappearsWhenCursorMoved() {
@ -96,7 +101,7 @@ public class BlueUnderlineTests extends InputTestsBase {
mLatinIME.onUpdateSelection(0, 0, NEW_CURSOR_POSITION, NEW_CURSOR_POSITION, -1, -1); mLatinIME.onUpdateSelection(0, 0, NEW_CURSOR_POSITION, NEW_CURSOR_POSITION, -1, -1);
sleep(DELAY_TO_WAIT_FOR_UNDERLINE); sleep(DELAY_TO_WAIT_FOR_UNDERLINE);
runMessages(); runMessages();
final Span span = new Span(mTextView.getText()); final SpanGetter span = new SpanGetter(mTextView.getText(), SuggestionSpan.class);
assertNull("blue underline removed when cursor is moved", span.mSpan); assertNull("blue underline removed when cursor is moved", span.mSpan);
} }
} }

View File

@ -28,7 +28,7 @@ public class InputLogicTests extends InputTestsBase {
public void testPickSuggestionThenBackspace() { public void testPickSuggestionThenBackspace() {
final String WORD_TO_TYPE = "this"; final String WORD_TO_TYPE = "this";
final String EXPECTED_RESULT = "this"; final String EXPECTED_RESULT = "thi";
type(WORD_TO_TYPE); type(WORD_TO_TYPE);
pickSuggestionManually(0, WORD_TO_TYPE); pickSuggestionManually(0, WORD_TO_TYPE);
mLatinIME.onUpdateSelection(0, 0, WORD_TO_TYPE.length(), WORD_TO_TYPE.length(), -1, -1); mLatinIME.onUpdateSelection(0, 0, WORD_TO_TYPE.length(), WORD_TO_TYPE.length(), -1, -1);
@ -40,7 +40,7 @@ public class InputLogicTests extends InputTestsBase {
public void testPickAutoCorrectionThenBackspace() { public void testPickAutoCorrectionThenBackspace() {
final String WORD_TO_TYPE = "tgis"; final String WORD_TO_TYPE = "tgis";
final String WORD_TO_PICK = "this"; final String WORD_TO_PICK = "this";
final String EXPECTED_RESULT = "tgis"; final String EXPECTED_RESULT = "thi";
type(WORD_TO_TYPE); type(WORD_TO_TYPE);
// Choose the auto-correction, which is always in position 0. For "tgis", the // Choose the auto-correction, which is always in position 0. For "tgis", the
// auto-correction should be "this". // auto-correction should be "this".
@ -55,7 +55,7 @@ public class InputLogicTests extends InputTestsBase {
public void testPickTypedWordOverAutoCorrectionThenBackspace() { public void testPickTypedWordOverAutoCorrectionThenBackspace() {
final String WORD_TO_TYPE = "tgis"; final String WORD_TO_TYPE = "tgis";
final String EXPECTED_RESULT = "tgis"; final String EXPECTED_RESULT = "tgi";
type(WORD_TO_TYPE); type(WORD_TO_TYPE);
// Choose the typed word, which should be in position 1 (because position 0 should // Choose the typed word, which should be in position 1 (because position 0 should
// be occupied by the "this" auto-correction, as checked by testAutoCorrect()) // be occupied by the "this" auto-correction, as checked by testAutoCorrect())
@ -71,7 +71,7 @@ public class InputLogicTests extends InputTestsBase {
public void testPickDifferentSuggestionThenBackspace() { public void testPickDifferentSuggestionThenBackspace() {
final String WORD_TO_TYPE = "tgis"; final String WORD_TO_TYPE = "tgis";
final String WORD_TO_PICK = "thus"; final String WORD_TO_PICK = "thus";
final String EXPECTED_RESULT = "tgis"; final String EXPECTED_RESULT = "thu";
type(WORD_TO_TYPE); type(WORD_TO_TYPE);
// Choose the second suggestion, which should be in position 2 and should be "thus" // Choose the second suggestion, which should be in position 2 and should be "thus"
// when "tgis is typed. // when "tgis is typed.

View File

@ -24,6 +24,7 @@ import android.preference.PreferenceManager;
import android.test.ServiceTestCase; import android.test.ServiceTestCase;
import android.text.InputType; import android.text.InputType;
import android.text.SpannableStringBuilder; import android.text.SpannableStringBuilder;
import android.text.style.CharacterStyle;
import android.text.style.SuggestionSpan; import android.text.style.SuggestionSpan;
import android.view.LayoutInflater; import android.view.LayoutInflater;
import android.view.View; import android.view.View;
@ -57,18 +58,19 @@ public class InputTestsBase extends ServiceTestCase<LatinIME> {
new HashMap<String, InputMethodSubtype>(); new HashMap<String, InputMethodSubtype>();
// A helper class to ease span tests // A helper class to ease span tests
public static class Span { public static class SpanGetter {
final SpannableStringBuilder mInputText; final SpannableStringBuilder mInputText;
final SuggestionSpan mSpan; final CharacterStyle mSpan;
final int mStart; final int mStart;
final int mEnd; final int mEnd;
// The supplied CharSequence should be an instance of SpannableStringBuilder, // The supplied CharSequence should be an instance of SpannableStringBuilder,
// and it should contain exactly zero or one SuggestionSpan. Otherwise, an exception // and it should contain exactly zero or one span. Otherwise, an exception
// is thrown. // is thrown.
public Span(final CharSequence inputText) { public SpanGetter(final CharSequence inputText,
final Class<? extends CharacterStyle> spanType) {
mInputText = (SpannableStringBuilder)inputText; mInputText = (SpannableStringBuilder)inputText;
final SuggestionSpan[] spans = final CharacterStyle[] spans =
mInputText.getSpans(0, mInputText.length(), SuggestionSpan.class); mInputText.getSpans(0, mInputText.length(), spanType);
if (0 == spans.length) { if (0 == spans.length) {
mSpan = null; mSpan = null;
mStart = -1; mStart = -1;
@ -78,11 +80,12 @@ public class InputTestsBase extends ServiceTestCase<LatinIME> {
mStart = mInputText.getSpanStart(mSpan); mStart = mInputText.getSpanStart(mSpan);
mEnd = mInputText.getSpanEnd(mSpan); mEnd = mInputText.getSpanEnd(mSpan);
} else { } else {
throw new RuntimeException("Expected one SuggestionSpan, found " + spans.length); throw new RuntimeException("Expected one span, found " + spans.length);
} }
} }
public boolean isAutoCorrectionIndicator() { public boolean isAutoCorrectionIndicator() {
return 0 != (SuggestionSpan.FLAG_AUTO_CORRECTION & mSpan.getFlags()); return (mSpan instanceof SuggestionSpan) &&
0 != (SuggestionSpan.FLAG_AUTO_CORRECTION & ((SuggestionSpan)mSpan).getFlags());
} }
} }