gecko-dev/mobile/android/base/tests/testInputUrlBar.java.in
Lucas Rocha e72d114acd Bug 896571 - Update testInputAwesomeBar for new about:home (r=margaret)
--HG--
rename : mobile/android/base/tests/testInputAwesomeBar.java.in => mobile/android/base/tests/testInputUrlBar.java.in
2013-08-15 12:16:19 +01:00

133 lines
3.8 KiB
Java

#filter substitution
package @ANDROID_PACKAGE_NAME@.tests;
import @ANDROID_PACKAGE_NAME@.*;
import android.app.Activity;
import android.view.View;
import android.widget.EditText;
/**
* Basic test of text editing within the editing mode.
* - Enter some text, move the cursor around, and modifying some text.
* - Check that all edit entry text is selected after switching about:home tabs.
*/
public final class testInputUrlBar extends BaseTest {
private Element mUrlBarEditElement;
private EditText mUrlBarEditView;
public void testInputUrlBar() {
blockForGeckoReady();
startEditingMode();
assertUrlBarText("about:home");
mActions.sendKeys("ab");
assertUrlBarText("ab");
mActions.sendKeys("cd");
assertUrlBarText("abcd");
mActions.sendSpecialKey(Actions.SpecialKey.LEFT);
mActions.sendSpecialKey(Actions.SpecialKey.LEFT);
// Inserting "" should not do anything.
mActions.sendKeys("");
assertUrlBarText("abcd");
mActions.sendKeys("ef");
assertUrlBarText("abefcd");
mActions.sendSpecialKey(Actions.SpecialKey.RIGHT);
mActions.sendKeys("gh");
assertUrlBarText("abefcghd");
final EditText editText = mUrlBarEditView;
runOnUiThreadSync(new Runnable() {
public void run() {
// Select "ef"
editText.setSelection(2);
}
});
mActions.sendKeys("op");
assertUrlBarText("abopefcghd");
runOnUiThreadSync(new Runnable() {
public void run() {
// Select "cg"
editText.setSelection(6, 8);
}
});
mActions.sendKeys("qr");
assertUrlBarText("abopefqrhd");
runOnUiThreadSync(new Runnable() {
public void run() {
// Select "op"
editText.setSelection(4,2);
}
});
mActions.sendKeys("st");
assertUrlBarText("abstefqrhd");
runOnUiThreadSync(new Runnable() {
public void run() {
editText.selectAll();
}
});
mActions.sendKeys("uv");
assertUrlBarText("uv");
// Dismiss the VKB
mActions.sendSpecialKey(Actions.SpecialKey.BACK);
// Dismiss editing mode
mActions.sendSpecialKey(Actions.SpecialKey.BACK);
waitForText("Enter Search or Address");
// URL bar should have forgotten about "uv" text.
startEditingMode();
assertUrlBarText("about:home");
int width = mDriver.getGeckoWidth() / 2;
int y = mDriver.getGeckoHeight() / 2;
// Slide to the right, force URL bar entry to lose input focus
mActions.drag(width, 0, y, y);
// Select text and replace the content
mSolo.clickOnView(mUrlBarEditView);
mActions.sendKeys("yz");
String yz = getUrlBarText();
mAsserter.ok("yz".equals(yz), "Is the URL bar text \"yz\"?", yz);
}
@Override
protected int getTestType() {
return TEST_MOCHITEST;
}
private void startEditingMode() {
focusUrlBar();
mUrlBarEditElement = mDriver.findElement(getActivity(), URL_EDIT_TEXT_ID);
final int id = mUrlBarEditElement.getId();
mUrlBarEditView = (EditText) getActivity().findViewById(id);
}
private String getUrlBarText() {
final String elementText = mUrlBarEditElement.getText();
final String editText = mUrlBarEditView.getText().toString();
mAsserter.is(editText, elementText, "Does URL bar editText == elementText?");
return editText;
}
private void assertUrlBarText(String expectedText) {
String actualText = getUrlBarText();
mAsserter.is(actualText, expectedText, "Does URL bar actualText == expectedText?");
}
}