blob: d4b26a74184a3f05ad774713b71f03e0a53ecf6a [file] [log] [blame]
// Copyright 2016 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 <memory>
#include "ash/app_list/app_list_controller_impl.h"
#include "ash/app_list/presenter/app_list_presenter_impl.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "ash/shelf/app_list_button.h"
#include "ash/shelf/shelf.h"
#include "ash/shelf/shelf_view.h"
#include "ash/shelf/shelf_view_test_api.h"
#include "ash/shelf/shelf_widget.h"
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "ui/aura/window.h"
#include "ui/events/test/event_generator.h"
namespace ash {
using AppListTest = AshTestBase;
// An integration test to toggle the app list by pressing the shelf button.
TEST_F(AppListTest, PressAppListButtonToShowAndDismiss) {
aura::Window* root_window = Shell::GetPrimaryRootWindow();
Shelf* shelf = Shelf::ForWindow(root_window);
ShelfWidget* shelf_widget = shelf->shelf_widget();
ShelfView* shelf_view = shelf->GetShelfViewForTesting();
ShelfViewTestAPI(shelf_view).RunMessageLoopUntilAnimationsDone();
AppListButton* app_list_button = shelf_widget->GetAppListButton();
// Ensure animations progressed to give the app list button a non-empty size.
ASSERT_GT(app_list_button->GetBoundsInScreen().height(), 0);
aura::Window* app_list_container =
root_window->GetChildById(kShellWindowId_AppListContainer);
ui::test::EventGenerator generator(root_window);
// Click the app list button to show the app list.
auto* controller = Shell::Get()->app_list_controller();
auto* presenter = controller->presenter();
EXPECT_FALSE(controller->GetTargetVisibility());
EXPECT_FALSE(presenter->GetTargetVisibility());
EXPECT_EQ(0u, app_list_container->children().size());
EXPECT_FALSE(app_list_button->is_showing_app_list());
generator.set_current_screen_location(
app_list_button->GetBoundsInScreen().CenterPoint());
generator.ClickLeftButton();
// Flush the mojo message from Ash to Chrome to show the app list.
controller->FlushForTesting();
EXPECT_TRUE(presenter->GetTargetVisibility());
// Flush the mojo message from Chrome to Ash reporting the visibility change.
EXPECT_TRUE(controller->GetTargetVisibility());
EXPECT_EQ(1u, app_list_container->children().size());
EXPECT_TRUE(app_list_button->is_showing_app_list());
// Click the button again to dismiss the app list; it will animate to close.
generator.ClickLeftButton();
// Flush the mojo message from Ash to Chrome to hide the app list.
controller->FlushForTesting();
EXPECT_FALSE(presenter->GetTargetVisibility());
// Flush the mojo message from Chrome to Ash reporting the visibility change.
EXPECT_FALSE(controller->GetTargetVisibility());
EXPECT_EQ(1u, app_list_container->children().size());
EXPECT_FALSE(app_list_button->is_showing_app_list());
}
} // namespace ash