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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
// 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 "ash/wm/window_positioner.h"
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/test_shell_delegate.h"
#include "ash/wm/window_resizer.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/host_desktop.h"
#include "chrome/test/base/test_browser_window.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/render_view_test.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/aura/env.h"
#include "ui/aura/root_window.h"
#include "ui/aura/test/test_windows.h"
#include "ui/gfx/screen.h"
namespace ash {
namespace test {
namespace {
// A browser window proxy which is able to associate an aura native window with
// it.
class TestBrowserWindowAura : public TestBrowserWindow {
public:
explicit TestBrowserWindowAura(aura::Window *native_window);
virtual ~TestBrowserWindowAura();
virtual gfx::NativeWindow GetNativeWindow() OVERRIDE {
return native_window_;
}
private:
gfx::NativeWindow native_window_;
DISALLOW_COPY_AND_ASSIGN(TestBrowserWindowAura);
};
TestBrowserWindowAura::TestBrowserWindowAura(aura::Window *native_window)
: native_window_(native_window) {
}
TestBrowserWindowAura::~TestBrowserWindowAura() {}
} // namespace
// A test class for preparing window positioner tests - it creates a testing
// base by adding a window and a popup which can be independently
// positioned to see where the positioner will place the window.
class WindowPositionerTest : public AshTestBase {
public:
WindowPositionerTest();
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
protected:
aura::Window* window() { return window_.get(); }
aura::Window* popup() { return popup_.get(); }
Browser* window_browser() { return window_owning_browser_.get(); }
Browser* popup_browser() { return popup_owning_browser_.get(); }
WindowPositioner* window_positioner() { return window_positioner_; }
// The positioner & desktop's used grid alignment size.
const int grid_size_;
private:
WindowPositioner* window_positioner_;
// These two need to be deleted after everything else is gone.
TestingProfile profile_;
// These get created for each session.
scoped_ptr<aura::Window> window_;
scoped_ptr<aura::Window> popup_;
scoped_ptr<BrowserWindow> browser_window_;
scoped_ptr<BrowserWindow> browser_popup_;
scoped_ptr<Browser> window_owning_browser_;
scoped_ptr<Browser> popup_owning_browser_;
DISALLOW_COPY_AND_ASSIGN(WindowPositionerTest);
};
WindowPositionerTest::WindowPositionerTest()
: grid_size_(WindowPositioner::kMinimumWindowOffset),
window_positioner_(NULL) {
}
void WindowPositionerTest::SetUp() {
AshTestBase::SetUp();
// Create some default dummy windows.
window_.reset(CreateTestWindowInShellWithId(0));
window_->SetBounds(gfx::Rect(16, 32, 640, 320));
popup_.reset(CreateTestWindowInShellWithId(1));
popup_->SetBounds(gfx::Rect(16, 32, 128, 256));
// Create a browser for the window.
browser_window_.reset(new TestBrowserWindowAura(window_.get()));
Browser::CreateParams window_params(&profile_,
chrome::HOST_DESKTOP_TYPE_ASH);
window_params.window = browser_window_.get();
window_owning_browser_.reset(new Browser(window_params));
// Creating a browser for the popup.
browser_popup_.reset(new TestBrowserWindowAura(popup_.get()));
Browser::CreateParams popup_params(Browser::TYPE_POPUP, &profile_,
chrome::HOST_DESKTOP_TYPE_ASH);
popup_params.window = browser_popup_.get();
popup_owning_browser_.reset(new Browser(popup_params));
// We hide all windows upon start - each user is required to set it up
// as he needs it.
window()->Hide();
popup()->Hide();
window_positioner_ = new WindowPositioner();
}
void WindowPositionerTest::TearDown() {
// Since the AuraTestBase is needed to create our assets, we have to
// also delete them before we tear it down.
window_owning_browser_.reset(NULL);
popup_owning_browser_.reset(NULL);
browser_window_.reset(NULL);
browser_popup_.reset(NULL);
window_.reset(NULL);
popup_.reset(NULL);
AshTestBase::TearDown();
delete window_positioner_;
window_positioner_ = NULL;
}
int AlignToGridRoundDown(int location, int grid_size) {
if (grid_size <= 1 || location % grid_size == 0)
return location;
return location / grid_size * grid_size;
}
TEST_F(WindowPositionerTest, cascading) {
const gfx::Rect work_area =
Shell::GetScreen()->GetPrimaryDisplay().work_area();
// First see that the window will cascade down when there is no space.
window()->SetBounds(work_area);
window()->Show();
gfx::Rect popup_position(0, 0, 200, 200);
// Check that it gets cascaded.
gfx::Rect cascade_1 = window_positioner()->GetPopupPosition(popup_position);
EXPECT_EQ(gfx::Rect(work_area.x() + grid_size_, work_area.y() + grid_size_,
popup_position.width(), popup_position.height()),
cascade_1);
gfx::Rect cascade_2 = window_positioner()->GetPopupPosition(popup_position);
EXPECT_EQ(gfx::Rect(work_area.x() + 2 * grid_size_,
work_area.y() + 2 * grid_size_,
popup_position.width(), popup_position.height()),
cascade_2);
// Check that if there is even only a pixel missing it will cascade.
window()->SetBounds(gfx::Rect(work_area.x() + popup_position.width() - 1,
work_area.y() + popup_position.height() - 1,
work_area.width() -
2 * (popup_position.width() - 1),
work_area.height() -
2 * (popup_position.height() - 1)));
gfx::Rect cascade_3 = window_positioner()->GetPopupPosition(popup_position);
EXPECT_EQ(gfx::Rect(work_area.x() + 3 * grid_size_,
work_area.y() + 3 * grid_size_,
popup_position.width(), popup_position.height()),
cascade_3);
// Check that we overflow into the next line when we do not fit anymore in Y.
gfx::Rect popup_position_4(0, 0, 200,
work_area.height() -
(cascade_3.y() - work_area.y()));
gfx::Rect cascade_4 =
window_positioner()->GetPopupPosition(popup_position_4);
EXPECT_EQ(gfx::Rect(work_area.x() + 2 * grid_size_,
work_area.y() + grid_size_,
popup_position_4.width(), popup_position_4.height()),
cascade_4);
// Check that we overflow back to the first possible location if we overflow
// to the end.
gfx::Rect popup_position_5(0, 0,
work_area.width() + 1 -
(cascade_4.x() - work_area.x()),
work_area.height() -
(2 * grid_size_ - work_area.y()));
gfx::Rect cascade_5 =
window_positioner()->GetPopupPosition(popup_position_5);
EXPECT_EQ(gfx::Rect(work_area.x() + grid_size_,
work_area.y() + grid_size_,
popup_position_5.width(), popup_position_5.height()),
cascade_5);
}
TEST_F(WindowPositionerTest, filling) {
const gfx::Rect work_area =
Shell::GetScreen()->GetPrimaryDisplay().work_area();
gfx::Rect popup_position(0, 0, 256, 128);
// Leave space on the left and the right and see if we fill top to bottom.
window()->SetBounds(gfx::Rect(work_area.x() + popup_position.width(),
work_area.y(),
work_area.width() - 2 * popup_position.width(),
work_area.height()));
window()->Show();
// Check that we are positioned in the top left corner.
gfx::Rect top_left = window_positioner()->GetPopupPosition(popup_position);
EXPECT_EQ(gfx::Rect(work_area.x(), work_area.y(),
popup_position.width(), popup_position.height()),
top_left);
// Now block the found location.
popup()->SetBounds(top_left);
popup()->Show();
gfx::Rect mid_left = window_positioner()->GetPopupPosition(popup_position);
EXPECT_EQ(gfx::Rect(work_area.x(),
AlignToGridRoundDown(
work_area.y() + top_left.height(), grid_size_),
popup_position.width(), popup_position.height()),
mid_left);
// Block now everything so that we can only put the popup on the bottom
// of the left side.
// Note: We need to keep one "grid spacing free" if the window does not
// fit into the grid (which is true for 200 height).`
popup()->SetBounds(gfx::Rect(work_area.x(), work_area.y(),
popup_position.width(),
work_area.height() - popup_position.height() -
grid_size_ + 1));
gfx::Rect bottom_left = window_positioner()->GetPopupPosition(
popup_position);
EXPECT_EQ(gfx::Rect(work_area.x(),
work_area.bottom() - popup_position.height(),
popup_position.width(), popup_position.height()),
bottom_left);
// Block now enough to force the right side.
popup()->SetBounds(gfx::Rect(work_area.x(), work_area.y(),
popup_position.width(),
work_area.height() - popup_position.height() +
1));
gfx::Rect top_right = window_positioner()->GetPopupPosition(
popup_position);
EXPECT_EQ(gfx::Rect(AlignToGridRoundDown(work_area.right() -
popup_position.width(), grid_size_),
work_area.y(),
popup_position.width(), popup_position.height()),
top_right);
}
TEST_F(WindowPositionerTest, biggerThenBorder) {
const gfx::Rect work_area =
Shell::GetScreen()->GetPrimaryDisplay().work_area();
gfx::Rect pop_position(0, 0, work_area.width(), work_area.height());
// Check that the popup is placed full screen.
gfx::Rect full = window_positioner()->GetPopupPosition(pop_position);
EXPECT_EQ(gfx::Rect(work_area.x(), work_area.y(),
pop_position.width(), pop_position.height()),
full);
}
} // namespace test
} // namespace ash
|