Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Unified Diff: ash/wm/panel_layout_manager_unittest.cc

Issue 12093075: Move the panel to the root window where the mouse click occurred. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated comment Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/wm/panel_layout_manager_unittest.cc
diff --git a/ash/wm/panel_layout_manager_unittest.cc b/ash/wm/panel_layout_manager_unittest.cc
index 77735c86221f5b6ae982964bdca360bcd9fd3219..617c7385a170e7497bf9fcd19868c2fb795cc8d7 100644
--- a/ash/wm/panel_layout_manager_unittest.cc
+++ b/ash/wm/panel_layout_manager_unittest.cc
@@ -6,16 +6,22 @@
#include "ash/ash_switches.h"
#include "ash/launcher/launcher.h"
+#include "ash/launcher/launcher_button.h"
+#include "ash/launcher/launcher_model.h"
+#include "ash/launcher/launcher_view.h"
#include "ash/shell.h"
#include "ash/shell_window_ids.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/launcher_view_test_api.h"
+#include "ash/test/shell_test_api.h"
#include "ash/test/test_launcher_delegate.h"
#include "ash/wm/window_util.h"
#include "base/basictypes.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "ui/aura/client/aura_constants.h"
+#include "ui/aura/root_window.h"
+#include "ui/aura/test/event_generator.h"
#include "ui/aura/test/test_windows.h"
#include "ui/aura/window.h"
#include "ui/views/corewm/corewm_switches.h"
@@ -26,14 +32,14 @@ namespace internal {
using aura::test::WindowIsAbove;
-class PanelLayoutManagerTest : public ash::test::AshTestBase {
+class PanelLayoutManagerTest : public test::AshTestBase {
public:
PanelLayoutManagerTest() {}
virtual ~PanelLayoutManagerTest() {}
virtual void SetUp() OVERRIDE {
- ash::test::AshTestBase::SetUp();
- ASSERT_TRUE(ash::test::TestLauncherDelegate::instance());
+ test::AshTestBase::SetUp();
+ ASSERT_TRUE(test::TestLauncherDelegate::instance());
launcher_view_test_.reset(new test::LauncherViewTestAPI(
Launcher::ForPrimaryDisplay()->GetLauncherViewForTest()));
@@ -50,8 +56,8 @@ class PanelLayoutManagerTest : public ash::test::AshTestBase {
aura::client::WINDOW_TYPE_PANEL,
0,
bounds);
- ash::test::TestLauncherDelegate* launcher_delegate =
- ash::test::TestLauncherDelegate::instance();
+ test::TestLauncherDelegate* launcher_delegate =
+ test::TestLauncherDelegate::instance();
launcher_delegate->AddLauncherItem(window);
PanelLayoutManager* manager =
static_cast<PanelLayoutManager*>(GetPanelContainer()->layout_manager());
@@ -62,7 +68,7 @@ class PanelLayoutManagerTest : public ash::test::AshTestBase {
aura::Window* GetPanelContainer() {
return Shell::GetContainer(
Shell::GetPrimaryRootWindow(),
- ash::internal::kShellWindowId_PanelContainer);
+ internal::kShellWindowId_PanelContainer);
}
void GetCalloutWidget(views::Widget** widget) {
@@ -130,6 +136,27 @@ class PanelLayoutManagerTest : public ash::test::AshTestBase {
return launcher_view_test_.get();
}
+ // Clicks the launcher items on |launcher_view| that is
+ /// associated with given |window|.
+ void ClickLauncherItemForWindow(LauncherView* launcher_view,
+ aura::Window* window) {
+ test::LauncherViewTestAPI test_api(launcher_view);
+ test_api.SetAnimationDuration(1);
+
+ LauncherModel* model =
+ test::ShellTestApi(Shell::GetInstance()).launcher_model();
+ test::TestLauncherDelegate* launcher_delegate =
+ test::TestLauncherDelegate::instance();
+ int index = model->ItemIndexByID(launcher_delegate->GetIDByWindow(window));
+ gfx::Rect bounds = test_api.GetButton(index)->GetBoundsInScreen();
+
+ aura::test::EventGenerator& event_generator = GetEventGenerator();
+ event_generator.MoveMouseTo(bounds.CenterPoint());
+ event_generator.ClickLeftButton();
+
+ test_api.RunMessageLoopUntilAnimationsDone();
+ }
+
private:
scoped_ptr<test::LauncherViewTestAPI> launcher_view_test_;
@@ -324,18 +351,71 @@ TEST_F(PanelLayoutManagerTest, MinimizeRestorePanel) {
EXPECT_TRUE(IsCalloutVisible());
}
-TEST_F(PanelLayoutManagerTest, PanelOnMultipleDisplays) {
- UpdateDisplay("300x400,400x400");
+TEST_F(PanelLayoutManagerTest, PanelMoveBetweenMultipleDisplays) {
+ // Keep the displays wide so that launchers have enough
+ // spaces for launcher buttons.
+ UpdateDisplay("500x400,500x400");
Shell::RootWindowList root_windows = Shell::GetAllRootWindows();
scoped_ptr<aura::Window> p1_d1(CreatePanelWindow(gfx::Rect(0, 0, 50, 50)));
scoped_ptr<aura::Window> p2_d1(CreatePanelWindow(gfx::Rect(0, 0, 50, 50)));
- scoped_ptr<aura::Window> p1_d2(CreatePanelWindow(gfx::Rect(400, 0, 50, 50)));
- scoped_ptr<aura::Window> p2_d2(CreatePanelWindow(gfx::Rect(400, 0, 50, 50)));
+ scoped_ptr<aura::Window> p1_d2(CreatePanelWindow(gfx::Rect(500, 0, 50, 50)));
+ scoped_ptr<aura::Window> p2_d2(CreatePanelWindow(gfx::Rect(500, 0, 50, 50)));
+
+ LauncherView* launcher_view_1st =
+ Launcher::ForPrimaryDisplay()->GetLauncherViewForTest();
+ LauncherView* launcher_view_2nd =
+ Launcher::ForWindow(root_windows[1])->GetLauncherViewForTest();
+
EXPECT_EQ(root_windows[0], p1_d1->GetRootWindow());
EXPECT_EQ(root_windows[0], p2_d1->GetRootWindow());
EXPECT_EQ(root_windows[1], p1_d2->GetRootWindow());
EXPECT_EQ(root_windows[1], p2_d2->GetRootWindow());
+
+ EXPECT_EQ(internal::kShellWindowId_PanelContainer, p1_d1->parent()->id());
+ EXPECT_EQ(internal::kShellWindowId_PanelContainer, p2_d1->parent()->id());
+ EXPECT_EQ(internal::kShellWindowId_PanelContainer, p1_d2->parent()->id());
+ EXPECT_EQ(internal::kShellWindowId_PanelContainer, p2_d2->parent()->id());
+
+ // Test a panel on 1st display.
+ // Clicking on the same display has no effect.
+ ClickLauncherItemForWindow(launcher_view_1st, p1_d1.get());
+ EXPECT_EQ(root_windows[0], p1_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[0], p2_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p1_d2->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p1_d2->GetRootWindow());
+ EXPECT_FALSE(root_windows[1]->GetBoundsInScreen().Contains(
+ p1_d1->GetBoundsInScreen()));
+
+ // Test if clicking on another display moves the panel to
+ // that display.
+ ClickLauncherItemForWindow(launcher_view_2nd, p1_d1.get());
+ EXPECT_EQ(root_windows[1], p1_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[0], p2_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p1_d2->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p2_d2->GetRootWindow());
+ EXPECT_TRUE(root_windows[1]->GetBoundsInScreen().Contains(
+ p1_d1->GetBoundsInScreen()));
+
+ // Test a panel on 2nd display.
+ // Clicking on the same display has no effect.
+ ClickLauncherItemForWindow(launcher_view_2nd, p1_d2.get());
+ EXPECT_EQ(root_windows[1], p1_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[0], p2_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p1_d2->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p2_d2->GetRootWindow());
+ EXPECT_TRUE(root_windows[1]->GetBoundsInScreen().Contains(
+ p1_d2->GetBoundsInScreen()));
+
+ // Test if clicking on another display moves the panel to
+ // that display.
+ ClickLauncherItemForWindow(launcher_view_1st, p1_d2.get());
+ EXPECT_EQ(root_windows[1], p1_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[0], p2_d1->GetRootWindow());
+ EXPECT_EQ(root_windows[0], p1_d2->GetRootWindow());
+ EXPECT_EQ(root_windows[1], p2_d2->GetRootWindow());
+ EXPECT_TRUE(root_windows[0]->GetBoundsInScreen().Contains(
+ p1_d2->GetBoundsInScreen()));
}
} // namespace internal
« no previous file with comments | « ash/test/test_launcher_delegate.cc ('k') | chrome/browser/ui/ash/launcher/app_shortcut_launcher_item_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698