2013-11-07 08:18:51 -08:00
|
|
|
package org.mozilla.gecko.tests;
|
2013-08-20 00:26:55 -07:00
|
|
|
|
2013-11-07 08:18:51 -08:00
|
|
|
import org.mozilla.gecko.*;
|
2013-08-20 00:26:55 -07:00
|
|
|
|
2014-01-10 17:18:07 -08:00
|
|
|
public class testBookmarksPanel extends AboutHomeTest {
|
2013-08-20 00:26:55 -07:00
|
|
|
|
|
|
|
protected int getTestType() {
|
|
|
|
return TEST_MOCHITEST;
|
|
|
|
}
|
|
|
|
|
2014-01-10 17:18:07 -08:00
|
|
|
public void testBookmarksPanel() {
|
2013-08-20 00:26:55 -07:00
|
|
|
final String BOOKMARK_URL = getAbsoluteUrl(StringHelper.ROBOCOP_BLANK_PAGE_01_URL);
|
|
|
|
|
|
|
|
// Add a mobile bookmark
|
|
|
|
mDatabaseHelper.addOrUpdateMobileBookmark(StringHelper.ROBOCOP_BLANK_PAGE_01_TITLE, BOOKMARK_URL);
|
|
|
|
|
|
|
|
openAboutHomeTab(AboutHomeTabs.BOOKMARKS);
|
|
|
|
|
|
|
|
// Check that the default bookmarks are displayed
|
|
|
|
for (String url : StringHelper.DEFAULT_BOOKMARKS_URLS) {
|
|
|
|
isBookmarkDisplayed(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the context menu for the first bookmark in the list
|
|
|
|
openBookmarkContextMenu(StringHelper.DEFAULT_BOOKMARKS_URLS[0]);
|
|
|
|
|
|
|
|
// Test that the options are all displayed
|
|
|
|
for (String contextMenuOption : StringHelper.BOOKMARK_CONTEXT_MENU_ITEMS) {
|
|
|
|
mAsserter.ok(mSolo.searchText(contextMenuOption), "Checking that the context menu option is present", contextMenuOption + " is present");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that "Open in New Tab" works
|
2014-02-11 18:08:56 -08:00
|
|
|
final Element tabCount = mDriver.findElement(getActivity(), R.id.tabs_counter);
|
2013-08-20 00:26:55 -07:00
|
|
|
final int tabCountInt = Integer.parseInt(tabCount.getText());
|
|
|
|
Actions.EventExpecter tabEventExpecter = mActions.expectGeckoEvent("Tab:Added");
|
|
|
|
mSolo.clickOnText(StringHelper.BOOKMARK_CONTEXT_MENU_ITEMS[0]);
|
|
|
|
tabEventExpecter.blockForEvent();
|
|
|
|
tabEventExpecter.unregisterListener();
|
|
|
|
mAsserter.ok(mSolo.searchText(StringHelper.TITLE_PLACE_HOLDER), "Checking that the tab is not changed", "The tab was not changed");
|
|
|
|
|
|
|
|
// Test that "Open in Private Tab" works
|
|
|
|
openBookmarkContextMenu(StringHelper.DEFAULT_BOOKMARKS_URLS[1]);
|
|
|
|
tabEventExpecter = mActions.expectGeckoEvent("Tab:Added");
|
|
|
|
mSolo.clickOnText(StringHelper.BOOKMARK_CONTEXT_MENU_ITEMS[1]);
|
|
|
|
tabEventExpecter.blockForEvent();
|
|
|
|
tabEventExpecter.unregisterListener();
|
|
|
|
mAsserter.ok(mSolo.searchText(StringHelper.TITLE_PLACE_HOLDER), "Checking that the tab is not changed", "The tab was not changed");
|
|
|
|
|
|
|
|
// Test that "Edit" works
|
|
|
|
String[] editedBookmarkValues = new String[] { "New bookmark title", "www.NewBookmark.url", "newBookmarkKeyword" };
|
|
|
|
editBookmark(BOOKMARK_URL, editedBookmarkValues);
|
|
|
|
checkBookmarkEdit(editedBookmarkValues[1], editedBookmarkValues);
|
|
|
|
|
|
|
|
// Test that "Remove" works
|
|
|
|
openBookmarkContextMenu(editedBookmarkValues[1]);
|
|
|
|
mSolo.clickOnText(StringHelper.BOOKMARK_CONTEXT_MENU_ITEMS[3]);
|
|
|
|
waitForText("Bookmark removed");
|
|
|
|
mAsserter.ok(!mDatabaseHelper.isBookmark(editedBookmarkValues[1]), "Checking that the bookmark was removed", "The bookmark was removed");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bookmarkUrl URL of the bookmark to edit
|
|
|
|
* @param values String array with the new values for all fields
|
|
|
|
*/
|
|
|
|
private void editBookmark(String bookmarkUrl, String[] values) {
|
|
|
|
openBookmarkContextMenu(bookmarkUrl);
|
|
|
|
mSolo.clickOnText("Edit");
|
|
|
|
waitForText("Edit Bookmark");
|
|
|
|
|
|
|
|
// Update the fields with the new values
|
|
|
|
for (int i = 0; i < values.length; i++) {
|
|
|
|
mSolo.clearEditText(i);
|
|
|
|
mSolo.clickOnEditText(i);
|
|
|
|
mActions.sendKeys(values[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
mSolo.clickOnButton("OK");
|
|
|
|
waitForText("Bookmark updated");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bookmarkUrl String with the original url
|
|
|
|
* @param values String array with the new values for all fields
|
|
|
|
*/
|
|
|
|
private void checkBookmarkEdit(String bookmarkUrl, String[] values) {
|
|
|
|
openBookmarkContextMenu(bookmarkUrl);
|
|
|
|
mSolo.clickOnText("Edit");
|
|
|
|
waitForText("Edit Bookmark");
|
|
|
|
|
|
|
|
// Check the values of the fields
|
|
|
|
for (String value : values) {
|
|
|
|
mAsserter.ok(mSolo.searchText(value), "Checking that the value is correct", "The value = " + value + " is correct");
|
|
|
|
}
|
|
|
|
|
|
|
|
mSolo.clickOnButton("Cancel");
|
|
|
|
waitForText("BOOKMARKS");
|
|
|
|
}
|
|
|
|
}
|