Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d2ce22ba
Commit
d2ce22ba
authored
Jan 31, 2016
by
Pierre Schweitzer
Committed by
Alexandre Julliard
Feb 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr/tests: Add tests for WNetUseConnectionA().
Signed-off-by:
Pierre Schweitzer
<
pierre@reactos.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
70c08179
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
mpr.c
dlls/mpr/tests/mpr.c
+55
-0
No files found.
dlls/mpr/tests/mpr.c
View file @
d2ce22ba
...
...
@@ -164,6 +164,7 @@ static DWORD (WINAPI *pWNetCachePassword)( LPSTR, WORD, LPSTR, WORD, BYTE, WORD
static
DWORD
(
WINAPI
*
pWNetGetCachedPassword
)(
LPSTR
,
WORD
,
LPSTR
,
LPWORD
,
BYTE
);
static
UINT
(
WINAPI
*
pWNetEnumCachedPasswords
)(
LPSTR
,
WORD
,
BYTE
,
ENUMPASSWORDPROC
,
DWORD
);
static
UINT
(
WINAPI
*
pWNetRemoveCachedPassword
)(
LPSTR
,
WORD
,
BYTE
);
static
DWORD
(
WINAPI
*
pWNetUseConnectionA
)(
HWND
,
LPNETRESOURCEA
,
LPCSTR
,
LPCSTR
,
DWORD
,
LPSTR
,
LPDWORD
,
LPDWORD
);
#define MPR_GET_PROC(func) \
p ## func = (void*)GetProcAddress(hmpr, #func)
...
...
@@ -176,6 +177,7 @@ static void InitFunctionPtrs(void)
MPR_GET_PROC
(
WNetGetCachedPassword
);
MPR_GET_PROC
(
WNetEnumCachedPasswords
);
MPR_GET_PROC
(
WNetRemoveCachedPassword
);
MPR_GET_PROC
(
WNetUseConnectionA
);
}
static
const
char
*
m_resource
=
"wine-test-resource"
;
...
...
@@ -257,9 +259,62 @@ static void test_WNetCachePassword(void)
}
}
static
void
test_WNetUseConnection
(
void
)
{
DWORD
ret
;
DWORD
bufSize
;
DWORD
outRes
;
LPNETRESOURCEA
netRes
;
CHAR
outBuf
[
4
];
if
(
pWNetUseConnectionA
)
{
netRes
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
NETRESOURCEA
)
+
sizeof
(
"
\\\\
127.0.0.1
\\
c$"
)
+
sizeof
(
"J:"
));
netRes
->
dwType
=
RESOURCETYPE_DISK
;
netRes
->
dwDisplayType
=
RESOURCEDISPLAYTYPE_SHARE
;
netRes
->
dwUsage
=
RESOURCEUSAGE_CONNECTABLE
;
netRes
->
lpLocalName
=
(
LPSTR
)((
LPBYTE
)
netRes
+
sizeof
(
NETRESOURCEA
));
netRes
->
lpRemoteName
=
(
LPSTR
)((
LPBYTE
)
netRes
+
sizeof
(
NETRESOURCEA
)
+
sizeof
(
"J:"
));
strcpy
(
netRes
->
lpLocalName
,
"J:"
);
strcpy
(
netRes
->
lpRemoteName
,
"
\\\\
127.0.0.1
\\
c$"
);
bufSize
=
0
;
ret
=
pWNetUseConnectionA
(
NULL
,
netRes
,
NULL
,
NULL
,
0
,
NULL
,
&
bufSize
,
&
outRes
);
todo_wine
ok
(
ret
==
WN_SUCCESS
,
"Unexpected return: %u
\n
"
,
ret
);
ok
(
bufSize
==
0
,
"Unexpected buffer size: %u
\n
"
,
bufSize
);
if
(
ret
==
WN_SUCCESS
)
WNetCancelConnectionA
(
"J:"
,
TRUE
);
bufSize
=
0
;
ret
=
pWNetUseConnectionA
(
NULL
,
netRes
,
NULL
,
NULL
,
0
,
outBuf
,
&
bufSize
,
&
outRes
);
todo_wine
ok
(
ret
==
ERROR_INVALID_PARAMETER
,
"Unexpected return: %u
\n
"
,
ret
);
ok
(
bufSize
==
0
,
"Unexpected buffer size: %u
\n
"
,
bufSize
);
if
(
ret
==
WN_SUCCESS
)
WNetCancelConnectionA
(
"J:"
,
TRUE
);
bufSize
=
1
;
todo_wine
{
ret
=
pWNetUseConnectionA
(
NULL
,
netRes
,
NULL
,
NULL
,
0
,
outBuf
,
&
bufSize
,
&
outRes
);
ok
(
ret
==
ERROR_MORE_DATA
,
"Unexpected return: %u
\n
"
,
ret
);
ok
(
bufSize
==
3
,
"Unexpected buffer size: %u
\n
"
,
bufSize
);
if
(
ret
==
WN_SUCCESS
)
WNetCancelConnectionA
(
"J:"
,
TRUE
);
bufSize
=
4
;
ret
=
pWNetUseConnectionA
(
NULL
,
netRes
,
NULL
,
NULL
,
0
,
outBuf
,
&
bufSize
,
&
outRes
);
ok
(
ret
==
WN_SUCCESS
,
"Unexpected return: %u
\n
"
,
ret
);
}
ok
(
bufSize
==
4
,
"Unexpected buffer size: %u
\n
"
,
bufSize
);
if
(
ret
==
WN_SUCCESS
)
WNetCancelConnectionA
(
"J:"
,
TRUE
);
HeapFree
(
GetProcessHeap
(),
0
,
netRes
);
}
else
{
win_skip
(
"WNetUseConnection() is not supported.
\n
"
);
}
}
START_TEST
(
mpr
)
{
test_WNetGetUniversalName
();
test_WNetGetRemoteName
();
test_WNetCachePassword
();
test_WNetUseConnection
();
}
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