1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/quick_insert/views/quick_insert_submenu_controller.h"
#include <memory>
#include "ash/quick_insert/quick_insert_test_util.h"
#include "ash/quick_insert/views/quick_insert_item_view.h"
#include "ash/quick_insert/views/quick_insert_list_item_view.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/view_drawn_waiter.h"
#include "base/i18n/rtl.h"
#include "base/test/test_future.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/views/test/views_test_utils.h"
#include "ui/views/test/widget_test.h"
#include "ui/views/view.h"
namespace ash {
namespace {
using QuickInsertSubmenuControllerTest = AshTestBase;
std::vector<std::unique_ptr<QuickInsertListItemView>> CreateSingleItem(
base::RepeatingClosure callback) {
std::vector<std::unique_ptr<QuickInsertListItemView>> items;
items.push_back(
std::make_unique<QuickInsertListItemView>(std::move(callback)));
return items;
}
TEST_F(QuickInsertSubmenuControllerTest, ShowsWidget) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
controller.Show(anchor_widget->GetContentsView(), {});
EXPECT_NE(controller.widget_for_testing(), nullptr);
}
TEST_F(QuickInsertSubmenuControllerTest, ShowsWidgetAlignedWithAnchorLTR) {
base::i18n::SetRTLForTesting(false);
UpdateDisplay("2000x1000");
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
const gfx::Rect anchor_bounds(345, 123, 100, 100);
anchor_widget->SetBounds(anchor_bounds);
controller.Show(anchor_widget->GetContentsView(), {});
// PickerSubmenuController::Show() will trigger an asynchronous autosize task.
views::test::RunScheduledLayout(controller.widget_for_testing());
ASSERT_NE(controller.widget_for_testing(), nullptr);
const gfx::Rect submenu_bounds =
controller.widget_for_testing()->GetClientAreaBoundsInScreen();
// The submenu widget should be on the right of the anchor, with a horizontal
// small overlap.
EXPECT_NEAR(submenu_bounds.x(), anchor_bounds.right(), 20);
// The submenu widget should be below the anchor, with a vertical small
// overlap.
EXPECT_NEAR(submenu_bounds.y(), anchor_bounds.y(), 20);
}
TEST_F(QuickInsertSubmenuControllerTest, ShowsWidgetAlignedWithAnchorRTL) {
base::i18n::SetRTLForTesting(true);
UpdateDisplay("2000x1000");
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
const gfx::Rect anchor_bounds(345, 123, 100, 100);
anchor_widget->SetBounds(anchor_bounds);
controller.Show(anchor_widget->GetContentsView(), {});
// PickerSubmenuController::Show() will trigger an asynchronous autosize task.
views::test::RunScheduledLayout(controller.widget_for_testing());
ASSERT_NE(controller.widget_for_testing(), nullptr);
const gfx::Rect submenu_bounds =
controller.widget_for_testing()->GetClientAreaBoundsInScreen();
// The submenu widget should be on the left of the anchor, with a horizontal
// small overlap.
EXPECT_NEAR(submenu_bounds.right(), anchor_bounds.x(), 20);
// The submenu widget should be below the anchor, with a vertical small
// overlap.
EXPECT_NEAR(submenu_bounds.y(), anchor_bounds.y(), 20);
}
TEST_F(QuickInsertSubmenuControllerTest, ShowsWidgetWithParent) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
controller.Show(anchor_widget->GetContentsView(), {});
EXPECT_EQ(controller.widget_for_testing()->parent(), anchor_widget.get());
EXPECT_EQ(controller.widget_for_testing()->GetNativeWindow()->parent(),
anchor_widget->GetNativeWindow());
}
TEST_F(QuickInsertSubmenuControllerTest, ClosesWidget) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
controller.Show(anchor_widget->GetContentsView(), {});
controller.Close();
views::test::WidgetDestroyedWaiter(controller.widget_for_testing()).Wait();
}
TEST_F(QuickInsertSubmenuControllerTest,
ClosesWidgetWhenAnchorWidgetIsDestroyed) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
anchor_widget->Show();
controller.Show(anchor_widget->GetContentsView(), {});
anchor_widget->CloseNow();
EXPECT_EQ(controller.widget_for_testing(), nullptr);
}
TEST_F(QuickInsertSubmenuControllerTest,
ClosesWidgetWhenAnchorViewIsDestroyed) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
auto* contents_view =
anchor_widget->SetContentsView(std::make_unique<views::View>());
auto* anchor_view =
contents_view->AddChildView(std::make_unique<views::View>());
anchor_widget->Show();
controller.Show(anchor_view, {});
contents_view->RemoveAllChildViews();
views::test::WidgetDestroyedWaiter(controller.widget_for_testing()).Wait();
}
TEST_F(QuickInsertSubmenuControllerTest, ClosesWidgetWhenAnchorViewIsHidden) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
auto* contents_view =
anchor_widget->SetContentsView(std::make_unique<views::View>());
auto* anchor_view =
contents_view->AddChildView(std::make_unique<views::View>());
anchor_widget->Show();
controller.Show(anchor_view, {});
contents_view->SetVisible(false);
views::test::WidgetDestroyedWaiter(controller.widget_for_testing()).Wait();
}
TEST_F(QuickInsertSubmenuControllerTest, GetsSubmenuView) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
controller.Show(anchor_widget->GetContentsView(), {});
EXPECT_NE(controller.GetSubmenuView(), nullptr);
}
TEST_F(QuickInsertSubmenuControllerTest, GetsAnchorView) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
auto* anchor_view =
anchor_widget->SetContentsView(std::make_unique<views::View>());
controller.Show(anchor_view, {});
EXPECT_EQ(controller.GetAnchorView(), anchor_view);
}
TEST_F(QuickInsertSubmenuControllerTest, TriggersCallbackWhenClickingOnItem) {
QuickInsertSubmenuController controller;
auto anchor_widget = CreateFramelessTestWidget();
anchor_widget->SetContentsView(std::make_unique<views::View>());
base::test::TestFuture<void> select_item_future;
std::vector<std::unique_ptr<QuickInsertListItemView>> items =
CreateSingleItem(select_item_future.GetRepeatingCallback());
auto* top_item_ptr = items.front().get();
controller.Show(anchor_widget->GetContentsView(), std::move(items));
ViewDrawnWaiter waiter;
waiter.Wait(top_item_ptr);
LeftClickOn(top_item_ptr);
EXPECT_TRUE(select_item_future.Wait());
}
} // namespace
} // namespace ash
|