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
e5a476c6
Commit
e5a476c6
authored
Jul 20, 2010
by
Dylan Smith
Committed by
Alexandre Julliard
Jul 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Test and fix Find/ReplaceText parameter checking code.
parent
51ba036f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
148 additions
and
8 deletions
+148
-8
finddlg.c
dlls/comdlg32/finddlg.c
+2
-8
Makefile.in
dlls/comdlg32/tests/Makefile.in
+1
-0
finddlg.c
dlls/comdlg32/tests/finddlg.c
+145
-0
No files found.
dlls/comdlg32/finddlg.c
View file @
e5a476c6
...
...
@@ -304,7 +304,7 @@ static BOOL COMDLG32_FR_CheckPartial(
)
{
if
(
!
pfr
)
{
COMDLG32_SetCommDlgExtendedError
(
CDERR_
GENERALCODES
);
COMDLG32_SetCommDlgExtendedError
(
CDERR_
INITIALIZATION
);
return
FALSE
;
}
...
...
@@ -344,18 +344,12 @@ static BOOL COMDLG32_FR_CheckPartial(
return
FALSE
;
}
if
((
pfr
->
Flags
&
(
FR_ENABLETEMPLATE
|
FR_ENABLETEMPLATEHANDLE
)
)
&&
!
pfr
->
hInstance
)
if
((
pfr
->
Flags
&
FR_ENABLETEMPLATEHANDLE
)
&&
!
pfr
->
hInstance
)
{
COMDLG32_SetCommDlgExtendedError
(
CDERR_NOHINSTANCE
);
return
FALSE
;
}
if
((
pfr
->
Flags
&
FR_ENABLETEMPLATE
)
&&
!
pfr
->
lpTemplateName
)
{
COMDLG32_SetCommDlgExtendedError
(
CDERR_NOTEMPLATE
);
return
FALSE
;
}
return
TRUE
;
}
...
...
dlls/comdlg32/tests/Makefile.in
View file @
e5a476c6
...
...
@@ -7,6 +7,7 @@ IMPORTS = comdlg32 winspool user32 gdi32 kernel32
C_SRCS
=
\
filedlg.c
\
finddlg.c
\
fontdlg.c
\
printdlg.c
...
...
dlls/comdlg32/tests/finddlg.c
0 → 100644
View file @
e5a476c6
/*
* Unit test suite for comdlg32 API functions: find/replace dialogs
*
* Copyright 2010 by Dylan Smith
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include "windows.h"
#include "commdlg.h"
#include "wine/test.h"
static
UINT
ID_FINDMSGSTRING
;
static
LRESULT
handle_findmsg
(
FINDREPLACEA
*
fr
)
{
return
0
;
}
static
LRESULT
CALLBACK
OwnerWndProc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
if
(
msg
==
ID_FINDMSGSTRING
)
{
return
handle_findmsg
((
FINDREPLACEA
*
)
lParam
);
}
return
DefWindowProc
(
hwnd
,
msg
,
wParam
,
lParam
);
}
static
void
test_param_check
(
void
)
{
char
findbuffer
[
64
];
char
replacebuffer
[
64
];
FINDREPLACEA
fr
,
*
pFr
;
WNDCLASSA
wc
;
ZeroMemory
(
&
wc
,
sizeof
(
wc
));
wc
.
lpfnWndProc
=
OwnerWndProc
;
wc
.
lpszClassName
=
"test_param_check"
;
RegisterClassA
(
&
wc
);
#define CHECK_FIND_OR_REPLACE(FUNC, FAIL, ERR_CODE) \
do { \
HWND hwnd = FUNC(pFr); \
BOOL is_ok = !!hwnd == !FAIL; \
ok(is_ok, "%s should%s fail\n", #FUNC, FAIL ? "" : "n't"); \
if (FAIL && is_ok) { \
DWORD ext_err = CommDlgExtendedError(); \
ok(ext_err == ERR_CODE, "expected err %x got %x\n", \
ERR_CODE, ext_err); \
} else { \
DestroyWindow(hwnd); \
} \
} while (0)
#define CHECK_FIND_FAIL(ERR_CODE) \
CHECK_FIND_OR_REPLACE(FindTextA, TRUE, ERR_CODE)
#define CHECK_FIND_SUCCEED() \
CHECK_FIND_OR_REPLACE(FindTextA, FALSE, 0)
#define CHECK_REPLACE_FAIL(ERR_CODE) \
CHECK_FIND_OR_REPLACE(ReplaceTextA, TRUE, ERR_CODE)
#define CHECK_REPLACE_SUCCEED() \
CHECK_FIND_OR_REPLACE(ReplaceTextA, FALSE, 0)
#define CHECK_FINDREPLACE_FAIL(ERR_CODE) \
do { \
CHECK_FIND_FAIL(ERR_CODE); \
CHECK_REPLACE_FAIL(ERR_CODE); \
} while (0)
pFr
=
NULL
;
CHECK_FINDREPLACE_FAIL
(
CDERR_INITIALIZATION
);
pFr
=
&
fr
;
ZeroMemory
(
&
fr
,
sizeof
(
fr
));
/* invalid lStructSize (0) */
CHECK_FINDREPLACE_FAIL
(
CDERR_STRUCTSIZE
);
fr
.
lStructSize
=
sizeof
(
fr
);
/* invalid hwndOwner (NULL) */
CHECK_FINDREPLACE_FAIL
(
CDERR_DIALOGFAILURE
);
fr
.
hwndOwner
=
CreateWindowA
(
wc
.
lpszClassName
,
NULL
,
WS_VISIBLE
,
0
,
0
,
200
,
100
,
NULL
,
NULL
,
GetModuleHandleA
(
NULL
),
NULL
);
/* invalid wFindWhatLen (0) */
CHECK_FINDREPLACE_FAIL
(
FRERR_BUFFERLENGTHZERO
);
fr
.
wFindWhatLen
=
sizeof
(
findbuffer
);
/* invalid lpstrFindWhat (NULL) */
CHECK_FINDREPLACE_FAIL
(
FRERR_BUFFERLENGTHZERO
);
fr
.
lpstrFindWhat
=
findbuffer
;
/* invalid lpstrReplaceWith (NULL) for ReplaceText */
CHECK_FIND_SUCCEED
();
CHECK_REPLACE_FAIL
(
FRERR_BUFFERLENGTHZERO
);
fr
.
lpstrReplaceWith
=
replacebuffer
;
/* wReplaceWithLen may be 0, even for ReplaceText */
CHECK_FIND_SUCCEED
();
CHECK_REPLACE_SUCCEED
();
fr
.
wReplaceWithLen
=
sizeof
(
replacebuffer
);
/* invalid lpfnHook (NULL) when Flags has FR_ENABLEHOOK */
fr
.
Flags
=
FR_ENABLEHOOK
;
CHECK_FINDREPLACE_FAIL
(
CDERR_NOHOOK
);
/* invalid hInstance (NULL)
* when Flags has FR_ENABLETEMPLATE or FR_ENABLETEMPLATEHANDLE */
fr
.
Flags
=
FR_ENABLETEMPLATE
;
CHECK_FINDREPLACE_FAIL
(
CDERR_FINDRESFAILURE
);
fr
.
Flags
=
FR_ENABLETEMPLATEHANDLE
;
CHECK_FINDREPLACE_FAIL
(
CDERR_NOHINSTANCE
);
fr
.
hInstance
=
GetModuleHandle
(
NULL
);
/* invalid lpTemplateName (NULL) when Flags has FR_ENABLETEMPLATE */
fr
.
Flags
=
FR_ENABLETEMPLATE
;
CHECK_FINDREPLACE_FAIL
(
CDERR_FINDRESFAILURE
);
fr
.
Flags
=
0
;
CHECK_FIND_SUCCEED
();
CHECK_REPLACE_SUCCEED
();
DestroyWindow
(
fr
.
hwndOwner
);
}
START_TEST
(
finddlg
)
{
ID_FINDMSGSTRING
=
RegisterWindowMessageA
(
FINDMSGSTRINGA
);
test_param_check
();
}
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