blob: b348c289e307540d3f592ce3308c81999a0f5d23 [file] [log] [blame]
/*
* Copyright (C) 2008 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 android.text.method.cts;
import android.app.Activity;
import android.test.ActivityInstrumentationTestCase2;
import android.test.UiThreadTest;
import android.text.Editable;
import android.text.Selection;
import android.text.method.CharacterPickerDialog;
import android.view.View;
import android.widget.Gallery;
public class CharacterPickerDialogTest extends
ActivityInstrumentationTestCase2<CtsActivity> {
private Activity mActivity;
public CharacterPickerDialogTest() {
super("android.text.cts", CtsActivity.class);
}
@Override
protected void setUp() throws Exception {
super.setUp();
mActivity = getActivity();
}
@UiThreadTest
public void testConstructor() {
final CharSequence str = "123456";
final Editable content = Editable.Factory.getInstance().newEditable(str);
final View view = new TextViewNoIme(mActivity);
new CharacterPickerDialog(view.getContext(), view, content, "\u00A1", false);
try {
new CharacterPickerDialog(null, view, content, "\u00A1", false);
fail("should throw NullPointerException.");
} catch (NullPointerException e) {
// expected.
}
}
public void testOnCreate() {
// Do not test. Implementation details.
}
@UiThreadTest
public void testOnItemClick() {
final Gallery parent = new Gallery(mActivity);
final CharSequence str = "123456";
Editable text = Editable.Factory.getInstance().newEditable(str);
final View view = new TextViewNoIme(mActivity);
CharacterPickerDialog replacePickerDialog =
new CharacterPickerDialog(view.getContext(), view, text, "abc", false);
// insert 'a' to the beginning of text
replacePickerDialog.show();
Selection.setSelection(text, 0, 0);
assertEquals(str, text.toString());
assertTrue(replacePickerDialog.isShowing());
replacePickerDialog.onItemClick(parent, view, 0, 0);
assertEquals("a123456", text.toString());
assertFalse(replacePickerDialog.isShowing());
// replace the second character '1' with 'c'
replacePickerDialog.show();
Selection.setSelection(text, 2, 2);
assertTrue(replacePickerDialog.isShowing());
replacePickerDialog.onItemClick(parent, view, 2, 0);
assertEquals("ac23456", text.toString());
assertFalse(replacePickerDialog.isShowing());
// insert character 'c' between '2' and '3'
text = Editable.Factory.getInstance().newEditable(str);
CharacterPickerDialog insertPickerDialog =
new CharacterPickerDialog(view.getContext(), view, text, "abc", true);
Selection.setSelection(text, 2, 2);
assertEquals(str, text.toString());
insertPickerDialog.show();
assertTrue(insertPickerDialog.isShowing());
insertPickerDialog.onItemClick(parent, view, 2, 0);
assertEquals("12c3456", text.toString());
assertFalse(insertPickerDialog.isShowing());
}
@UiThreadTest
public void testOnClick() {
final CharSequence str = "123456";
final Editable content = Editable.Factory.getInstance().newEditable(str);
final View view = new TextViewNoIme(mActivity);
CharacterPickerDialog characterPickerDialog =
new CharacterPickerDialog(view.getContext(), view, content, "\u00A1", false);
characterPickerDialog.show();
assertTrue(characterPickerDialog.isShowing());
// nothing to test here, just make sure onClick does not throw exception
characterPickerDialog.onClick(view);
}
}