Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f042ba49
Commit
f042ba49
authored
Apr 12, 2020
by
Brendan Shanks
Committed by
Alexandre Julliard
Apr 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput8/tests: Test injecting keyboard events.
Signed-off-by:
Brendan Shanks
<
bshanks@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a585d8f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
108 additions
and
0 deletions
+108
-0
device.c
dlls/dinput8/tests/device.c
+108
-0
No files found.
dlls/dinput8/tests/device.c
View file @
f042ba49
...
...
@@ -742,6 +742,113 @@ static void test_mouse_keyboard(void)
DestroyWindow
(
hwnd
);
}
static
void
test_keyboard_events
(
void
)
{
HRESULT
hr
;
HWND
hwnd
=
INVALID_HANDLE_VALUE
;
IDirectInput8A
*
di
;
IDirectInputDevice8A
*
di_keyboard
;
DIPROPDWORD
dp
;
DIDEVICEOBJECTDATA
obj_data
[
10
];
DWORD
data_size
;
BYTE
kbdata
[
256
];
hr
=
CoCreateInstance
(
&
CLSID_DirectInput8
,
0
,
CLSCTX_INPROC_SERVER
,
&
IID_IDirectInput8A
,
(
LPVOID
*
)
&
di
);
if
(
hr
==
DIERR_OLDDIRECTINPUTVERSION
||
hr
==
DIERR_BETADIRECTINPUTVERSION
||
hr
==
REGDB_E_CLASSNOTREG
)
{
win_skip
(
"test_keyboard_events requires dinput8
\n
"
);
return
;
}
ok
(
SUCCEEDED
(
hr
),
"DirectInput8Create failed: %08x
\n
"
,
hr
);
hr
=
IDirectInput8_Initialize
(
di
,
GetModuleHandleA
(
NULL
),
DIRECTINPUT_VERSION
);
if
(
hr
==
DIERR_OLDDIRECTINPUTVERSION
||
hr
==
DIERR_BETADIRECTINPUTVERSION
)
{
win_skip
(
"test_keyboard_events requires dinput8
\n
"
);
IDirectInput8_Release
(
di
);
return
;
}
ok
(
SUCCEEDED
(
hr
),
"IDirectInput8_Initialize failed: %08x
\n
"
,
hr
);
hwnd
=
CreateWindowExA
(
WS_EX_TOPMOST
,
"static"
,
"dinput"
,
WS_POPUP
|
WS_VISIBLE
,
0
,
0
,
100
,
100
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
hwnd
!=
NULL
,
"CreateWindowExA failed
\n
"
);
hr
=
IDirectInput8_CreateDevice
(
di
,
&
GUID_SysKeyboard
,
&
di_keyboard
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInput8_CreateDevice failed: %08x
\n
"
,
hr
);
hr
=
IDirectInputDevice8_SetCooperativeLevel
(
di_keyboard
,
hwnd
,
DISCL_BACKGROUND
|
DISCL_NONEXCLUSIVE
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInput8_SetCooperativeLevel failed: %08x
\n
"
,
hr
);
hr
=
IDirectInputDevice8_SetDataFormat
(
di_keyboard
,
&
c_dfDIKeyboard
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInputDevice8_SetDataFormat failed: %08x
\n
"
,
hr
);
dp
.
diph
.
dwSize
=
sizeof
(
DIPROPDWORD
);
dp
.
diph
.
dwHeaderSize
=
sizeof
(
DIPROPHEADER
);
dp
.
diph
.
dwObj
=
0
;
dp
.
diph
.
dwHow
=
DIPH_DEVICE
;
dp
.
dwData
=
ARRAY_SIZE
(
obj_data
);
IDirectInputDevice8_SetProperty
(
di_keyboard
,
DIPROP_BUFFERSIZE
,
&
(
dp
.
diph
));
hr
=
IDirectInputDevice8_Acquire
(
di_keyboard
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInputDevice8_Acquire failed: %08x
\n
"
,
hr
);
/* Test injecting keyboard events with both VK and scancode given. */
keybd_event
(
VK_SPACE
,
DIK_SPACE
,
0
,
0
);
flush_events
();
IDirectInputDevice8_Poll
(
di_keyboard
);
data_size
=
ARRAY_SIZE
(
obj_data
);
hr
=
IDirectInputDevice8_GetDeviceData
(
di_keyboard
,
sizeof
(
DIDEVICEOBJECTDATA
),
obj_data
,
&
data_size
,
0
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get data hr=%08x
\n
"
,
hr
);
todo_wine
ok
(
data_size
==
1
,
"Expected 1 element, received %d
\n
"
,
data_size
);
hr
=
IDirectInputDevice8_GetDeviceState
(
di_keyboard
,
sizeof
(
kbdata
),
kbdata
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInputDevice8_GetDeviceState failed: %08x
\n
"
,
hr
);
todo_wine
ok
(
kbdata
[
DIK_SPACE
],
"Expected DIK_SPACE key state down
\n
"
);
keybd_event
(
VK_SPACE
,
DIK_SPACE
,
KEYEVENTF_KEYUP
,
0
);
flush_events
();
IDirectInputDevice8_Poll
(
di_keyboard
);
data_size
=
ARRAY_SIZE
(
obj_data
);
hr
=
IDirectInputDevice8_GetDeviceData
(
di_keyboard
,
sizeof
(
DIDEVICEOBJECTDATA
),
obj_data
,
&
data_size
,
0
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get data hr=%08x
\n
"
,
hr
);
todo_wine
ok
(
data_size
==
1
,
"Expected 1 element, received %d
\n
"
,
data_size
);
/* Test injecting keyboard events with scancode=0.
* Windows DInput ignores the VK, sets scancode 0 to be pressed, and GetDeviceData returns no elements. */
keybd_event
(
VK_SPACE
,
0
,
0
,
0
);
flush_events
();
IDirectInputDevice8_Poll
(
di_keyboard
);
data_size
=
ARRAY_SIZE
(
obj_data
);
hr
=
IDirectInputDevice8_GetDeviceData
(
di_keyboard
,
sizeof
(
DIDEVICEOBJECTDATA
),
obj_data
,
&
data_size
,
0
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get data hr=%08x
\n
"
,
hr
);
todo_wine
ok
(
data_size
==
0
,
"Expected 0 elements, received %d
\n
"
,
data_size
);
hr
=
IDirectInputDevice8_GetDeviceState
(
di_keyboard
,
sizeof
(
kbdata
),
kbdata
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInputDevice8_GetDeviceState failed: %08x
\n
"
,
hr
);
todo_wine
ok
(
kbdata
[
0
],
"Expected key 0 state down
\n
"
);
keybd_event
(
VK_SPACE
,
0
,
KEYEVENTF_KEYUP
,
0
);
flush_events
();
IDirectInputDevice8_Poll
(
di_keyboard
);
data_size
=
ARRAY_SIZE
(
obj_data
);
hr
=
IDirectInputDevice8_GetDeviceData
(
di_keyboard
,
sizeof
(
DIDEVICEOBJECTDATA
),
obj_data
,
&
data_size
,
0
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get data hr=%08x
\n
"
,
hr
);
todo_wine
ok
(
data_size
==
0
,
"Expected 0 elements, received %d
\n
"
,
data_size
);
hr
=
IDirectInputDevice8_Unacquire
(
di_keyboard
);
ok
(
SUCCEEDED
(
hr
),
"IDirectInputDevice8_Unacquire failed: %08x
\n
"
,
hr
);
IDirectInputDevice8_Release
(
di_keyboard
);
IDirectInput8_Release
(
di
);
DestroyWindow
(
hwnd
);
}
START_TEST
(
device
)
{
CoInitialize
(
NULL
);
...
...
@@ -749,6 +856,7 @@ START_TEST(device)
test_action_mapping
();
test_save_settings
();
test_mouse_keyboard
();
test_keyboard_events
();
CoUninitialize
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment