#include "ash/shelf/scrollable_shelf_view.h"
#include "ash/shelf/shelf_menu_model_adapter.h"
#include "ash/shelf/shelf_widget.h"
#include "ash/shelf/test/shelf_test_base.h"
#include "ash/test/pixel/ash_pixel_differ.h"
#include "ash/test/pixel/ash_pixel_test_helper.h"
#include "ash/test/pixel/ash_pixel_test_init_params.h"
#include "chromeos/constants/chromeos_features.h"
#include "ui/views/controls/menu/menu_item_view.h"
#include "ui/views/controls/menu/submenu_view.h"
namespace ash {
class ScrollableShelfViewPixelRTLTestBase : public ShelfTestBase {
public:
void SetUp() override {
ShelfTestBase::SetUp();
AddAppShortcutsUntilOverflow(true);
}
};
class ScrollableShelfViewPixelRTLTest
: public ScrollableShelfViewPixelRTLTestBase,
public testing::WithParamInterface<
std::tuple</*is_rtl=*/bool, /*enable_system_blur=*/bool>> {
public:
std::optional<pixel_test::InitParams> CreatePixelTestInitParams()
const override {
pixel_test::InitParams init_params;
init_params.under_rtl = IsRTL();
init_params.system_blur_enabled = IsSystemBlurEnabled();
return init_params;
}
bool IsRTL() const { return std::get<0>(GetParam()); }
bool IsSystemBlurEnabled() const { return std::get<1>(GetParam()); }
};
INSTANTIATE_TEST_SUITE_P(
RTL,
ScrollableShelfViewPixelRTLTest,
testing::Combine(testing::Bool(),
testing::Bool()));
TEST_P(ScrollableShelfViewPixelRTLTest, Basics) {
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
GenerateScreenshotName("overflow"),
pixel_test_helper()->IsSystemBlurEnabled() ? 11 : 0,
GetPrimaryShelf()->GetWindow()));
ASSERT_TRUE(scrollable_shelf_view_->right_arrow());
const gfx::Point right_arrow_center =
scrollable_shelf_view_->right_arrow()->GetBoundsInScreen().CenterPoint();
GetEventGenerator()->MoveMouseTo(right_arrow_center);
GetEventGenerator()->ClickLeftButton();
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
GenerateScreenshotName("overflow_end"),
pixel_test_helper()->IsSystemBlurEnabled() ? 11 : 0,
GetPrimaryShelf()->GetWindow()));
}
TEST_P(ScrollableShelfViewPixelRTLTest, LeftRightShelfAlignment) {
GetPrimaryShelf()->SetAlignment(ShelfAlignment::kLeft);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
GenerateScreenshotName("left_shelf_alignment"),
pixel_test_helper()->IsSystemBlurEnabled() ? 8 : 0,
GetPrimaryShelf()->GetWindow()));
GetPrimaryShelf()->SetAlignment(ShelfAlignment::kRight);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
GenerateScreenshotName("right_shelf_alignment"),
pixel_test_helper()->IsSystemBlurEnabled() ? 8 : 0,
GetPrimaryShelf()->GetWindow()));
}
class ScrollableShelfViewWithGuestModePixelTest
: public ShelfTestBase,
public testing::WithParamInterface<
std::tuple</*use_guest_mode=*/bool, /*enable_system_blur=*/bool>> {
public:
std::optional<pixel_test::InitParams> CreatePixelTestInitParams()
const override {
pixel_test::InitParams init_params;
init_params.system_blur_enabled = IsSystemBlurEnabled();
return init_params;
}
bool UseGuestMode() const { return std::get<0>(GetParam()); }
bool IsSystemBlurEnabled() const { return std::get<1>(GetParam()); }
void SetUp() override {
set_start_session(false);
ShelfTestBase::SetUp();
if (UseGuestMode()) {
SimulateGuestLogin();
} else {
SimulateUserLogin({"user@gmail.com"});
}
}
};
INSTANTIATE_TEST_SUITE_P(
EnableGuestMode,
ScrollableShelfViewWithGuestModePixelTest,
testing::Combine(testing::Bool(),
testing::Bool()));
TEST_P(ScrollableShelfViewWithGuestModePixelTest, VerifyShelfContextMenu) {
const gfx::Point shelf_center =
scrollable_shelf_view_->GetBoundsInScreen().CenterPoint();
GetEventGenerator()->MoveMouseTo(shelf_center);
GetEventGenerator()->PressRightButton();
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
GenerateScreenshotName("shelf_context_menu"),
pixel_test_helper()->IsSystemBlurEnabled() ? 25 : 0,
GetPrimaryShelf()
->shelf_widget()
->shelf_view_for_testing()
->shelf_menu_model_adapter_for_testing()
->root_for_testing()
->GetSubmenu(),
GetPrimaryShelf()->GetWindow()));
}
}