58 lines
2.3 KiB
Java
58 lines
2.3 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.tests;
|
|
|
|
import org.mozilla.gecko.home.HomeConfig;
|
|
import org.mozilla.gecko.home.HomeConfig.PanelType;
|
|
import org.mozilla.gecko.tests.helpers.GeckoHelper;
|
|
import org.mozilla.gecko.tests.helpers.NavigationHelper;
|
|
|
|
/**
|
|
* Tests the visibility of about:home after various interactions with the browser.
|
|
*/
|
|
public class testAboutHomeVisibility extends UITest {
|
|
public void testAboutHomeVisibility() {
|
|
GeckoHelper.blockForReady();
|
|
|
|
// Check initial state on about:home.
|
|
mToolbar.assertTitle(mStringHelper.ABOUT_HOME_URL);
|
|
mAboutHome.assertVisible()
|
|
.assertCurrentPanel(PanelType.TOP_SITES);
|
|
|
|
// Go to blank 01.
|
|
NavigationHelper.enterAndLoadUrl(mStringHelper.ROBOCOP_BLANK_PAGE_01_URL);
|
|
mToolbar.assertTitle(mStringHelper.ROBOCOP_BLANK_PAGE_01_URL);
|
|
mAboutHome.assertNotVisible();
|
|
|
|
// Go to blank 02.
|
|
NavigationHelper.enterAndLoadUrl(mStringHelper.ROBOCOP_BLANK_PAGE_02_URL);
|
|
mToolbar.assertTitle(mStringHelper.ROBOCOP_BLANK_PAGE_02_URL);
|
|
mAboutHome.assertNotVisible();
|
|
|
|
// Enter editing mode, where the about:home UI should be visible.
|
|
mToolbar.enterEditingMode();
|
|
mAboutHome.assertVisible()
|
|
.assertCurrentPanel(PanelType.TOP_SITES);
|
|
|
|
// Dismiss editing mode, where the about:home UI should be gone.
|
|
mToolbar.dismissEditingMode();
|
|
mAboutHome.assertNotVisible();
|
|
|
|
// Loading about:home should show about:home again.
|
|
NavigationHelper.enterAndLoadUrl(mStringHelper.ABOUT_HOME_URL);
|
|
mToolbar.assertTitle(mStringHelper.ABOUT_HOME_URL);
|
|
mAboutHome.assertVisible()
|
|
.assertCurrentPanel(PanelType.TOP_SITES);
|
|
|
|
// We can navigate to about:home panels by panel UUID.
|
|
mAboutHome.navigateToBuiltinPanelType(PanelType.BOOKMARKS)
|
|
.assertVisible()
|
|
.assertCurrentPanel(PanelType.BOOKMARKS);
|
|
mAboutHome.navigateToBuiltinPanelType(PanelType.HISTORY)
|
|
.assertVisible()
|
|
.assertCurrentPanel(PanelType.HISTORY);
|
|
}
|
|
}
|