blob: 5aa543aa16584dbf5ffd916f0cf6aea4b0ca87f2 [file] [log] [blame]
// Copyright (c) 2012 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.
#include "ui/app_list/views/apps_grid_view.h"
#include <stddef.h>
#include <memory>
#include <string>
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/histogram_tester.h"
#include "base/test/icu_test_util.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/app_list/app_list_constants.h"
#include "ui/app_list/app_list_features.h"
#include "ui/app_list/app_list_folder_item.h"
#include "ui/app_list/app_list_item.h"
#include "ui/app_list/app_list_model.h"
#include "ui/app_list/app_list_switches.h"
#include "ui/app_list/pagination_model.h"
#include "ui/app_list/test/app_list_test_model.h"
#include "ui/app_list/test/app_list_test_view_delegate.h"
#include "ui/app_list/test/test_search_result.h"
#include "ui/app_list/views/app_list_item_view.h"
#include "ui/app_list/views/app_list_main_view.h"
#include "ui/app_list/views/app_list_view.h"
#include "ui/app_list/views/apps_container_view.h"
#include "ui/app_list/views/apps_grid_view_folder_delegate.h"
#include "ui/app_list/views/contents_view.h"
#include "ui/app_list/views/expand_arrow_view.h"
#include "ui/app_list/views/search_box_view.h"
#include "ui/app_list/views/search_result_tile_item_view.h"
#include "ui/app_list/views/suggestions_container_view.h"
#include "ui/app_list/views/test/apps_grid_view_test_api.h"
#include "ui/aura/window.h"
#include "ui/events/event_utils.h"
#include "ui/views/controls/label.h"
#include "ui/views/test/views_test_base.h"
namespace app_list {
namespace test {
namespace {
constexpr int kNumOfSuggestedApps = 3;
class PageFlipWaiter : public PaginationModelObserver {
public:
explicit PageFlipWaiter(PaginationModel* model) : model_(model) {
model_->AddObserver(this);
}
~PageFlipWaiter() override { model_->RemoveObserver(this); }
void Wait() {
DCHECK(!wait_);
wait_ = true;
ui_run_loop_.reset(new base::RunLoop);
ui_run_loop_->Run();
wait_ = false;
}
void Reset() { selected_pages_.clear(); }
const std::string& selected_pages() const { return selected_pages_; }
private:
// PaginationModelObserver overrides:
void TotalPagesChanged() override {}
void SelectedPageChanged(int old_selected, int new_selected) override {
if (!selected_pages_.empty())
selected_pages_ += ',';
selected_pages_ += base::IntToString(new_selected);
if (wait_)
ui_run_loop_->QuitWhenIdle();
}
void TransitionStarted() override {}
void TransitionChanged() override {}
std::unique_ptr<base::RunLoop> ui_run_loop_;
PaginationModel* model_ = nullptr;
bool wait_ = false;
std::string selected_pages_;
DISALLOW_COPY_AND_ASSIGN(PageFlipWaiter);
};
class TestSuggestedSearchResult : public TestSearchResult {
public:
TestSuggestedSearchResult() { set_display_type(DISPLAY_RECOMMENDATION); }
~TestSuggestedSearchResult() override {}
private:
DISALLOW_COPY_AND_ASSIGN(TestSuggestedSearchResult);
};
} // namespace
class AppsGridViewTest : public views::ViewsTestBase,
public testing::WithParamInterface<bool> {
public:
AppsGridViewTest() = default;
~AppsGridViewTest() override = default;
// testing::Test overrides:
void SetUp() override {
views::ViewsTestBase::SetUp();
if (testing::UnitTest::GetInstance()->current_test_info()->value_param()) {
is_rtl_ = GetParam();
if (is_rtl_)
base::i18n::SetICUDefaultLocale("he");
}
gfx::NativeView parent = GetContext();
delegate_.reset(new AppListTestViewDelegate);
app_list_view_ = new AppListView(delegate_.get());
app_list_view_->set_short_animation_for_testing();
AppListView::InitParams params;
params.parent = parent;
app_list_view_->Initialize(params);
contents_view_ = app_list_view_->app_list_main_view()->contents_view();
apps_grid_view_ = contents_view_->apps_container_view()->apps_grid_view();
app_list_view_->GetWidget()->Show();
model_ = delegate_->GetTestModel();
suggestions_container_ = apps_grid_view_->suggestions_container_for_test();
expand_arrow_view_ = apps_grid_view_->expand_arrow_view_for_test();
for (size_t i = 0; i < kNumOfSuggestedApps; ++i)
model_->results()->Add(base::MakeUnique<TestSuggestedSearchResult>());
// Needed to update suggestions from |model_|.
apps_grid_view_->ResetForShowApps();
app_list_view_->SetState(AppListView::FULLSCREEN_ALL_APPS);
app_list_view_->Layout();
test_api_.reset(new AppsGridViewTestApi(apps_grid_view_));
}
void TearDown() override {
app_list_view_->GetWidget()->Close();
views::ViewsTestBase::TearDown();
}
protected:
void EnableFullscreenAppList() {
scoped_feature_list_.InitAndEnableFeature(
features::kEnableFullscreenAppList);
}
AppListItemView* GetItemViewAt(int index) const {
return static_cast<AppListItemView*>(test_api_->GetViewAtModelIndex(index));
}
AppListItemView* GetItemViewForPoint(const gfx::Point& point) const {
for (size_t i = 0; i < model_->top_level_item_list()->item_count(); ++i) {
AppListItemView* view = GetItemViewAt(i);
if (view->bounds().Contains(point))
return view;
}
return nullptr;
}
gfx::Rect GetItemRectOnCurrentPageAt(int row, int col) const {
DCHECK_GT(model_->top_level_item_list()->item_count(), 0u);
return test_api_->GetItemTileRectOnCurrentPageAt(row, col);
}
int GetTilesPerPage(int page) const { return test_api_->TilesPerPage(page); }
PaginationModel* GetPaginationModel() const {
return apps_grid_view_->pagination_model();
}
// Points are in |apps_grid_view_|'s coordinates, and fixed for RTL.
AppListItemView* SimulateDrag(AppsGridView::Pointer pointer,
const gfx::Point& from,
const gfx::Point& to) {
AppListItemView* view = GetItemViewForPoint(from);
DCHECK(view);
gfx::NativeWindow window = app_list_view_->GetWidget()->GetNativeWindow();
gfx::Point root_from(from);
views::View::ConvertPointToWidget(apps_grid_view_, &root_from);
aura::Window::ConvertPointToTarget(window, window->GetRootWindow(),
&root_from);
// Ensure that the |root_from| point is correct if RTL.
root_from.set_x(apps_grid_view_->GetMirroredXInView(root_from.x()));
gfx::Point root_to(to);
views::View::ConvertPointToWidget(apps_grid_view_, &root_to);
aura::Window::ConvertPointToTarget(window, window->GetRootWindow(),
&root_to);
// Ensure that the |root_to| point is correct if RTL.
root_to.set_x(apps_grid_view_->GetMirroredXInView(root_to.x()));
apps_grid_view_->InitiateDrag(view, pointer, from, root_from);
ui::MouseEvent drag_event(ui::ET_MOUSE_DRAGGED, to, root_to,
ui::EventTimeForNow(), 0, 0);
apps_grid_view_->UpdateDragFromItem(pointer, drag_event);
return view;
}
void SimulateKeyPress(ui::KeyboardCode key_code) {
SimulateKeyPress(key_code, ui::EF_NONE);
}
void SimulateKeyPress(ui::KeyboardCode key_code, int flags) {
ui::KeyEvent key_event(ui::ET_KEY_PRESSED, key_code, flags);
apps_grid_view_->OnKeyPressed(key_event);
}
bool CheckNoSelection() {
return !expand_arrow_view_->selected() &&
-1 == suggestions_container_->selected_index() &&
!apps_grid_view_->has_selected_view();
}
bool CheckSelectionAtSuggestionsContainer(int index) {
return !expand_arrow_view_->selected() &&
index == suggestions_container_->selected_index() &&
!apps_grid_view_->has_selected_view();
}
bool CheckSelectionAtExpandArrow() {
return expand_arrow_view_->selected() &&
-1 == suggestions_container_->selected_index() &&
!apps_grid_view_->has_selected_view();
}
bool CheckSelectionAtAppsGridView(int index) {
return !expand_arrow_view_->selected() &&
-1 == suggestions_container_->selected_index() &&
apps_grid_view_->IsSelectedView(GetItemViewAt(index));
}
AppListView* app_list_view_ = nullptr; // Owned by native widget.
AppsGridView* apps_grid_view_ = nullptr; // Owned by |app_list_view_|.
ContentsView* contents_view_ = nullptr; // Owned by |app_list_view_|.
SuggestionsContainerView* suggestions_container_ =
nullptr; // Owned by |apps_grid_view_|.
ExpandArrowView* expand_arrow_view_ = nullptr; // Owned by |apps_grid_view_|.
std::unique_ptr<AppListTestViewDelegate> delegate_;
AppListTestModel* model_ = nullptr; // Owned by |delegate_|.
std::unique_ptr<AppsGridViewTestApi> test_api_;
bool is_rtl_ = false;
base::test::ScopedFeatureList scoped_feature_list_;
private:
// Restores the locale to default when destructor is called.
base::test::ScopedRestoreICUDefaultLocale restore_locale_;
DISALLOW_COPY_AND_ASSIGN(AppsGridViewTest);
};
// Instantiate the Boolean which is used to toggle RTL in
// the parameterized tests.
INSTANTIATE_TEST_CASE_P(, AppsGridViewTest, testing::Bool());
class TestAppsGridViewFolderDelegate : public AppsGridViewFolderDelegate {
public:
TestAppsGridViewFolderDelegate() = default;
~TestAppsGridViewFolderDelegate() override = default;
// Overridden from AppsGridViewFolderDelegate:
void UpdateFolderViewBackground(bool show_bubble) override {
show_bubble_ = show_bubble;
}
void ReparentItem(AppListItemView* original_drag_view,
const gfx::Point& drag_point_in_folder_grid,
bool has_native_drag) override {}
void DispatchDragEventForReparent(
AppsGridView::Pointer pointer,
const gfx::Point& drag_point_in_folder_grid) override {}
void DispatchEndDragEventForReparent(bool events_forwarded_to_drag_drop_host,
bool cancel_drag) override {}
bool IsPointOutsideOfFolderBoundary(const gfx::Point& point) override {
return false;
}
bool IsOEMFolder() const override { return false; }
void SetRootLevelDragViewVisible(bool visible) override {}
bool show_bubble() { return show_bubble_; }
private:
bool show_bubble_ = false;
DISALLOW_COPY_AND_ASSIGN(TestAppsGridViewFolderDelegate);
};
TEST_P(AppsGridViewTest, CreatePage) {
// Fully populates a page.
const int kPages = 1;
EXPECT_EQ(kNumOfSuggestedApps, suggestions_container_->num_results());
int kExpectedTilesOnFirstPage =
apps_grid_view_->cols() * (apps_grid_view_->rows_per_page() - 1);
EXPECT_EQ(kExpectedTilesOnFirstPage, GetTilesPerPage(kPages - 1));
model_->PopulateApps(kPages * GetTilesPerPage(kPages - 1));
EXPECT_EQ(kPages, GetPaginationModel()->total_pages());
// Adds one more and gets a new page created.
model_->CreateAndAddItem("Extra");
EXPECT_EQ(kPages + 1, GetPaginationModel()->total_pages());
}
TEST_P(AppsGridViewTest, EnsureHighlightedVisible) {
const int kPages = 3;
model_->PopulateApps(GetTilesPerPage(0) + (kPages - 1) * GetTilesPerPage(1));
EXPECT_EQ(kPages, GetPaginationModel()->total_pages());
EXPECT_EQ(0, GetPaginationModel()->selected_page());
// Highlight first one and last one one first page and first page should be
// selected.
model_->HighlightItemAt(0);
EXPECT_EQ(0, GetPaginationModel()->selected_page());
model_->HighlightItemAt(GetTilesPerPage(0) - 1);
EXPECT_EQ(0, GetPaginationModel()->selected_page());
// Highlight first one on 2nd page and 2nd page should be selected.
model_->HighlightItemAt(GetTilesPerPage(1) + 1);
EXPECT_EQ(1, GetPaginationModel()->selected_page());
// Highlight last one in the model and last page should be selected.
model_->HighlightItemAt(model_->top_level_item_list()->item_count() - 1);
EXPECT_EQ(kPages - 1, GetPaginationModel()->selected_page());
}
TEST_P(AppsGridViewTest, RemoveSelectedLastApp) {
const int kTotalItems = 2;
const int kLastItemIndex = kTotalItems - 1;
model_->PopulateApps(kTotalItems);
AppListItemView* last_view = GetItemViewAt(kLastItemIndex);
apps_grid_view_->SetSelectedView(last_view);
model_->DeleteItem(model_->GetItemName(kLastItemIndex));
EXPECT_FALSE(apps_grid_view_->IsSelectedView(last_view));
// No crash happens.
AppListItemView* view = GetItemViewAt(0);
apps_grid_view_->SetSelectedView(view);
EXPECT_TRUE(apps_grid_view_->IsSelectedView(view));
}
TEST_P(AppsGridViewTest, MouseDragWithFolderDisabled) {
model_->SetFoldersEnabled(false);
const int kTotalItems = 4;
model_->PopulateApps(kTotalItems);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
// Dragging changes model order.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 1,Item 0,Item 2,Item 3"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Canceling drag should keep existing order.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(true);
EXPECT_EQ(std::string("Item 1,Item 0,Item 2,Item 3"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Deleting an item keeps remaining intact.
SimulateDrag(AppsGridView::MOUSE, from, to);
model_->DeleteItem(model_->GetItemName(0));
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 1,Item 2,Item 3"), model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Adding a launcher item cancels the drag and respects the order.
SimulateDrag(AppsGridView::MOUSE, from, to);
EXPECT_TRUE(apps_grid_view_->has_dragged_view());
model_->CreateAndAddItem("Extra");
// No need to EndDrag explicitly - adding an item should do this.
EXPECT_FALSE(apps_grid_view_->has_dragged_view());
// Even though cancelled, mouse move events can still arrive via the item
// view. Ensure that behaves sanely, and doesn't start a new drag.
ui::MouseEvent drag_event(ui::ET_MOUSE_DRAGGED, gfx::Point(1, 1),
gfx::Point(2, 2), ui::EventTimeForNow(), 0, 0);
apps_grid_view_->UpdateDragFromItem(AppsGridView::MOUSE, drag_event);
EXPECT_FALSE(apps_grid_view_->has_dragged_view());
EXPECT_EQ(std::string("Item 1,Item 2,Item 3,Extra"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, MouseDragItemIntoFolder) {
size_t kTotalItems = 3;
model_->PopulateApps(kTotalItems);
EXPECT_EQ(model_->top_level_item_list()->item_count(), kTotalItems);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2"), model_->GetModelContent());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
// Dragging item_1 over item_0 creates a folder.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(kTotalItems - 1, model_->top_level_item_list()->item_count());
EXPECT_EQ(AppListFolderItem::kItemType,
model_->top_level_item_list()->item_at(0)->GetItemType());
AppListFolderItem* folder_item = static_cast<AppListFolderItem*>(
model_->top_level_item_list()->item_at(0));
EXPECT_EQ(2u, folder_item->ChildItemCount());
AppListItem* item_0 = model_->FindItem("Item 0");
EXPECT_TRUE(item_0->IsInFolder());
EXPECT_EQ(folder_item->id(), item_0->folder_id());
AppListItem* item_1 = model_->FindItem("Item 1");
EXPECT_TRUE(item_1->IsInFolder());
EXPECT_EQ(folder_item->id(), item_1->folder_id());
std::string expected_items = folder_item->id() + ",Item 2";
EXPECT_EQ(expected_items, model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Dragging item_2 to the folder adds item_2 to the folder.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(kTotalItems - 2, model_->top_level_item_list()->item_count());
EXPECT_EQ(folder_item->id(), model_->GetModelContent());
EXPECT_EQ(3u, folder_item->ChildItemCount());
item_0 = model_->FindItem("Item 0");
EXPECT_TRUE(item_0->IsInFolder());
EXPECT_EQ(folder_item->id(), item_0->folder_id());
item_1 = model_->FindItem("Item 1");
EXPECT_TRUE(item_1->IsInFolder());
EXPECT_EQ(folder_item->id(), item_1->folder_id());
AppListItem* item_2 = model_->FindItem("Item 2");
EXPECT_TRUE(item_2->IsInFolder());
EXPECT_EQ(folder_item->id(), item_2->folder_id());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, MouseDragMaxItemsInFolder) {
// Create and add a folder with |kMaxFolderItemsFullscreen - 1| items.
size_t kTotalItems = kMaxFolderItemsFullscreen - 1;
model_->CreateAndPopulateFolderWithApps(kTotalItems);
EXPECT_EQ(1u, model_->top_level_item_list()->item_count());
EXPECT_EQ(AppListFolderItem::kItemType,
model_->top_level_item_list()->item_at(0)->GetItemType());
AppListFolderItem* folder_item = static_cast<AppListFolderItem*>(
model_->top_level_item_list()->item_at(0));
EXPECT_EQ(kTotalItems, folder_item->ChildItemCount());
// Create and add another 2 items.
model_->PopulateAppWithId(kTotalItems);
model_->PopulateAppWithId(kTotalItems + 1);
EXPECT_EQ(3u, model_->top_level_item_list()->item_count());
EXPECT_EQ(folder_item->id(), model_->top_level_item_list()->item_at(0)->id());
EXPECT_EQ(model_->GetItemName(kMaxFolderItemsFullscreen - 1),
model_->top_level_item_list()->item_at(1)->id());
EXPECT_EQ(model_->GetItemName(kMaxFolderItemsFullscreen),
model_->top_level_item_list()->item_at(2)->id());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
// Dragging one item into the folder, the folder should accept the item.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ(folder_item->id(), model_->top_level_item_list()->item_at(0)->id());
EXPECT_EQ(kMaxFolderItemsFullscreen, folder_item->ChildItemCount());
EXPECT_EQ(model_->GetItemName(kMaxFolderItemsFullscreen),
model_->top_level_item_list()->item_at(1)->id());
test_api_->LayoutToIdealBounds();
// Dragging the last item over the folder, the folder won't accept the new
// item.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ(kMaxFolderItemsFullscreen, folder_item->ChildItemCount());
test_api_->LayoutToIdealBounds();
}
// Check that moving items around doesn't allow a drop to happen into a full
// folder.
TEST_P(AppsGridViewTest, MouseDragMaxItemsInFolderWithMovement) {
// Create and add a folder with |kMaxFolderItemsFullscreen| in it.
size_t kTotalItems = kMaxFolderItemsFullscreen;
model_->CreateAndPopulateFolderWithApps(kTotalItems);
EXPECT_EQ(1u, model_->top_level_item_list()->item_count());
EXPECT_EQ(AppListFolderItem::kItemType,
model_->top_level_item_list()->item_at(0)->GetItemType());
AppListFolderItem* folder_item = static_cast<AppListFolderItem*>(
model_->top_level_item_list()->item_at(0));
EXPECT_EQ(kTotalItems, folder_item->ChildItemCount());
// Create and add another item.
model_->PopulateAppWithId(kTotalItems);
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ(folder_item->id(), model_->top_level_item_list()->item_at(0)->id());
EXPECT_EQ(model_->GetItemName(kMaxFolderItemsFullscreen),
model_->top_level_item_list()->item_at(1)->id());
AppListItemView* folder_view =
GetItemViewForPoint(GetItemRectOnCurrentPageAt(0, 0).CenterPoint());
// Drag the new item to the left so that the grid reorders.
gfx::Point from = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 0).bottom_left();
to.Offset(0, -1); // Get a point inside the rect.
AppListItemView* dragged_view = SimulateDrag(AppsGridView::MOUSE, from, to);
test_api_->LayoutToIdealBounds();
// The grid now looks like | blank | folder |.
EXPECT_EQ(nullptr, GetItemViewForPoint(
GetItemRectOnCurrentPageAt(0, 0).CenterPoint()));
EXPECT_EQ(folder_view, GetItemViewForPoint(
GetItemRectOnCurrentPageAt(0, 1).CenterPoint()));
// Move onto the folder and end the drag.
to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Point translated_to =
gfx::PointAtOffsetFromOrigin(to - dragged_view->origin());
ui::MouseEvent drag_event(ui::ET_MOUSE_DRAGGED, translated_to, to,
ui::EventTimeForNow(), 0, 0);
apps_grid_view_->UpdateDragFromItem(AppsGridView::MOUSE, drag_event);
apps_grid_view_->EndDrag(false);
// The item should not have moved into the folder.
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ(kMaxFolderItemsFullscreen, folder_item->ChildItemCount());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, MouseDragItemReorder) {
// Using a simulated 2x2 layout for the test. If fullscreen app list is
// enabled, rows_per_page passed should be 3 as the first row is occupied by
// suggested apps.
apps_grid_view_->SetLayout(2, 3);
model_->PopulateApps(4);
EXPECT_EQ(4u, model_->top_level_item_list()->item_count());
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
// Dragging an item towards its neighbours should not reorder until the drag
// is past the folder drop point.
gfx::Point top_right = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Vector2d drag_vector;
int half_tile_width = (GetItemRectOnCurrentPageAt(0, 1).x() -
GetItemRectOnCurrentPageAt(0, 0).x()) /
2;
int tile_height = GetItemRectOnCurrentPageAt(1, 0).y() -
GetItemRectOnCurrentPageAt(0, 0).y();
// Drag left but stop before the folder dropping circle.
drag_vector.set_x(-half_tile_width - 4);
SimulateDrag(AppsGridView::MOUSE, top_right, top_right + drag_vector);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
// Drag left, past the folder dropping circle.
gfx::Vector2d last_drag_vector(drag_vector);
drag_vector.set_x(-3 * half_tile_width + 4);
SimulateDrag(AppsGridView::MOUSE, top_right + last_drag_vector,
top_right + drag_vector);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 1,Item 0,Item 2,Item 3"),
model_->GetModelContent());
// Drag down, between apps 2 and 3. The gap should open up, making space for
// app 1 in the bottom left.
last_drag_vector = drag_vector;
drag_vector.set_x(-half_tile_width);
drag_vector.set_y(tile_height);
SimulateDrag(AppsGridView::MOUSE, top_right + last_drag_vector,
top_right + drag_vector);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 2,Item 1,Item 3"),
model_->GetModelContent());
// Drag up, between apps 0 and 2. The gap should open up, making space for app
// 1 in the top right.
last_drag_vector = drag_vector;
drag_vector.set_x(-half_tile_width);
drag_vector.set_y(0);
SimulateDrag(AppsGridView::MOUSE, top_right + last_drag_vector,
top_right + drag_vector);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
// Dragging down past the last app should reorder to the last position.
last_drag_vector = drag_vector;
drag_vector.set_x(half_tile_width);
drag_vector.set_y(2 * tile_height);
SimulateDrag(AppsGridView::MOUSE, top_right + last_drag_vector,
top_right + drag_vector);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 2,Item 3,Item 1"),
model_->GetModelContent());
}
TEST_P(AppsGridViewTest, MouseDragFolderReorder) {
size_t kTotalItems = 2;
model_->CreateAndPopulateFolderWithApps(kTotalItems);
model_->PopulateAppWithId(kTotalItems);
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ(AppListFolderItem::kItemType,
model_->top_level_item_list()->item_at(0)->GetItemType());
AppListFolderItem* folder_item = static_cast<AppListFolderItem*>(
model_->top_level_item_list()->item_at(0));
EXPECT_EQ("Item 2", model_->top_level_item_list()->item_at(1)->id());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
// Dragging folder over item_1 should leads to re-ordering these two
// items.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(false);
EXPECT_EQ(2u, model_->top_level_item_list()->item_count());
EXPECT_EQ("Item 2", model_->top_level_item_list()->item_at(0)->id());
EXPECT_EQ(folder_item->id(), model_->top_level_item_list()->item_at(1)->id());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, MouseDragWithCancelDeleteAddItem) {
size_t kTotalItems = 4;
model_->PopulateApps(kTotalItems);
EXPECT_EQ(model_->top_level_item_list()->item_count(), kTotalItems);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
// Canceling drag should keep existing order.
SimulateDrag(AppsGridView::MOUSE, from, to);
apps_grid_view_->EndDrag(true);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Deleting an item keeps remaining intact.
SimulateDrag(AppsGridView::MOUSE, from, to);
model_->DeleteItem(model_->GetItemName(2));
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 1,Item 3"), model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Adding a launcher item cancels the drag and respects the order.
SimulateDrag(AppsGridView::MOUSE, from, to);
model_->CreateAndAddItem("Extra");
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 0,Item 1,Item 3,Extra"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, MouseDragFlipPage) {
apps_grid_view_->set_page_flip_delay_in_ms_for_testing(10);
GetPaginationModel()->SetTransitionDurations(10, 10);
PageFlipWaiter page_flip_waiter(GetPaginationModel());
const int kPages = 3;
model_->PopulateApps(GetTilesPerPage(0) + (kPages - 1) * GetTilesPerPage(1));
EXPECT_EQ(kPages, GetPaginationModel()->total_pages());
EXPECT_EQ(0, GetPaginationModel()->selected_page());
gfx::Point from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point to;
const gfx::Rect apps_grid_bounds = apps_grid_view_->GetLocalBounds();
to = gfx::Point(apps_grid_bounds.width() / 2, apps_grid_bounds.bottom());
// For fullscreen/bubble launcher, drag to the bottom/right of bounds.
page_flip_waiter.Reset();
SimulateDrag(AppsGridView::MOUSE, from, to);
// Page should be flipped after sometime to hit page 1 and 2 then stop.
while (test_api_->HasPendingPageFlip()) {
page_flip_waiter.Wait();
}
EXPECT_EQ("1,2", page_flip_waiter.selected_pages());
EXPECT_EQ(2, GetPaginationModel()->selected_page());
apps_grid_view_->EndDrag(true);
// Now drag to the top edge, and test the other direction.
to.set_y(apps_grid_bounds.y());
page_flip_waiter.Reset();
SimulateDrag(AppsGridView::MOUSE, from, to);
while (test_api_->HasPendingPageFlip()) {
page_flip_waiter.Wait();
}
EXPECT_EQ("1,0", page_flip_waiter.selected_pages());
EXPECT_EQ(0, GetPaginationModel()->selected_page());
apps_grid_view_->EndDrag(true);
}
TEST_P(AppsGridViewTest, SimultaneousDragWithFolderDisabled) {
model_->SetFoldersEnabled(false);
const int kTotalItems = 4;
model_->PopulateApps(kTotalItems);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
gfx::Point mouse_from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point mouse_to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
gfx::Point touch_from = GetItemRectOnCurrentPageAt(0, 2).CenterPoint();
gfx::Point touch_to = GetItemRectOnCurrentPageAt(0, 3).CenterPoint();
// Starts a mouse drag first then a touch drag.
SimulateDrag(AppsGridView::MOUSE, mouse_from, mouse_to);
SimulateDrag(AppsGridView::TOUCH, touch_from, touch_to);
// Finishes the drag and mouse drag wins.
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 1,Item 0,Item 2,Item 3"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
// Starts a touch drag first then a mouse drag.
SimulateDrag(AppsGridView::TOUCH, touch_from, touch_to);
SimulateDrag(AppsGridView::MOUSE, mouse_from, mouse_to);
// Finishes the drag and touch drag wins.
apps_grid_view_->EndDrag(false);
EXPECT_EQ(std::string("Item 1,Item 0,Item 3,Item 2"),
model_->GetModelContent());
test_api_->LayoutToIdealBounds();
}
TEST_P(AppsGridViewTest, UpdateFolderBackgroundOnCancelDrag) {
const int kTotalItems = 4;
TestAppsGridViewFolderDelegate folder_delegate;
apps_grid_view_->set_folder_delegate(&folder_delegate);
model_->PopulateApps(kTotalItems);
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
gfx::Point mouse_from = GetItemRectOnCurrentPageAt(0, 0).CenterPoint();
gfx::Point mouse_to = GetItemRectOnCurrentPageAt(0, 1).CenterPoint();
// Starts a mouse drag and then cancels it.
SimulateDrag(AppsGridView::MOUSE, mouse_from, mouse_to);
EXPECT_TRUE(folder_delegate.show_bubble());
apps_grid_view_->EndDrag(true);
EXPECT_FALSE(folder_delegate.show_bubble());
EXPECT_EQ(std::string("Item 0,Item 1,Item 2,Item 3"),
model_->GetModelContent());
}
TEST_P(AppsGridViewTest, MoveSelectedOnAllAppsTiles) {
const int kItemsOnSecondPage = 3;
const int kAllAppsItems = GetTilesPerPage(0) + kItemsOnSecondPage;
const int kLastIndexOfFirstPage = GetTilesPerPage(0) - 1;
const int kFirstIndexOfLastRowFirstPage =
GetTilesPerPage(0) - apps_grid_view_->cols();
model_->PopulateApps(kAllAppsItems);
// Tests moving left from the first tile on the first page.
apps_grid_view_->SetSelectedView(GetItemViewAt(0));
SimulateKeyPress(is_rtl_ ? ui::VKEY_RIGHT : ui::VKEY_LEFT);
EXPECT_FALSE(apps_grid_view_->has_selected_view());
EXPECT_EQ(suggestions_container_->num_results() - 1,
suggestions_container_->selected_index());
suggestions_container_->ClearSelectedIndex();
// Tests moving left from the first tile on the second page.
apps_grid_view_->SetSelectedView(GetItemViewAt(GetTilesPerPage(0)));
SimulateKeyPress(is_rtl_ ? ui::VKEY_RIGHT : ui::VKEY_LEFT);
EXPECT_TRUE(
apps_grid_view_->IsSelectedView(GetItemViewAt(kLastIndexOfFirstPage)));
// Tests moving right from the last slot on the first page.
apps_grid_view_->SetSelectedView(GetItemViewAt(kLastIndexOfFirstPage));
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
EXPECT_TRUE(
apps_grid_view_->IsSelectedView(GetItemViewAt(GetTilesPerPage(0))));
// Tests moving up from the first row on the first page.
apps_grid_view_->SetSelectedView(GetItemViewAt(1));
SimulateKeyPress(ui::VKEY_UP);
EXPECT_FALSE(apps_grid_view_->has_selected_view());
EXPECT_EQ(1, suggestions_container_->selected_index());
suggestions_container_->ClearSelectedIndex();
// Tests moving up from the first row on the second page.
apps_grid_view_->SetSelectedView(GetItemViewAt(kAllAppsItems - 1));
SimulateKeyPress(ui::VKEY_UP);
int expected_index =
GetTilesPerPage(0) - 1 - (apps_grid_view_->cols() - kItemsOnSecondPage);
EXPECT_TRUE(apps_grid_view_->IsSelectedView(GetItemViewAt(expected_index)));
// Tests moving down from the last row on the first page.
apps_grid_view_->SetSelectedView(
GetItemViewAt(kFirstIndexOfLastRowFirstPage));
SimulateKeyPress(ui::VKEY_DOWN);
EXPECT_TRUE(
apps_grid_view_->IsSelectedView(GetItemViewAt(GetTilesPerPage(0))));
// Tests moving down if no direct tile exists, clamp to the last item.
apps_grid_view_->SetSelectedView(GetItemViewAt(kLastIndexOfFirstPage));
SimulateKeyPress(ui::VKEY_DOWN);
EXPECT_TRUE(
apps_grid_view_->IsSelectedView(GetItemViewAt(kAllAppsItems - 1)));
}
// Tests that moving selection down from the searchbox selects the first app.
TEST_P(AppsGridViewTest, SelectionDownFromSearchBoxSelectsFirstApp) {
model_->PopulateApps(5);
// Check that nothing is selected.
EXPECT_TRUE(CheckNoSelection());
// Moves selection to the first app in the suggestions container.
SimulateKeyPress(ui::VKEY_DOWN);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
}
// Tests that moving selection up from the first app selects nothing.
TEST_P(AppsGridViewTest, SelectionUpFromFirstAppSelectsNothing) {
model_->PopulateApps(5);
// Select the first app.
suggestions_container_->SetSelectedIndex(0);
// Tests moving up.
SimulateKeyPress(ui::VKEY_UP);
// Check that there is no selection in AppsGridView.
EXPECT_TRUE(CheckNoSelection());
}
// Tests that UMA is properly collected when either a suggested or normal app is
// launched.
TEST_F(AppsGridViewTest, UMATestForLaunchingApps) {
base::HistogramTester histogram_tester;
model_->PopulateApps(5);
// Select the first suggested app and launch it.
contents_view_->app_list_main_view()->ActivateApp(GetItemViewAt(0)->item(),
0);
// Test that histograms recorded that a regular app launched.
histogram_tester.ExpectBucketCount("Apps.AppListAppLaunchedFullscreen", 0, 1);
// Test that histograms did not record that a suggested launched.
histogram_tester.ExpectBucketCount("Apps.AppListAppLaunchedFullscreen", 1, 0);
// Launch a suggested app.
suggestions_container_->child_at(0)->OnKeyPressed(
ui::KeyEvent(ui::ET_KEY_PRESSED, ui::VKEY_RETURN, ui::EF_NONE));
// Test that histograms recorded that a suggested app launched, and that the
// count for regular apps launched is unchanged.
histogram_tester.ExpectBucketCount("Apps.AppListAppLaunchedFullscreen", 0, 1);
histogram_tester.ExpectBucketCount("Apps.AppListAppLaunchedFullscreen", 1, 1);
}
// Tests that moving selection backwards (left in ltr, right in rtl) from the
// first app selects nothing, and that selection returns to the suggested apps
// when selection moves forwards (right in ltr, left in rtl).
TEST_P(AppsGridViewTest,
SelectionMovingBackwardsAndForwardsOnFirstSuggestedApp) {
model_->PopulateApps(5);
// Check that nothing is selected.
EXPECT_TRUE(CheckNoSelection());
// Move selection forward.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check that the first suggested app is selected.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
// Move selection backward.
SimulateKeyPress(is_rtl_ ? ui::VKEY_RIGHT : ui::VKEY_LEFT);
// Check that there is no selection.
EXPECT_TRUE(CheckNoSelection());
// Move selection forward.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check that the first suggested app is selected.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
}
// Tests that selection can traverse all suggested apps.
TEST_P(AppsGridViewTest, SelectionTraversesAllSuggestedApps) {
model_->PopulateApps(5);
// Select the first suggested app.
suggestions_container_->SetSelectedIndex(0);
// Advance selection to the next app.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check selection at the next suggested app.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(1));
// Advance selection to the next app.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check selection at the next suggested app.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(2));
// Advance selection to the next app, which is in the AppsGridView.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check selection at the first app in AppsGridView.
EXPECT_TRUE(CheckSelectionAtAppsGridView(0));
}
// Tests that selection moves from the last suggested app to the first app that
// is not suggested when selection moves forward.
TEST_P(AppsGridViewTest, SelectionMovesFromLastSuggestedAppToFirstAppInGrid) {
model_->PopulateApps(5);
// Select the last of three selected apps.
suggestions_container_->SetSelectedIndex(2);
// Move selection forward, off of the last suggested app.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Check selection at apps grid view position 0 (first app in the app grid).
EXPECT_TRUE(CheckSelectionAtAppsGridView(0));
}
// Tests that selection moves to the first element of the next page when the
// next key is pressed.
TEST_P(AppsGridViewTest, SelectionMovesToFirstElementOfNextPageWithNextKey) {
const int kPages = 2;
const int kAllAppsItems = GetTilesPerPage(0) + 1;
model_->PopulateApps(kAllAppsItems);
// Check that the first page is selected.
EXPECT_EQ(0, GetPaginationModel()->selected_page());
// Move to next page.
apps_grid_view_->ClearAnySelectedView();
SimulateKeyPress(ui::VKEY_DOWN);
SimulateKeyPress(ui::VKEY_NEXT);
// Check that the selection is on the last app item, and that the page changed
// to the last page.
EXPECT_TRUE(CheckSelectionAtAppsGridView(kAllAppsItems - 1));
EXPECT_EQ(kPages - 1, GetPaginationModel()->selected_page());
}
// Tests that selection moves to the first element of the previous page with the
// prev key.
TEST_P(AppsGridViewTest, SelectionMovesToFirstElementOfPrevPageWithPrevKey) {
const int kAllAppsItems = GetTilesPerPage(0) + 1;
model_->PopulateApps(kAllAppsItems);
// Move to next page.
apps_grid_view_->ClearAnySelectedView();
SimulateKeyPress(ui::VKEY_DOWN);
SimulateKeyPress(ui::VKEY_NEXT);
EXPECT_TRUE(
apps_grid_view_->IsSelectedView(GetItemViewAt(kAllAppsItems - 1)));
// Press the PREV key to return to the previous page.
SimulateKeyPress(ui::VKEY_PRIOR);
// Check that the page has changed to page 0, and the first app is selected.
EXPECT_TRUE(CheckSelectionAtAppsGridView(0));
EXPECT_EQ(0, GetPaginationModel()->selected_page());
}
// Tests that in state start there's no selection at the beginning. And hitting
// down/tab/right arrow key moves the selection to the first app in suggestions
// container.
TEST_P(AppsGridViewTest, InitialSelectionInStateStart) {
// Simulates that the app list is at state start.
contents_view_->SetActiveState(AppListModel::STATE_START);
model_->PopulateApps(GetTilesPerPage(0));
EXPECT_TRUE(CheckNoSelection());
SimulateKeyPress(ui::VKEY_DOWN);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
apps_grid_view_->ClearAnySelectedView();
SimulateKeyPress(ui::VKEY_RIGHT);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
apps_grid_view_->ClearAnySelectedView();
SimulateKeyPress(ui::VKEY_TAB);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
}
// Tests that in state start when selection exists. Hitting tab key does
// nothing while hitting shift+tab key clears selection.
TEST_P(AppsGridViewTest, ClearSelectionInStateStart) {
// Simulates that the app list is at state start.
contents_view_->SetActiveState(AppListModel::STATE_START);
model_->PopulateApps(GetTilesPerPage(0));
// Moves selection to the first app in the suggestions container.
SimulateKeyPress(ui::VKEY_DOWN);
SimulateKeyPress(ui::VKEY_TAB);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
SimulateKeyPress(ui::VKEY_TAB, ui::EF_SHIFT_DOWN);
EXPECT_TRUE(CheckNoSelection());
}
// Tests that in state start when selection is on expand arrow, only hitting
// left/up arrow key moves the selection to the last app in suggestion
// container.
TEST_P(AppsGridViewTest, ExpandArrowSelectionInStateStart) {
// Simulates that the app list is at state start.
contents_view_->SetActiveState(AppListModel::STATE_START);
model_->PopulateApps(GetTilesPerPage(0));
// Moves selection to the expand arrow.
expand_arrow_view_->SetSelected(true);
// Expect the selection to be on the expand arrow.
EXPECT_TRUE(CheckSelectionAtExpandArrow());
SimulateKeyPress(ui::VKEY_DOWN);
// Expect the selection to be on the expand arrow.
EXPECT_TRUE(CheckSelectionAtExpandArrow());
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
// Expect the selection to be on the expand arrow.
EXPECT_TRUE(CheckSelectionAtExpandArrow());
SimulateKeyPress(ui::VKEY_TAB);
// Expect the selection to be on the expand arrow.
EXPECT_TRUE(CheckSelectionAtExpandArrow());
SimulateKeyPress(ui::VKEY_UP);
// Expect the selection to be on the last suggested app.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(kNumOfSuggestedApps - 1));
// Resets selection to the expand arrow.
apps_grid_view_->ClearAnySelectedView();
expand_arrow_view_->SetSelected(true);
SimulateKeyPress(is_rtl_ ? ui::VKEY_RIGHT : ui::VKEY_LEFT);
// Expect the selection to be on the last suggested app.
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(kNumOfSuggestedApps - 1));
}
// Tests that in state start when selection is on app in suggestions container,
// hitting up key moves clear selection. Hitting left/right key moves the
// selection to app on the left/right if index is valid. Hitting right key when
// selection is on the last app in suggestions container or hitting down key
// move the selection to the expand arrow.
TEST_P(AppsGridViewTest, SuggestionsContainerSelectionInStateStart) {
// Simulates that the app list is at state start.
contents_view_->SetActiveState(AppListModel::STATE_START);
model_->PopulateApps(GetTilesPerPage(0));
SimulateKeyPress(ui::VKEY_DOWN);
// Tests moving up.
SimulateKeyPress(ui::VKEY_UP);
EXPECT_TRUE(CheckNoSelection());
SimulateKeyPress(ui::VKEY_DOWN);
// Tests moving right.
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(1));
// Tests moving left.
SimulateKeyPress(is_rtl_ ? ui::VKEY_RIGHT : ui::VKEY_LEFT);
EXPECT_TRUE(CheckSelectionAtSuggestionsContainer(0));
// Tests moving down.
SimulateKeyPress(ui::VKEY_DOWN);
EXPECT_TRUE(CheckSelectionAtExpandArrow());
// Sets selection to the last app in the suggestions container.
apps_grid_view_->ClearAnySelectedView();
suggestions_container_->SetSelectedIndex(kNumOfSuggestedApps - 1);
SimulateKeyPress(is_rtl_ ? ui::VKEY_LEFT : ui::VKEY_RIGHT);
EXPECT_TRUE(CheckSelectionAtExpandArrow());
}
TEST_P(AppsGridViewTest, ItemLabelShortNameOverride) {
// If the app's full name and short name differ, the title label's tooltip
// should always be the full name of the app.
std::string expected_text("xyz");
std::string expected_tooltip("tooltip");
AppListItem* item = model_->CreateAndAddItem("Item with short name");
model_->SetItemNameAndShortName(item, expected_tooltip, expected_text);
base::string16 actual_tooltip;
AppListItemView* item_view = GetItemViewAt(0);
ASSERT_TRUE(item_view);
const views::Label* title_label = item_view->title();
EXPECT_TRUE(item_view->GetTooltipText(title_label->bounds().CenterPoint(),
&actual_tooltip));
EXPECT_EQ(expected_tooltip, base::UTF16ToUTF8(actual_tooltip));
EXPECT_EQ(expected_text, base::UTF16ToUTF8(title_label->text()));
}
TEST_P(AppsGridViewTest, ItemLabelNoShortName) {
// If the app's full name and short name are the same, use the default tooltip
// behavior of the label (only show a tooltip if the title is truncated).
std::string title("a");
AppListItem* item = model_->CreateAndAddItem(title);
model_->SetItemNameAndShortName(item, title, "");
base::string16 actual_tooltip;
AppListItemView* item_view = GetItemViewAt(0);
ASSERT_TRUE(item_view);
const views::Label* title_label = item_view->title();
EXPECT_FALSE(title_label->GetTooltipText(title_label->bounds().CenterPoint(),
&actual_tooltip));
EXPECT_EQ(title, base::UTF16ToUTF8(title_label->text()));
}
TEST_P(AppsGridViewTest, ScrollSequenceHandledByAppListView) {
model_->PopulateApps(GetTilesPerPage(0) + 1);
EXPECT_EQ(2, GetPaginationModel()->total_pages());
gfx::Point apps_grid_view_origin =
apps_grid_view_->GetBoundsInScreen().origin();
ui::GestureEvent scroll_begin(
apps_grid_view_origin.x(), apps_grid_view_origin.y(), 0,
base::TimeTicks(),
ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_BEGIN, 0, 0));
ui::GestureEvent scroll_update(
apps_grid_view_origin.x(), apps_grid_view_origin.y(), 0,
base::TimeTicks(),
ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_UPDATE, 0, 10));
// Drag down on the app grid when on page 1, this should move the AppListView
// and not move the AppsGridView.
apps_grid_view_->OnGestureEvent(&scroll_begin);
apps_grid_view_->OnGestureEvent(&scroll_update);
ASSERT_TRUE(app_list_view_->is_in_drag());
ASSERT_EQ(0, GetPaginationModel()->transition().progress);
}
TEST_P(AppsGridViewTest,
OnGestureEventScrollSequenceHandleByPaginationController) {
model_->PopulateApps(GetTilesPerPage(0) + 1);
EXPECT_EQ(2, GetPaginationModel()->total_pages());
gfx::Point apps_grid_view_origin =
apps_grid_view_->GetBoundsInScreen().origin();
ui::GestureEvent scroll_begin(
apps_grid_view_origin.x(), apps_grid_view_origin.y(), 0,
base::TimeTicks(),
ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_BEGIN, 0, 0));
ui::GestureEvent scroll_update(
apps_grid_view_origin.x(), apps_grid_view_origin.y(), 0,
base::TimeTicks(),
ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_UPDATE, 0, -10));
// Drag up on the app grid when on page 1, this should move the AppsGridView
// but not the AppListView.
apps_grid_view_->OnGestureEvent(&scroll_begin);
apps_grid_view_->OnGestureEvent(&scroll_update);
ASSERT_FALSE(app_list_view_->is_in_drag());
ASSERT_NE(0, GetPaginationModel()->transition().progress);
}
} // namespace test
} // namespace app_list