1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 #include "ash/shell_window_ids.h"
7 #include "ash/test/ash_test_base.h"
8 #include "ash/test/shell_test_api.h"
9 #include "ash/test/test_activation_delegate.h"
10 #include "ash/wm/window_util.h"
11 #include "ui/aura/client/cursor_client_observer.h"
12 #include "ui/aura/client/focus_client.h"
13 #include "ui/aura/env.h"
14 #include "ui/aura/test/aura_test_base.h"
15 #include "ui/aura/test/test_window_delegate.h"
16 #include "ui/aura/test/test_windows.h"
17 #include "ui/base/cursor/cursor.h"
18 #include "ui/base/hit_test.h"
19 #include "ui/events/event.h"
20 #include "ui/events/event_processor.h"
21 #include "ui/events/event_utils.h"
22 #include "ui/events/test/event_generator.h"
23 #include "ui/events/test/test_event_handler.h"
24 #include "ui/gfx/screen.h"
25 #include "ui/wm/core/compound_event_filter.h"
26 #include "ui/wm/core/input_method_event_filter.h"
27 #include "ui/wm/public/activation_client.h"
28 #include "ui/wm/public/activation_delegate.h"
32 class TestingCursorClientObserver
: public aura::client::CursorClientObserver
{
34 TestingCursorClientObserver()
35 : cursor_visibility_(false),
36 did_visibility_change_(false) {}
37 void reset() { cursor_visibility_
= did_visibility_change_
= false; }
38 bool is_cursor_visible() const { return cursor_visibility_
; }
39 bool did_visibility_change() const { return did_visibility_change_
; }
41 // Overridden from aura::client::CursorClientObserver:
42 virtual void OnCursorVisibilityChanged(bool is_visible
) OVERRIDE
{
43 cursor_visibility_
= is_visible
;
44 did_visibility_change_
= true;
48 bool cursor_visibility_
;
49 bool did_visibility_change_
;
51 DISALLOW_COPY_AND_ASSIGN(TestingCursorClientObserver
);
54 base::TimeDelta
getTime() {
55 return ui::EventTimeForNow();
58 // A slightly changed TestEventHandler which can be configured to return a
59 // specified value for key/mouse event handling.
60 class CustomEventHandler
: public ui::test::TestEventHandler
{
63 : key_result_(ui::ER_UNHANDLED
),
64 mouse_result_(ui::ER_UNHANDLED
) {
67 virtual ~CustomEventHandler() {}
69 void set_key_event_handling_result(ui::EventResult result
) {
73 void set_mouse_event_handling_result(ui::EventResult result
) {
74 mouse_result_
= result
;
77 // Overridden from ui::EventHandler:
78 virtual void OnKeyEvent(ui::KeyEvent
* event
) OVERRIDE
{
79 ui::test::TestEventHandler::OnKeyEvent(event
);
80 if (key_result_
& ui::ER_HANDLED
)
82 if (key_result_
& ui::ER_CONSUMED
)
83 event
->StopPropagation();
86 virtual void OnMouseEvent(ui::MouseEvent
* event
) OVERRIDE
{
87 ui::test::TestEventHandler::OnMouseEvent(event
);
88 if (mouse_result_
& ui::ER_HANDLED
)
90 if (mouse_result_
& ui::ER_CONSUMED
)
91 event
->StopPropagation();
95 ui::EventResult key_result_
;
96 ui::EventResult mouse_result_
;
98 DISALLOW_COPY_AND_ASSIGN(CustomEventHandler
);
105 typedef test::AshTestBase WindowManagerTest
;
107 class NonFocusableDelegate
: public aura::test::TestWindowDelegate
{
109 NonFocusableDelegate() {}
112 virtual bool CanFocus() OVERRIDE
{
116 DISALLOW_COPY_AND_ASSIGN(NonFocusableDelegate
);
119 class HitTestWindowDelegate
: public aura::test::TestWindowDelegate
{
121 HitTestWindowDelegate()
122 : hittest_code_(HTNOWHERE
) {
124 virtual ~HitTestWindowDelegate() {}
125 void set_hittest_code(int hittest_code
) { hittest_code_
= hittest_code
; }
128 // Overridden from TestWindowDelegate:
129 virtual int GetNonClientComponent(const gfx::Point
& point
) const OVERRIDE
{
130 return hittest_code_
;
135 DISALLOW_COPY_AND_ASSIGN(HitTestWindowDelegate
);
138 TEST_F(WindowManagerTest
, Focus
) {
139 // The IME event filter interferes with the basic key event propagation we
140 // attempt to do here, so we remove it.
141 test::ShellTestApi
shell_test(Shell::GetInstance());
142 Shell::GetInstance()->RemovePreTargetHandler(
143 shell_test
.input_method_event_filter());
145 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
146 root_window
->SetBounds(gfx::Rect(0, 0, 510, 510));
148 // Supplied ids are negative so as not to collide with shell ids.
149 // TODO(beng): maybe introduce a MAKE_SHELL_ID() macro that generates a safe
150 // id beyond shell id max?
151 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShell(
152 SK_ColorWHITE
, -1, gfx::Rect(10, 10, 500, 500)));
153 scoped_ptr
<aura::Window
> w11(aura::test::CreateTestWindow(
154 SK_ColorGREEN
, -11, gfx::Rect(5, 5, 100, 100), w1
.get()));
155 scoped_ptr
<aura::Window
> w111(aura::test::CreateTestWindow(
156 SK_ColorCYAN
, -111, gfx::Rect(5, 5, 75, 75), w11
.get()));
157 scoped_ptr
<aura::Window
> w1111(aura::test::CreateTestWindow(
158 SK_ColorRED
, -1111, gfx::Rect(5, 5, 50, 50), w111
.get()));
159 scoped_ptr
<aura::Window
> w12(aura::test::CreateTestWindow(
160 SK_ColorMAGENTA
, -12, gfx::Rect(10, 420, 25, 25), w1
.get()));
161 aura::test::ColorTestWindowDelegate
* w121delegate
=
162 new aura::test::ColorTestWindowDelegate(SK_ColorYELLOW
);
163 scoped_ptr
<aura::Window
> w121(aura::test::CreateTestWindowWithDelegate(
164 w121delegate
, -121, gfx::Rect(5, 5, 5, 5), w12
.get()));
165 aura::test::ColorTestWindowDelegate
* w122delegate
=
166 new aura::test::ColorTestWindowDelegate(SK_ColorRED
);
167 scoped_ptr
<aura::Window
> w122(aura::test::CreateTestWindowWithDelegate(
168 w122delegate
, -122, gfx::Rect(10, 5, 5, 5), w12
.get()));
169 aura::test::ColorTestWindowDelegate
* w123delegate
=
170 new aura::test::ColorTestWindowDelegate(SK_ColorRED
);
171 scoped_ptr
<aura::Window
> w123(aura::test::CreateTestWindowWithDelegate(
172 w123delegate
, -123, gfx::Rect(15, 5, 5, 5), w12
.get()));
173 scoped_ptr
<aura::Window
> w13(aura::test::CreateTestWindow(
174 SK_ColorGRAY
, -13, gfx::Rect(5, 470, 50, 50), w1
.get()));
176 // Click on a sub-window (w121) to focus it.
177 ui::test::EventGenerator
generator(Shell::GetPrimaryRootWindow(), w121
.get());
178 generator
.ClickLeftButton();
180 aura::client::FocusClient
* focus_client
=
181 aura::client::GetFocusClient(w121
.get());
182 EXPECT_EQ(w121
.get(), focus_client
->GetFocusedWindow());
184 ui::EventProcessor
* dispatcher
= root_window
->GetHost()->event_processor();
186 // The key press should be sent to the focused sub-window.
187 ui::KeyEvent
keyev(ui::ET_KEY_PRESSED
, ui::VKEY_E
, ui::EF_NONE
);
188 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&keyev
);
189 ASSERT_FALSE(details
.dispatcher_destroyed
);
190 EXPECT_EQ(ui::VKEY_E
, w121delegate
->last_key_code());
192 // Touch on a sub-window (w122) to focus it.
193 gfx::Point click_point
= w122
->bounds().CenterPoint();
194 aura::Window::ConvertPointToTarget(w122
->parent(), root_window
, &click_point
);
195 ui::TouchEvent
touchev(ui::ET_TOUCH_PRESSED
, click_point
, 0, getTime());
196 details
= dispatcher
->OnEventFromSource(&touchev
);
197 ASSERT_FALSE(details
.dispatcher_destroyed
);
198 focus_client
= aura::client::GetFocusClient(w122
.get());
199 EXPECT_EQ(w122
.get(), focus_client
->GetFocusedWindow());
201 // The key press should be sent to the focused sub-window.
202 details
= dispatcher
->OnEventFromSource(&keyev
);
203 ASSERT_FALSE(details
.dispatcher_destroyed
);
204 EXPECT_EQ(ui::VKEY_E
, w122delegate
->last_key_code());
206 // Hiding the focused window will set the focus to its parent if
209 EXPECT_EQ(aura::client::GetFocusClient(w12
.get()),
210 aura::client::GetFocusClient(w122
.get()));
212 aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
214 // Sets the focus back to w122.
217 EXPECT_EQ(w122
.get(),
218 aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
220 // Removing the focused window from parent should set the focus to
221 // its parent if it's focusable.
222 w12
->RemoveChild(w122
.get());
223 EXPECT_EQ(NULL
, aura::client::GetFocusClient(w122
.get()));
225 aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
227 // Set the focus to w123, but make the w1 not activatable.
228 test::TestActivationDelegate
activation_delegate(false);
230 EXPECT_EQ(w123
.get(),
231 aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
232 aura::client::SetActivationDelegate(w1
.get(), &activation_delegate
);
234 // Hiding the focused window will set the focus to NULL because
235 // parent window is not focusable.
237 EXPECT_EQ(aura::client::GetFocusClient(w12
.get()),
238 aura::client::GetFocusClient(w123
.get()));
239 EXPECT_EQ(NULL
, aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
240 details
= dispatcher
->OnEventFromSource(&keyev
);
241 EXPECT_FALSE(keyev
.handled() || details
.dispatcher_destroyed
);
243 // Set the focus back to w123
244 aura::client::SetActivationDelegate(w1
.get(), NULL
);
247 EXPECT_EQ(w123
.get(),
248 aura::client::GetFocusClient(w12
.get())->GetFocusedWindow());
249 aura::client::SetActivationDelegate(w1
.get(), &activation_delegate
);
251 // Removing the focused window will set the focus to NULL because
252 // parent window is not focusable.
253 w12
->RemoveChild(w123
.get());
254 EXPECT_EQ(NULL
, aura::client::GetFocusClient(w123
.get()));
255 details
= dispatcher
->OnEventFromSource(&keyev
);
256 EXPECT_FALSE(keyev
.handled() || details
.dispatcher_destroyed
);
259 // Various assertion testing for activating windows.
260 TEST_F(WindowManagerTest
, ActivateOnMouse
) {
261 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
263 test::TestActivationDelegate d1
;
264 aura::test::TestWindowDelegate wd
;
265 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShellWithDelegate(
266 &wd
, -1, gfx::Rect(10, 10, 50, 50)));
267 d1
.SetWindow(w1
.get());
268 test::TestActivationDelegate d2
;
269 scoped_ptr
<aura::Window
> w2(CreateTestWindowInShellWithDelegate(
270 &wd
, -2, gfx::Rect(70, 70, 50, 50)));
271 d2
.SetWindow(w2
.get());
273 aura::client::FocusClient
* focus_client
=
274 aura::client::GetFocusClient(w1
.get());
280 wm::ActivateWindow(w1
.get());
281 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
282 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
283 EXPECT_EQ(1, d1
.activated_count());
284 EXPECT_EQ(0, d1
.lost_active_count());
289 ui::test::EventGenerator
generator(Shell::GetPrimaryRootWindow(), w2
.get());
290 generator
.ClickLeftButton();
292 // Window2 should have become active.
293 EXPECT_TRUE(wm::IsActiveWindow(w2
.get()));
294 EXPECT_EQ(w2
.get(), focus_client
->GetFocusedWindow());
295 EXPECT_EQ(0, d1
.activated_count());
296 EXPECT_EQ(1, d1
.lost_active_count());
297 EXPECT_EQ(1, d2
.activated_count());
298 EXPECT_EQ(0, d2
.lost_active_count());
304 // Click back on window1, but set it up so w1 doesn't activate on click.
305 ui::test::EventGenerator
generator(Shell::GetPrimaryRootWindow(), w1
.get());
306 d1
.set_activate(false);
307 generator
.ClickLeftButton();
309 // Window2 should still be active and focused.
310 EXPECT_TRUE(wm::IsActiveWindow(w2
.get()));
311 EXPECT_EQ(w2
.get(), focus_client
->GetFocusedWindow());
312 EXPECT_EQ(0, d1
.activated_count());
313 EXPECT_EQ(0, d1
.lost_active_count());
314 EXPECT_EQ(0, d2
.activated_count());
315 EXPECT_EQ(0, d2
.lost_active_count());
320 // Destroy window2, this should make window1 active.
321 d1
.set_activate(true);
323 EXPECT_EQ(0, d2
.activated_count());
324 EXPECT_EQ(1, d2
.lost_active_count());
325 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
326 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
327 EXPECT_EQ(1, d1
.activated_count());
328 EXPECT_EQ(0, d1
.lost_active_count());
330 // Clicking an active window with a child shouldn't steal the
331 // focus from the child.
333 scoped_ptr
<aura::Window
> w11(CreateTestWindowWithDelegate(
334 &wd
, -11, gfx::Rect(10, 10, 10, 10), w1
.get()));
335 ui::test::EventGenerator
generator(Shell::GetPrimaryRootWindow(),
337 // First set the focus to the child |w11|.
338 generator
.ClickLeftButton();
339 EXPECT_EQ(w11
.get(), focus_client
->GetFocusedWindow());
340 EXPECT_EQ(w1
.get(), wm::GetActiveWindow());
342 // Then click the parent active window. The focus shouldn't move.
343 gfx::Point left_top
= w1
->bounds().origin();
344 aura::Window::ConvertPointToTarget(w1
->parent(), root_window
, &left_top
);
345 left_top
.Offset(1, 1);
346 generator
.MoveMouseTo(left_top
);
347 generator
.ClickLeftButton();
348 EXPECT_EQ(w11
.get(), focus_client
->GetFocusedWindow());
349 EXPECT_EQ(w1
.get(), wm::GetActiveWindow());
352 // Clicking on a non-focusable window inside a background window should still
353 // give focus to the background window.
355 NonFocusableDelegate nfd
;
356 scoped_ptr
<aura::Window
> w11(CreateTestWindowWithDelegate(
357 &nfd
, -1, gfx::Rect(10, 10, 10, 10), w1
.get()));
358 // Move focus to |w2| first.
359 scoped_ptr
<aura::Window
> w2(CreateTestWindowInShellWithDelegate(
360 &wd
, -1, gfx::Rect(70, 70, 50, 50)));
361 ui::test::EventGenerator
generator(Shell::GetPrimaryRootWindow(), w2
.get());
362 generator
.ClickLeftButton();
363 EXPECT_EQ(w2
.get(), focus_client
->GetFocusedWindow());
364 EXPECT_FALSE(w11
->CanFocus());
366 // Click on |w11|. This should focus w1.
367 generator
.MoveMouseToCenterOf(w11
.get());
368 generator
.ClickLeftButton();
369 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
373 TEST_F(WindowManagerTest
, PanelActivation
) {
374 aura::test::TestWindowDelegate wd
;
375 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShellWithDelegate(
376 &wd
, -1, gfx::Rect(10, 10, 50, 50)));
377 aura::test::TestWindowDelegate pd
;
378 scoped_ptr
<aura::Window
> p1(CreateTestWindowInShellWithDelegateAndType(
379 &pd
, ui::wm::WINDOW_TYPE_PANEL
, -1, gfx::Rect(10, 10, 50, 50)));
380 aura::client::FocusClient
* focus_client
=
381 aura::client::GetFocusClient(w1
.get());
384 wm::ActivateWindow(w1
.get());
385 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
388 wm::ActivateWindow(p1
.get());
389 EXPECT_TRUE(wm::IsActiveWindow(p1
.get()));
390 EXPECT_EQ(p1
.get(), focus_client
->GetFocusedWindow());
393 wm::ActivateWindow(w1
.get());
394 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
395 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
397 // Clicking on a non-activatable window should not change the active window.
399 NonFocusableDelegate nfd
;
400 scoped_ptr
<aura::Window
> w3(CreateTestWindowInShellWithDelegate(
401 &nfd
, -1, gfx::Rect(70, 70, 50, 50)));
402 ui::test::EventGenerator
generator3(Shell::GetPrimaryRootWindow(),
404 wm::ActivateWindow(p1
.get());
405 EXPECT_TRUE(wm::IsActiveWindow(p1
.get()));
406 generator3
.ClickLeftButton();
407 EXPECT_TRUE(wm::IsActiveWindow(p1
.get()));
411 // Essentially the same as ActivateOnMouse, but for touch events.
412 TEST_F(WindowManagerTest
, ActivateOnTouch
) {
413 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
415 test::TestActivationDelegate d1
;
416 aura::test::TestWindowDelegate wd
;
417 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShellWithDelegate(
418 &wd
, -1, gfx::Rect(10, 10, 50, 50)));
419 d1
.SetWindow(w1
.get());
420 test::TestActivationDelegate d2
;
421 scoped_ptr
<aura::Window
> w2(CreateTestWindowInShellWithDelegate(
422 &wd
, -2, gfx::Rect(70, 70, 50, 50)));
423 d2
.SetWindow(w2
.get());
425 aura::client::FocusClient
* focus_client
=
426 aura::client::GetFocusClient(w1
.get());
432 wm::ActivateWindow(w1
.get());
433 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
434 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
435 EXPECT_EQ(1, d1
.activated_count());
436 EXPECT_EQ(0, d1
.lost_active_count());
440 gfx::Point press_point
= w2
->bounds().CenterPoint();
441 aura::Window::ConvertPointToTarget(w2
->parent(), root_window
, &press_point
);
442 ui::TouchEvent
touchev1(ui::ET_TOUCH_PRESSED
, press_point
, 0, getTime());
444 ui::EventProcessor
* dispatcher
= root_window
->GetHost()->event_processor();
445 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&touchev1
);
446 ASSERT_FALSE(details
.dispatcher_destroyed
);
448 // Window2 should have become active.
449 EXPECT_TRUE(wm::IsActiveWindow(w2
.get()));
450 EXPECT_EQ(w2
.get(), focus_client
->GetFocusedWindow());
451 EXPECT_EQ(0, d1
.activated_count());
452 EXPECT_EQ(1, d1
.lost_active_count());
453 EXPECT_EQ(1, d2
.activated_count());
454 EXPECT_EQ(0, d2
.lost_active_count());
458 // Touch window1, but set it up so w1 doesn't activate on touch.
459 press_point
= w1
->bounds().CenterPoint();
460 aura::Window::ConvertPointToTarget(w1
->parent(), root_window
, &press_point
);
461 d1
.set_activate(false);
462 ui::TouchEvent
touchev2(ui::ET_TOUCH_PRESSED
, press_point
, 1, getTime());
463 details
= dispatcher
->OnEventFromSource(&touchev2
);
464 ASSERT_FALSE(details
.dispatcher_destroyed
);
466 // Window2 should still be active and focused.
467 EXPECT_TRUE(wm::IsActiveWindow(w2
.get()));
468 EXPECT_EQ(w2
.get(), focus_client
->GetFocusedWindow());
469 EXPECT_EQ(0, d1
.activated_count());
470 EXPECT_EQ(0, d1
.lost_active_count());
471 EXPECT_EQ(0, d2
.activated_count());
472 EXPECT_EQ(0, d2
.lost_active_count());
476 // Destroy window2, this should make window1 active.
477 d1
.set_activate(true);
479 EXPECT_EQ(0, d2
.activated_count());
480 EXPECT_EQ(1, d2
.lost_active_count());
481 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
482 EXPECT_EQ(w1
.get(), focus_client
->GetFocusedWindow());
483 EXPECT_EQ(1, d1
.activated_count());
484 EXPECT_EQ(0, d1
.lost_active_count());
487 TEST_F(WindowManagerTest
, MouseEventCursors
) {
488 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
491 const int kWindowLeft
= 123;
492 const int kWindowTop
= 45;
493 HitTestWindowDelegate window_delegate
;
494 scoped_ptr
<aura::Window
> window(CreateTestWindowInShellWithDelegate(
497 gfx::Rect(kWindowLeft
, kWindowTop
, 640, 480)));
499 // Create two mouse movement events we can switch between.
500 gfx::Point
point1(kWindowLeft
, kWindowTop
);
501 aura::Window::ConvertPointToTarget(window
->parent(), root_window
, &point1
);
503 gfx::Point
point2(kWindowLeft
+ 1, kWindowTop
+ 1);
504 aura::Window::ConvertPointToTarget(window
->parent(), root_window
, &point2
);
506 aura::WindowTreeHost
* host
= root_window
->GetHost();
507 ui::EventProcessor
* dispatcher
= host
->event_processor();
509 // Cursor starts as a pointer (set during Shell::Init()).
510 EXPECT_EQ(ui::kCursorPointer
, host
->last_cursor().native_type());
513 // Resize edges and corners show proper cursors.
514 window_delegate
.set_hittest_code(HTBOTTOM
);
515 ui::MouseEvent
move1(ui::ET_MOUSE_MOVED
, point1
, point1
, 0, 0);
516 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move1
);
517 ASSERT_FALSE(details
.dispatcher_destroyed
);
518 EXPECT_EQ(ui::kCursorSouthResize
, host
->last_cursor().native_type());
522 window_delegate
.set_hittest_code(HTBOTTOMLEFT
);
523 ui::MouseEvent
move2(ui::ET_MOUSE_MOVED
, point2
, point2
, 0, 0);
524 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move2
);
525 ASSERT_FALSE(details
.dispatcher_destroyed
);
526 EXPECT_EQ(ui::kCursorSouthWestResize
, host
->last_cursor().native_type());
530 window_delegate
.set_hittest_code(HTBOTTOMRIGHT
);
531 ui::MouseEvent
move1(ui::ET_MOUSE_MOVED
, point1
, point1
, 0, 0);
532 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move1
);
533 ASSERT_FALSE(details
.dispatcher_destroyed
);
534 EXPECT_EQ(ui::kCursorSouthEastResize
, host
->last_cursor().native_type());
538 window_delegate
.set_hittest_code(HTLEFT
);
539 ui::MouseEvent
move2(ui::ET_MOUSE_MOVED
, point2
, point2
, 0, 0);
540 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move2
);
541 ASSERT_FALSE(details
.dispatcher_destroyed
);
542 EXPECT_EQ(ui::kCursorWestResize
, host
->last_cursor().native_type());
546 window_delegate
.set_hittest_code(HTRIGHT
);
547 ui::MouseEvent
move1(ui::ET_MOUSE_MOVED
, point1
, point1
, 0, 0);
548 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move1
);
549 ASSERT_FALSE(details
.dispatcher_destroyed
);
550 EXPECT_EQ(ui::kCursorEastResize
, host
->last_cursor().native_type());
554 window_delegate
.set_hittest_code(HTTOP
);
555 ui::MouseEvent
move2(ui::ET_MOUSE_MOVED
, point2
, point2
, 0, 0);
556 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move2
);
557 ASSERT_FALSE(details
.dispatcher_destroyed
);
558 EXPECT_EQ(ui::kCursorNorthResize
, host
->last_cursor().native_type());
562 window_delegate
.set_hittest_code(HTTOPLEFT
);
563 ui::MouseEvent
move1(ui::ET_MOUSE_MOVED
, point1
, point1
, 0, 0);
564 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move1
);
565 ASSERT_FALSE(details
.dispatcher_destroyed
);
566 EXPECT_EQ(ui::kCursorNorthWestResize
, host
->last_cursor().native_type());
570 window_delegate
.set_hittest_code(HTTOPRIGHT
);
571 ui::MouseEvent
move2(ui::ET_MOUSE_MOVED
, point2
, point2
, 0, 0);
572 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move2
);
573 ASSERT_FALSE(details
.dispatcher_destroyed
);
574 EXPECT_EQ(ui::kCursorNorthEastResize
, host
->last_cursor().native_type());
578 // Client area uses null cursor.
579 window_delegate
.set_hittest_code(HTCLIENT
);
580 ui::MouseEvent
move1(ui::ET_MOUSE_MOVED
, point1
, point1
, 0, 0);
581 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&move1
);
582 ASSERT_FALSE(details
.dispatcher_destroyed
);
583 EXPECT_EQ(ui::kCursorNull
, host
->last_cursor().native_type());
588 #define MAYBE_TransformActivate DISABLED_TransformActivate
590 #define MAYBE_TransformActivate TransformActivate
592 TEST_F(WindowManagerTest
, MAYBE_TransformActivate
) {
593 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
594 gfx::Size size
= root_window
->bounds().size();
595 EXPECT_EQ(gfx::Rect(size
).ToString(),
596 Shell::GetScreen()->GetDisplayNearestPoint(
597 gfx::Point()).bounds().ToString());
599 // Rotate it clock-wise 90 degrees.
600 gfx::Transform transform
;
601 transform
.Translate(size
.width(), 0);
602 transform
.Rotate(90.0f
);
603 root_window
->GetHost()->SetRootTransform(transform
);
605 test::TestActivationDelegate d1
;
606 aura::test::TestWindowDelegate wd
;
607 scoped_ptr
<aura::Window
> w1(
608 CreateTestWindowInShellWithDelegate(&wd
, 1, gfx::Rect(0, 15, 50, 50)));
609 d1
.SetWindow(w1
.get());
612 gfx::Point
miss_point(5, 5);
613 transform
.TransformPoint(&miss_point
);
614 ui::MouseEvent
mouseev1(ui::ET_MOUSE_PRESSED
,
617 ui::EF_LEFT_MOUSE_BUTTON
,
618 ui::EF_LEFT_MOUSE_BUTTON
);
619 ui::EventProcessor
* dispatcher
= root_window
->GetHost()->event_processor();
620 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&mouseev1
);
621 ASSERT_FALSE(details
.dispatcher_destroyed
);
622 EXPECT_EQ(NULL
, aura::client::GetFocusClient(w1
.get())->GetFocusedWindow());
623 ui::MouseEvent
mouseup(ui::ET_MOUSE_RELEASED
,
626 ui::EF_LEFT_MOUSE_BUTTON
,
627 ui::EF_LEFT_MOUSE_BUTTON
);
628 details
= dispatcher
->OnEventFromSource(&mouseup
);
629 ASSERT_FALSE(details
.dispatcher_destroyed
);
631 gfx::Point
hit_point(5, 15);
632 transform
.TransformPoint(&hit_point
);
633 ui::MouseEvent
mouseev2(ui::ET_MOUSE_PRESSED
,
636 ui::EF_LEFT_MOUSE_BUTTON
,
637 ui::EF_LEFT_MOUSE_BUTTON
);
638 details
= dispatcher
->OnEventFromSource(&mouseev2
);
639 ASSERT_FALSE(details
.dispatcher_destroyed
);
640 EXPECT_TRUE(wm::IsActiveWindow(w1
.get()));
642 aura::client::GetFocusClient(w1
.get())->GetFocusedWindow());
645 TEST_F(WindowManagerTest
, AdditionalFilters
) {
646 // The IME event filter interferes with the basic key event propagation we
647 // attempt to do here, so we remove it.
648 test::ShellTestApi
shell_test(Shell::GetInstance());
649 Shell::GetInstance()->RemovePreTargetHandler(
650 shell_test
.input_method_event_filter());
652 aura::Window
* root_window
= Shell::GetPrimaryRootWindow();
654 // Creates a window and make it active
655 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShell(
656 SK_ColorWHITE
, -1, gfx::Rect(0, 0, 100, 100)));
657 wm::ActivateWindow(w1
.get());
659 // Creates two addition filters
660 scoped_ptr
<CustomEventHandler
> f1(new CustomEventHandler
);
661 scoped_ptr
<CustomEventHandler
> f2(new CustomEventHandler
);
663 // Adds them to root window event filter.
664 ::wm::CompoundEventFilter
* env_filter
=
665 Shell::GetInstance()->env_filter();
666 env_filter
->AddHandler(f1
.get());
667 env_filter
->AddHandler(f2
.get());
669 // Dispatches mouse and keyboard events.
670 ui::KeyEvent
key_event(ui::ET_KEY_PRESSED
, ui::VKEY_A
, ui::EF_NONE
);
671 ui::EventProcessor
* dispatcher
= root_window
->GetHost()->event_processor();
672 ui::EventDispatchDetails details
= dispatcher
->OnEventFromSource(&key_event
);
673 ASSERT_FALSE(details
.dispatcher_destroyed
);
674 ui::MouseEvent
mouse_pressed(
675 ui::ET_MOUSE_PRESSED
, gfx::Point(0, 0), gfx::Point(0, 0), 0, 0);
676 details
= dispatcher
->OnEventFromSource(&mouse_pressed
);
677 ASSERT_FALSE(details
.dispatcher_destroyed
);
679 // Both filters should get the events.
680 EXPECT_EQ(1, f1
->num_key_events());
681 EXPECT_EQ(1, f1
->num_mouse_events());
682 EXPECT_EQ(1, f2
->num_key_events());
683 EXPECT_EQ(1, f2
->num_mouse_events());
688 // Makes f1 consume events.
689 f1
->set_key_event_handling_result(ui::ER_CONSUMED
);
690 f1
->set_mouse_event_handling_result(ui::ER_CONSUMED
);
692 // Dispatches events.
693 details
= dispatcher
->OnEventFromSource(&key_event
);
694 ASSERT_FALSE(details
.dispatcher_destroyed
);
695 ui::MouseEvent
mouse_released(
696 ui::ET_MOUSE_RELEASED
, gfx::Point(0, 0), gfx::Point(0, 0), 0, 0);
697 details
= dispatcher
->OnEventFromSource(&mouse_released
);
698 ASSERT_FALSE(details
.dispatcher_destroyed
);
700 // f1 should still get the events but f2 no longer gets them.
701 EXPECT_EQ(1, f1
->num_key_events());
702 EXPECT_EQ(1, f1
->num_mouse_events());
703 EXPECT_EQ(0, f2
->num_key_events());
704 EXPECT_EQ(0, f2
->num_mouse_events());
709 // Remove f1 from additonal filters list.
710 env_filter
->RemoveHandler(f1
.get());
712 // Dispatches events.
713 details
= dispatcher
->OnEventFromSource(&key_event
);
714 ASSERT_FALSE(details
.dispatcher_destroyed
);
715 details
= dispatcher
->OnEventFromSource(&mouse_pressed
);
716 ASSERT_FALSE(details
.dispatcher_destroyed
);
718 // f1 should get no events since it's out and f2 should get them.
719 EXPECT_EQ(0, f1
->num_key_events());
720 EXPECT_EQ(0, f1
->num_mouse_events());
721 EXPECT_EQ(1, f2
->num_key_events());
722 EXPECT_EQ(1, f2
->num_mouse_events());
724 env_filter
->RemoveHandler(f2
.get());
727 #if defined(OS_CHROMEOS) || defined(OS_WIN)
728 // Touch visually hides the cursor on ChromeOS and Windows
729 TEST_F(WindowManagerTest
, UpdateCursorVisibility
) {
730 ui::test::EventGenerator
& generator
= GetEventGenerator();
731 ::wm::CursorManager
* cursor_manager
=
732 ash::Shell::GetInstance()->cursor_manager();
734 generator
.MoveMouseTo(gfx::Point(0, 0));
735 EXPECT_TRUE(cursor_manager
->IsCursorVisible());
736 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
737 generator
.PressTouch();
738 EXPECT_FALSE(cursor_manager
->IsCursorVisible());
739 EXPECT_FALSE(cursor_manager
->IsMouseEventsEnabled());
740 generator
.MoveMouseTo(gfx::Point(0, 0));
741 EXPECT_TRUE(cursor_manager
->IsCursorVisible());
742 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
743 generator
.ReleaseTouch();
744 EXPECT_TRUE(cursor_manager
->IsCursorVisible());
745 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
747 #endif // defined(OS_CHROMEOS) || defined(OS_WIN)
749 #if defined(OS_CHROMEOS)
750 // ChromeOS is the only platform for which the cursor is hidden on keypress
751 // (crbug.com/304296).
752 TEST_F(WindowManagerTest
, UpdateCursorVisibilityOnKeyEvent
) {
753 ui::test::EventGenerator
& generator
= GetEventGenerator();
754 ::wm::CursorManager
* cursor_manager
=
755 ash::Shell::GetInstance()->cursor_manager();
757 // Pressing a key hides the cursor but does not disable mouse events.
758 generator
.PressKey(ui::VKEY_A
, ui::EF_NONE
);
759 EXPECT_FALSE(cursor_manager
->IsCursorVisible());
760 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
761 // Moving mouse shows the cursor.
762 generator
.MoveMouseTo(gfx::Point(0, 0));
763 EXPECT_TRUE(cursor_manager
->IsCursorVisible());
764 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
765 // Releasing a key also hides the cursor but does not disable mouse events.
766 generator
.ReleaseKey(ui::VKEY_A
, ui::EF_NONE
);
767 EXPECT_FALSE(cursor_manager
->IsCursorVisible());
768 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
769 // Moving mouse shows the cursor again.
770 generator
.MoveMouseTo(gfx::Point(0, 0));
771 EXPECT_TRUE(cursor_manager
->IsCursorVisible());
772 EXPECT_TRUE(cursor_manager
->IsMouseEventsEnabled());
775 TEST_F(WindowManagerTest
, TestCursorClientObserver
) {
776 ui::test::EventGenerator
& generator
= GetEventGenerator();
777 ::wm::CursorManager
* cursor_manager
=
778 ash::Shell::GetInstance()->cursor_manager();
780 scoped_ptr
<aura::Window
> w1(CreateTestWindowInShell(
781 SK_ColorWHITE
, -1, gfx::Rect(0, 0, 100, 100)));
782 wm::ActivateWindow(w1
.get());
784 // Add two observers. Both should have OnCursorVisibilityChanged()
785 // invoked when an event changes the visibility of the cursor.
786 TestingCursorClientObserver observer_a
;
787 TestingCursorClientObserver observer_b
;
788 cursor_manager
->AddObserver(&observer_a
);
789 cursor_manager
->AddObserver(&observer_b
);
791 // Initial state before any events have been sent.
794 EXPECT_FALSE(observer_a
.did_visibility_change());
795 EXPECT_FALSE(observer_b
.did_visibility_change());
796 EXPECT_FALSE(observer_a
.is_cursor_visible());
797 EXPECT_FALSE(observer_b
.is_cursor_visible());
799 // Keypress should hide the cursor.
800 generator
.PressKey(ui::VKEY_A
, ui::EF_NONE
);
801 EXPECT_TRUE(observer_a
.did_visibility_change());
802 EXPECT_TRUE(observer_b
.did_visibility_change());
803 EXPECT_FALSE(observer_a
.is_cursor_visible());
804 EXPECT_FALSE(observer_b
.is_cursor_visible());
806 // Mouse move should show the cursor.
809 generator
.MoveMouseTo(50, 50);
810 EXPECT_TRUE(observer_a
.did_visibility_change());
811 EXPECT_TRUE(observer_b
.did_visibility_change());
812 EXPECT_TRUE(observer_a
.is_cursor_visible());
813 EXPECT_TRUE(observer_b
.is_cursor_visible());
815 // Remove observer_b. Its OnCursorVisibilityChanged() should
816 // not be invoked past this point.
817 cursor_manager
->RemoveObserver(&observer_b
);
819 // Gesture tap should hide the cursor.
822 generator
.GestureTapAt(gfx::Point(25, 25));
823 EXPECT_TRUE(observer_a
.did_visibility_change());
824 EXPECT_FALSE(observer_b
.did_visibility_change());
825 EXPECT_FALSE(observer_a
.is_cursor_visible());
827 // Mouse move should show the cursor.
830 generator
.MoveMouseTo(50, 50);
831 EXPECT_TRUE(observer_a
.did_visibility_change());
832 EXPECT_FALSE(observer_b
.did_visibility_change());
833 EXPECT_TRUE(observer_a
.is_cursor_visible());
835 #endif // defined(OS_CHROMEOS)