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
5fced281
Commit
5fced281
authored
Aug 15, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add some ListBox tests for anchor index.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ed809071
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
111 additions
and
0 deletions
+111
-0
listbox.c
dlls/user32/tests/listbox.c
+111
-0
No files found.
dlls/user32/tests/listbox.c
View file @
5fced281
...
...
@@ -475,19 +475,129 @@ static void test_LB_SETCURSEL(void)
SendMessageA
(
hLB
,
LB_SETITEMHEIGHT
,
0
,
32
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_SETCURSEL
,
2
,
0
);
ok
(
ret
==
2
,
"LB_SETCURSEL returned %d instead of 2
\n
"
,
ret
);
ret
=
GetScrollPos
(
hLB
,
SB_VERT
);
ok
(
ret
==
0
,
"expected vscroll 0, got %d
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_SETCURSEL
,
3
,
0
);
ok
(
ret
==
3
,
"LB_SETCURSEL returned %d instead of 3
\n
"
,
ret
);
ret
=
GetScrollPos
(
hLB
,
SB_VERT
);
ok
(
ret
==
1
,
"expected vscroll 1, got %d
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
hLB
);
hLB
=
create_listbox
(
0
,
0
);
ok
(
hLB
!=
NULL
,
"Failed to create ListBox window.
\n
"
);
ret
=
SendMessageA
(
hLB
,
LB_SETCURSEL
,
1
,
0
);
ok
(
ret
==
1
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
hLB
);
/* LBS_EXTENDEDSEL */
hLB
=
create_listbox
(
LBS_EXTENDEDSEL
,
0
);
ok
(
hLB
!=
NULL
,
"Failed to create ListBox window.
\n
"
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_SETCURSEL
,
2
,
0
);
ok
(
ret
==
-
1
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
hLB
);
/* LBS_MULTIPLESEL */
hLB
=
create_listbox
(
LBS_MULTIPLESEL
,
0
);
ok
(
hLB
!=
NULL
,
"Failed to create ListBox window.
\n
"
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_SETCURSEL
,
2
,
0
);
ok
(
ret
==
-
1
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
hLB
);
}
static
void
test_LB_SETSEL
(
void
)
{
HWND
list
;
int
ret
;
/* LBS_EXTENDEDSEL */
list
=
create_listbox
(
LBS_EXTENDEDSEL
,
0
);
ok
(
list
!=
NULL
,
"Failed to create ListBox window.
\n
"
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
TRUE
,
0
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
0
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
TRUE
,
1
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
FALSE
,
1
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
list
);
/* LBS_MULTIPLESEL */
list
=
create_listbox
(
LBS_MULTIPLESEL
,
0
);
ok
(
list
!=
NULL
,
"Failed to create ListBox window.
\n
"
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
ok
(
ret
==
-
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
TRUE
,
0
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
0
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
TRUE
,
1
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_SETSEL
,
FALSE
,
1
);
ok
(
ret
==
0
,
"Unexpected return value %d.
\n
"
,
ret
);
ret
=
SendMessageA
(
list
,
LB_GETANCHORINDEX
,
0
,
0
);
todo_wine
ok
(
ret
==
1
,
"Unexpected anchor index %d.
\n
"
,
ret
);
DestroyWindow
(
list
);
}
static
void
test_listbox_height
(
void
)
{
HWND
hList
;
...
...
@@ -1960,4 +2070,5 @@ START_TEST(listbox)
test_missing_lbuttonup
();
test_extents
();
test_WM_MEASUREITEM
();
test_LB_SETSEL
();
}
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