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.
5 #include "ash/accelerators/accelerator_controller.h"
7 #include "ash/shell_delegate.h"
8 #include "ash/shell_window_ids.h"
9 #include "ash/test/ash_test_base.h"
10 #include "base/bind.h"
11 #include "base/event_types.h"
12 #include "base/message_loop.h"
13 #include "ui/aura/client/dispatcher_client.h"
14 #include "ui/aura/root_window.h"
15 #include "ui/aura/test/test_windows.h"
16 #include "ui/aura/window.h"
17 #include "ui/base/accelerators/accelerator.h"
18 #include "ui/base/events/event_constants.h"
19 #include "ui/base/events/event_utils.h"
23 #include "ui/base/x/x11_util.h"
31 class MockDispatcher
: public MessageLoop::Dispatcher
{
33 MockDispatcher() : num_key_events_dispatched_(0) {
36 int num_key_events_dispatched() { return num_key_events_dispatched_
; }
38 #if defined(OS_WIN) || defined(USE_X11)
39 virtual bool Dispatch(const base::NativeEvent
& event
) OVERRIDE
{
40 if (ui::EventTypeFromNative(event
) == ui::ET_KEY_RELEASED
)
41 num_key_events_dispatched_
++;
42 return !ui::IsNoopEvent(event
);
44 #endif // defined(OS_WIN) || defined(USE_X11)
47 int num_key_events_dispatched_
;
50 class TestTarget
: public ui::AcceleratorTarget
{
52 TestTarget() : accelerator_pressed_count_(0) {
54 virtual ~TestTarget() {
57 int accelerator_pressed_count() const {
58 return accelerator_pressed_count_
;
61 // Overridden from ui::AcceleratorTarget:
62 virtual bool AcceleratorPressed(const ui::Accelerator
& accelerator
) OVERRIDE
{
63 accelerator_pressed_count_
++;
66 virtual bool CanHandleAccelerators() const OVERRIDE
{
71 int accelerator_pressed_count_
;
73 DISALLOW_COPY_AND_ASSIGN(TestTarget
);
76 void DispatchKeyReleaseA() {
77 // Sending both keydown and keyup is necessary here because the accelerator
78 // manager only checks a keyup event following a keydown event. See
79 // ShouldHandle() in ui/base/accelerators/accelerator_manager.cc for details.
81 MSG native_event_down
= { NULL
, WM_KEYDOWN
, ui::VKEY_A
, 0 };
82 ash::Shell::GetPrimaryRootWindow()->PostNativeEvent(native_event_down
);
83 MSG native_event_up
= { NULL
, WM_KEYUP
, ui::VKEY_A
, 0 };
84 ash::Shell::GetPrimaryRootWindow()->PostNativeEvent(native_event_up
);
85 #elif defined(USE_X11)
87 ui::InitXKeyEventForTesting(ui::ET_KEY_PRESSED
,
91 ash::Shell::GetPrimaryRootWindow()->PostNativeEvent(&native_event
);
92 ui::InitXKeyEventForTesting(ui::ET_KEY_RELEASED
,
96 ash::Shell::GetPrimaryRootWindow()->PostNativeEvent(&native_event
);
99 // Send noop event to signal dispatcher to exit.
100 ash::Shell::GetPrimaryRootWindow()->PostNativeEvent(ui::CreateNoopEvent());
105 typedef AshTestBase NestedDispatcherTest
;
107 // Aura window below lock screen in z order.
108 TEST_F(NestedDispatcherTest
, AssociatedWindowBelowLockScreen
) {
109 MockDispatcher inner_dispatcher
;
110 scoped_ptr
<aura::Window
> associated_window(CreateTestWindowInShellWithId(0));
112 Shell::GetInstance()->delegate()->LockScreen();
113 DispatchKeyReleaseA();
114 aura::RootWindow
* root_window
= ash::Shell::GetPrimaryRootWindow();
115 aura::client::GetDispatcherClient(root_window
)->RunWithDispatcher(
117 associated_window
.get(),
118 true /* nestable_tasks_allowed */);
119 EXPECT_EQ(0, inner_dispatcher
.num_key_events_dispatched());
120 Shell::GetInstance()->delegate()->UnlockScreen();
123 // Aura window above lock screen in z order.
124 TEST_F(NestedDispatcherTest
, AssociatedWindowAboveLockScreen
) {
125 MockDispatcher inner_dispatcher
;
127 scoped_ptr
<aura::Window
>mock_lock_container(
128 CreateTestWindowInShellWithId(0));
129 aura::test::CreateTestWindowWithId(0, mock_lock_container
.get());
130 scoped_ptr
<aura::Window
> associated_window(CreateTestWindowInShellWithId(0));
131 EXPECT_TRUE(aura::test::WindowIsAbove(associated_window
.get(),
132 mock_lock_container
.get()));
134 DispatchKeyReleaseA();
135 aura::RootWindow
* root_window
= ash::Shell::GetPrimaryRootWindow();
136 aura::client::GetDispatcherClient(root_window
)->RunWithDispatcher(
138 associated_window
.get(),
139 true /* nestable_tasks_allowed */);
140 EXPECT_EQ(1, inner_dispatcher
.num_key_events_dispatched());
143 // Test that the nested dispatcher handles accelerators.
144 TEST_F(NestedDispatcherTest
, AcceleratorsHandled
) {
145 MockDispatcher inner_dispatcher
;
146 aura::RootWindow
* root_window
= ash::Shell::GetPrimaryRootWindow();
148 ui::Accelerator
accelerator(ui::VKEY_A
, ui::EF_NONE
);
149 accelerator
.set_type(ui::ET_KEY_RELEASED
);
151 Shell::GetInstance()->accelerator_controller()->Register(accelerator
,
154 DispatchKeyReleaseA();
155 aura::client::GetDispatcherClient(root_window
)->RunWithDispatcher(
158 true /* nestable_tasks_allowed */);
159 EXPECT_EQ(0, inner_dispatcher
.num_key_events_dispatched());
160 EXPECT_EQ(1, target
.accelerator_pressed_count());