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

Unified Diff: ash/wm/overview/window_selector_unittest.cc

Issue 331643004: Update the window labels if they change in overview mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Sky's comments Created 6 years, 6 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/overview/window_selector_unittest.cc
diff --git a/ash/wm/overview/window_selector_unittest.cc b/ash/wm/overview/window_selector_unittest.cc
index d552d7856e1b8de6b6d7edfb911fdca12819c0f2..b5eef53bdcda5e362880442a0ff9d9c4bd0fcd0c 100644
--- a/ash/wm/overview/window_selector_unittest.cc
+++ b/ash/wm/overview/window_selector_unittest.cc
@@ -206,8 +206,8 @@ class WindowSelectorTest : public test::AshTestBase {
return window->close_button_.get();
}
- views::Widget* GetLabelWidget(ash::WindowSelectorItem* window) {
- return window->window_label_.get();
+ views::Label* GetLabelView(ash::WindowSelectorItem* window) {
+ return window->window_label_view_;
}
test::ShelfViewTestAPI* shelf_view_test() {
@@ -734,24 +734,31 @@ TEST_F(WindowSelectorTest, DISABLED_DragDropInProgress) {
TEST_F(WindowSelectorTest, CreateLabelUnderWindow) {
scoped_ptr<aura::Window> window(CreateWindow(gfx::Rect(0, 0, 100, 100)));
base::string16 window_title = base::UTF8ToUTF16("My window");
- window->set_title(window_title);
+ window->SetTitle(window_title);
ToggleOverview();
WindowSelectorItem* window_item = GetWindowItemsForRoot(0).back();
- views::Widget* widget = GetLabelWidget(window_item);
- // Has the label widget been created?
- ASSERT_TRUE(widget);
- views::Label* label = static_cast<views::Label*>(widget->GetContentsView());
+ views::Label* label = GetLabelView(window_item);
+ // Has the label view been created?
+ ASSERT_TRUE(label);
+
// Verify the label matches the window title.
EXPECT_EQ(label->text(), window_title);
+
+ // Update the window title and check that the label is updated, too.
+ base::string16 updated_title = base::UTF8ToUTF16("Updated title");
+ window->SetTitle(updated_title);
+ EXPECT_EQ(label->text(), updated_title);
+
// Labels are located based on target_bounds, not the actual window item
// bounds.
gfx::Rect target_bounds(window_item->target_bounds());
gfx::Rect expected_label_bounds(target_bounds.x(),
- target_bounds.bottom(),
+ target_bounds.bottom() - label->
+ GetPreferredSize().height(),
target_bounds.width(),
label->GetPreferredSize().height());
- gfx::Rect real_label_bounds = widget->GetNativeWindow()->bounds();
- EXPECT_EQ(widget->GetNativeWindow()->bounds(), real_label_bounds);
+ gfx::Rect real_label_bounds = label->GetWidget()->GetNativeWindow()->bounds();
+ EXPECT_EQ(real_label_bounds, expected_label_bounds);
Nina 2014/06/25 19:54:40 This was a NO-OP before... I realized and changed
}
// Tests that a label is created for the active panel in a group of panels in
@@ -761,17 +768,28 @@ TEST_F(WindowSelectorTest, CreateLabelUnderPanel) {
scoped_ptr<aura::Window> panel2(CreatePanelWindow(gfx::Rect(0, 0, 100, 100)));
base::string16 panel1_title = base::UTF8ToUTF16("My panel");
base::string16 panel2_title = base::UTF8ToUTF16("Another panel");
- panel1->set_title(panel1_title);
- panel2->set_title(panel2_title);
+ base::string16 updated_panel1_title = base::UTF8ToUTF16("WebDriver Torso");
+ base::string16 updated_panel2_title = base::UTF8ToUTF16("Da panel");
+ panel1->SetTitle(panel1_title);
+ panel2->SetTitle(panel2_title);
wm::ActivateWindow(panel1.get());
ToggleOverview();
WindowSelectorItem* window_item = GetWindowItemsForRoot(0).back();
- views::Widget* widget = GetLabelWidget(window_item);
- // Has the label widget been created?
- ASSERT_TRUE(widget);
- views::Label* label = static_cast<views::Label*>(widget->GetContentsView());
+ views::Label* label = GetLabelView(window_item);
+ // Has the label view been created?
+ ASSERT_TRUE(label);
+
// Verify the label matches the active window title.
EXPECT_EQ(label->text(), panel1_title);
+ // Verify that updating the title also updates the label.
+ panel1->SetTitle(updated_panel1_title);
+ EXPECT_EQ(label->text(), updated_panel1_title);
+ // After destroying the first panel, the title should match the second panel.
+ panel1.reset();
+ EXPECT_EQ(label->text(), panel2_title);
+ // Also test updating the title on the second panel.
+ panel2->SetTitle(updated_panel2_title);
+ EXPECT_EQ(label->text(), updated_panel2_title);
}
// Tests that overview updates the window positions if the display orientation
@@ -948,8 +966,8 @@ TEST_F(WindowSelectorTest, CloseButtonOnPanels) {
aura::Window* window2 = widget2->GetNativeWindow();
base::string16 panel1_title = base::UTF8ToUTF16("Panel 1");
base::string16 panel2_title = base::UTF8ToUTF16("Panel 2");
- window1->set_title(panel1_title);
- window2->set_title(panel2_title);
+ window1->SetTitle(panel1_title);
+ window2->SetTitle(panel2_title);
wm::ActivateWindow(window1);
ToggleOverview();
@@ -967,8 +985,8 @@ TEST_F(WindowSelectorTest, CloseButtonOnPanels) {
EXPECT_TRUE(window_item->Contains(window2));
EXPECT_TRUE(GetCloseButton(window_item)->IsVisible());
- views::Widget* widget = GetLabelWidget(window_item);
- views::Label* label = static_cast<views::Label*>(widget->GetContentsView());
+
+ views::Label* label = GetLabelView(window_item);
EXPECT_EQ(label->text(), panel2_title);
gfx::RectF bounds2 = GetTransformedBoundsInRootWindow(window2);

Powered by Google App Engine
This is Rietveld 408576698