blob: f861a2c540d05b20aea68fd3489e262b6e4b5ac8 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.suggestions;
import static org.chromium.chrome.test.BottomSheetTestRule.waitForWindowUpdates;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.MediumTest;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.util.DisabledTest;
import org.chromium.base.test.util.Feature;
import org.chromium.base.test.util.Restriction;
import org.chromium.chrome.browser.ntp.NtpUiCaptureTestData;
import org.chromium.chrome.browser.ntp.cards.ItemViewType;
import org.chromium.chrome.browser.test.ScreenShooter;
import org.chromium.chrome.browser.widget.bottomsheet.BottomSheet;
import org.chromium.chrome.test.ChromeJUnit4ClassRunner;
import org.chromium.chrome.test.util.MenuUtils;
import org.chromium.chrome.test.util.browser.suggestions.SuggestionsDependenciesRule;
import org.chromium.ui.test.util.UiRestriction;
/**
* Tests for the appearance of the special states of the home sheet.
*/
@DisabledTest(message = "https://crbug.com/805160")
@RunWith(ChromeJUnit4ClassRunner.class)
@Restriction(UiRestriction.RESTRICTION_TYPE_PHONE) // ChromeHome is only enabled on phones
public class HomeSheetUiCaptureTest {
@Rule
public SuggestionsBottomSheetTestRule mActivityRule = new SuggestionsBottomSheetTestRule();
@Rule
public SuggestionsDependenciesRule setupSuggestions() {
return new SuggestionsDependenciesRule(NtpUiCaptureTestData.createFactory());
}
@Rule
public ScreenShooter mScreenShooter = new ScreenShooter();
@Before
public void setup() throws InterruptedException {
mActivityRule.startMainActivityOnBlankPage();
}
@Test
@MediumTest
@Feature({"UiCatalogue"})
public void testSignInPromo() {
// Needs to be "Full" to for this to work on small screens in landscape.
mActivityRule.setSheetState(BottomSheet.SheetState.FULL, false);
waitForWindowUpdates();
mActivityRule.scrollToFirstItemOfType(ItemViewType.PROMO);
mScreenShooter.shoot("SignInPromo_new");
}
@Test
@MediumTest
@Feature({"UiCatalogue"})
public void testNewTab() {
// Select "New tab" from the menu.
MenuUtils.invokeCustomMenuActionSync(InstrumentationRegistry.getInstrumentation(),
mActivityRule.getActivity(), org.chromium.chrome.R.id.new_tab_menu_id);
waitForWindowUpdates();
mScreenShooter.shoot("NewTab");
}
}