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
da5151fd
Commit
da5151fd
authored
Jun 23, 2015
by
Huw Davies
Committed by
Alexandre Julliard
Jun 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Don't leave behind open explorer windows.
parent
8ae20154
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
progman_dde.c
dlls/shell32/tests/progman_dde.c
+16
-7
No files found.
dlls/shell32/tests/progman_dde.c
View file @
da5151fd
...
...
@@ -363,7 +363,7 @@ static void DdeExecuteCommand(DWORD instance, HCONV hConv, const char *strCmd, H
* window creation happened were not encouraging (not including
* SetWindowsHookEx).
*/
static
void
CheckWindowCreated
(
const
char
*
winName
,
BOOL
closeWindow
,
int
testParams
)
static
HWND
CheckWindowCreated
(
const
char
*
winName
,
BOOL
closeWindow
,
int
testParams
)
{
HWND
window
=
NULL
;
int
i
;
...
...
@@ -381,7 +381,9 @@ static void CheckWindowCreated(const char *winName, BOOL closeWindow, int testPa
if
(
window
!=
NULL
&&
closeWindow
)
{
SendMessageA
(
window
,
WM_SYSCOMMAND
,
SC_CLOSE
,
0
);
window
=
NULL
;
}
return
window
;
}
/* Check for Existence (or non-existence) of a file or group
...
...
@@ -468,11 +470,12 @@ static void CreateGroupTest(DWORD instance, HCONV hConv, const char *command, UI
* if expected_result is DMLERR_NO_ERROR, test
* 1. window is open
*/
static
void
ShowGroupTest
(
DWORD
instance
,
HCONV
hConv
,
const
char
*
command
,
UINT
expected_result
,
static
HWND
ShowGroupTest
(
DWORD
instance
,
HCONV
hConv
,
const
char
*
command
,
UINT
expected_result
,
const
char
*
groupName
,
const
char
*
windowTitle
,
BOOL
closeAfterShowing
,
int
testParams
)
{
HDDEDATA
hData
;
UINT
error
;
HWND
hwnd
=
0
;
DdeExecuteCommand
(
instance
,
hConv
,
command
,
&
hData
,
&
error
,
testParams
);
/* todo_wine... Is expected to fail, wine stubbed functions DO fail */
...
...
@@ -494,8 +497,9 @@ static void ShowGroupTest(DWORD instance, HCONV hConv, const char *command, UINT
if
(
error
==
DMLERR_NO_ERROR
)
{
/* Check if Window is Open (polling) */
CheckWindowCreated
(
windowTitle
,
closeAfterShowing
,
testParams
);
hwnd
=
CheckWindowCreated
(
windowTitle
,
closeAfterShowing
,
testParams
);
}
return
hwnd
;
}
/* Delete Group Test.
...
...
@@ -582,12 +586,13 @@ static void DeleteItemTest(DWORD instance, HCONV hConv, const char *command, UIN
* All samples I've seen using Compound were of this form (CreateGroup,
* AddItems) so this covers minimum expected functionality.
*/
static
void
CompoundCommandTest
(
DWORD
instance
,
HCONV
hConv
,
const
char
*
command
,
UINT
expected_result
,
static
HWND
CompoundCommandTest
(
DWORD
instance
,
HCONV
hConv
,
const
char
*
command
,
UINT
expected_result
,
const
char
*
groupName
,
const
char
*
windowTitle
,
const
char
*
fileName1
,
const
char
*
fileName2
,
int
testParams
)
{
HDDEDATA
hData
;
UINT
error
;
HWND
hwnd
=
0
;
DdeExecuteCommand
(
instance
,
hConv
,
command
,
&
hData
,
&
error
,
testParams
);
todo_wine
...
...
@@ -601,10 +606,11 @@ static void CompoundCommandTest(DWORD instance, HCONV hConv, const char *command
{
/* Check that File exists */
CheckFileExistsInProgramGroups
(
groupName
,
TRUE
,
TRUE
,
NULL
,
testParams
);
CheckWindowCreated
(
windowTitle
,
FALSE
,
testParams
);
hwnd
=
CheckWindowCreated
(
windowTitle
,
FALSE
,
testParams
);
CheckFileExistsInProgramGroups
(
fileName1
,
TRUE
,
FALSE
,
groupName
,
testParams
);
CheckFileExistsInProgramGroups
(
fileName2
,
TRUE
,
FALSE
,
groupName
,
testParams
);
}
return
hwnd
;
}
static
void
CreateAddItemText
(
char
*
itemtext
,
const
char
*
cmdline
,
const
char
*
name
)
...
...
@@ -626,6 +632,7 @@ static int DdeTestProgman(DWORD instance, HCONV hConv)
char
f1g1
[
MAX_PATH
],
f2g1
[
MAX_PATH
],
f3g1
[
MAX_PATH
],
f1g3
[
MAX_PATH
],
f2g3
[
MAX_PATH
];
char
itemtext
[
MAX_PATH
+
20
];
char
comptext
[
2
*
(
MAX_PATH
+
20
)
+
21
];
HWND
hwnd
;
testnum
=
1
;
/* Invalid Command */
...
...
@@ -658,10 +665,11 @@ static int DdeTestProgman(DWORD instance, HCONV hConv)
ShowGroupTest
(
instance
,
hConv
,
"[ShowGroup(Group1)]"
,
DMLERR_NOTPROCESSED
,
"Group1"
,
Group1Title
,
TRUE
,
DDE_TEST_SHOWGROUP
|
testnum
++
);
DeleteItemTest
(
instance
,
hConv
,
"[DeleteItem(f3g1Name)]"
,
DMLERR_NO_ERROR
,
"f3g1Name.lnk"
,
"Group1"
,
DDE_TEST_DELETEITEM
|
testnum
++
);
ShowGroupTest
(
instance
,
hConv
,
"[ShowGroup(Startup,0)]"
,
DMLERR_NO_ERROR
,
"Startup"
,
StartupTitle
,
TRUE
,
DDE_TEST_SHOWGROUP
|
testnum
++
);
ShowGroupTest
(
instance
,
hConv
,
"[ShowGroup(Group1,0)]"
,
DMLERR_NO_ERROR
,
"Group1"
,
Group1Title
,
FALSE
,
DDE_TEST_SHOWGROUP
|
testnum
++
);
hwnd
=
ShowGroupTest
(
instance
,
hConv
,
"[ShowGroup(Group1,0)]"
,
DMLERR_NO_ERROR
,
"Group1"
,
Group1Title
,
FALSE
,
DDE_TEST_SHOWGROUP
|
testnum
++
);
/* DeleteGroup Test - Note that Window is Open for this test */
DeleteGroupTest
(
instance
,
hConv
,
"[DeleteGroup(Group1)]"
,
DMLERR_NO_ERROR
,
"Group1"
,
DDE_TEST_DELETEGROUP
|
testnum
++
);
if
(
hwnd
)
SendMessageA
(
hwnd
,
WM_SYSCOMMAND
,
SC_CLOSE
,
0
);
/* Compound Execute String Command */
lstrcpyA
(
comptext
,
"[CreateGroup(Group3)]"
);
...
...
@@ -669,9 +677,10 @@ static int DdeTestProgman(DWORD instance, HCONV hConv)
lstrcatA
(
comptext
,
itemtext
);
CreateAddItemText
(
itemtext
,
f2g3
,
"f2g3Name"
);
lstrcatA
(
comptext
,
itemtext
);
CompoundCommandTest
(
instance
,
hConv
,
comptext
,
DMLERR_NO_ERROR
,
"Group3"
,
Group3Title
,
"f1g3Name.lnk"
,
"f2g3Name.lnk"
,
DDE_TEST_COMPOUND
|
testnum
++
);
hwnd
=
CompoundCommandTest
(
instance
,
hConv
,
comptext
,
DMLERR_NO_ERROR
,
"Group3"
,
Group3Title
,
"f1g3Name.lnk"
,
"f2g3Name.lnk"
,
DDE_TEST_COMPOUND
|
testnum
++
);
DeleteGroupTest
(
instance
,
hConv
,
"[DeleteGroup(Group3)]"
,
DMLERR_NO_ERROR
,
"Group3"
,
DDE_TEST_DELETEGROUP
|
testnum
++
);
if
(
hwnd
)
SendMessageA
(
hwnd
,
WM_SYSCOMMAND
,
SC_CLOSE
,
0
);
/* Full Parameters of Add Item */
/* AddItem(CmdLine[,Name[,IconPath[,IconIndex[,xPos,yPos[,DefDir[,HotKey[,fMinimize[fSeparateSpace]]]]]]]) */
...
...
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