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
3cd189c0
Commit
3cd189c0
authored
Sep 03, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added more tests.
parent
719ab21d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
15 deletions
+40
-15
url.c
dlls/urlmon/tests/url.c
+40
-15
No files found.
dlls/urlmon/tests/url.c
View file @
3cd189c0
...
@@ -218,6 +218,7 @@ static LPCWSTR urls[] = {
...
@@ -218,6 +218,7 @@ static LPCWSTR urls[] = {
MK_URL
,
MK_URL
,
https_urlW
,
https_urlW
,
ftp_urlW
,
ftp_urlW
,
winetest_urlW
,
winetest_urlW
winetest_urlW
};
};
...
@@ -231,7 +232,8 @@ static enum {
...
@@ -231,7 +232,8 @@ static enum {
MK_TEST
,
MK_TEST
,
HTTPS_TEST
,
HTTPS_TEST
,
FTP_TEST
,
FTP_TEST
,
WINETEST_TEST
WINETEST_TEST
,
WINETEST_SYNC_TEST
}
test_protocol
;
}
test_protocol
;
static
enum
{
static
enum
{
...
@@ -705,6 +707,9 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -705,6 +707,9 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
CHECK_CALLED
(
Obj_OnProgress_SENDINGREQUEST
);
CHECK_CALLED
(
Obj_OnProgress_SENDINGREQUEST
);
else
else
CHECK_CALLED
(
OnProgress_SENDINGREQUEST
);
CHECK_CALLED
(
OnProgress_SENDINGREQUEST
);
case
WINETEST_SYNC_TEST
:
IInternetProtocolSink_AddRef
(
pOIProtSink
);
protocol_sink
=
pOIProtSink
;
default:
default:
break
;
break
;
}
}
...
@@ -848,9 +853,14 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -848,9 +853,14 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
CHECK_CALLED
(
Obj_OnProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
Obj_OnProgress_MIMETYPEAVAILABLE
);
else
else
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
}
else
if
(
test_protocol
==
WINETEST_SYNC_TEST
)
{
SET_EXPECT
(
OnProgress_MIMETYPEAVAILABLE
);
hres
=
IInternetProtocolSink_ReportProgress
(
pOIProtSink
,
BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE
,
wszTextHtml
);
ok
(
hres
==
S_OK
,
"ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE) failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
}
else
{
}
else
{
hres
=
IInternetProtocolSink_ReportProgress
(
pOIProtSink
,
hres
=
IInternetProtocolSink_ReportProgress
(
pOIProtSink
,
BINDSTATUS_MIMETYPEAVAILABLE
,
wszTextHtml
);
BINDSTATUS_MIMETYPEAVAILABLE
,
wszTextHtml
);
ok
(
hres
==
S_OK
,
ok
(
hres
==
S_OK
,
"ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE) failed: %08x
\n
"
,
hres
);
"ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE) failed: %08x
\n
"
,
hres
);
}
}
...
@@ -862,7 +872,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -862,7 +872,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
SET_EXPECT
(
Read
);
SET_EXPECT
(
Read
);
if
(
bind_to_object
)
{
if
(
bind_to_object
)
{
if
(
test_protocol
!=
FILE_TEST
&&
test_protocol
!=
MK_TEST
)
if
(
test_protocol
!=
FILE_TEST
&&
test_protocol
!=
MK_TEST
&&
test_protocol
!=
WINETEST_SYNC_TEST
)
SET_EXPECT
(
Obj_OnProgress_MIMETYPEAVAILABLE
);
SET_EXPECT
(
Obj_OnProgress_MIMETYPEAVAILABLE
);
SET_EXPECT
(
Obj_OnProgress_BEGINDOWNLOADDATA
);
SET_EXPECT
(
Obj_OnProgress_BEGINDOWNLOADDATA
);
if
(
test_protocol
==
FILE_TEST
)
if
(
test_protocol
==
FILE_TEST
)
...
@@ -887,7 +897,8 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -887,7 +897,8 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
SET_EXPECT
(
LockRequest
);
SET_EXPECT
(
LockRequest
);
if
(
!
filedwl_api
)
if
(
!
filedwl_api
)
SET_EXPECT
(
OnDataAvailable
);
SET_EXPECT
(
OnDataAvailable
);
SET_EXPECT
(
OnStopBinding
);
if
(
test_protocol
!=
WINETEST_SYNC_TEST
)
/* Set in Read after ReportResult call */
SET_EXPECT
(
OnStopBinding
);
}
}
hres
=
IInternetProtocolSink_ReportData
(
pOIProtSink
,
bscf
,
13
,
13
);
hres
=
IInternetProtocolSink_ReportData
(
pOIProtSink
,
bscf
,
13
,
13
);
...
@@ -911,7 +922,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -911,7 +922,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
CHECK_CALLED
(
OnObjectAvailable
);
CHECK_CALLED
(
OnObjectAvailable
);
CHECK_CALLED
(
Obj_OnStopBinding
);
CHECK_CALLED
(
Obj_OnStopBinding
);
}
else
{
}
else
{
if
(
test_protocol
!=
FILE_TEST
&&
test_protocol
!=
MK_TEST
)
if
(
test_protocol
!=
FILE_TEST
&&
test_protocol
!=
MK_TEST
&&
test_protocol
!=
WINETEST_SYNC_TEST
)
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
OnProgress_BEGINDOWNLOADDATA
);
CHECK_CALLED
(
OnProgress_BEGINDOWNLOADDATA
);
if
(
test_protocol
==
FILE_TEST
)
if
(
test_protocol
==
FILE_TEST
)
...
@@ -928,17 +939,19 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
...
@@ -928,17 +939,19 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
hres
=
IInternetProtocolSink_ReportProgress
(
pOIProtSink
,
BINDSTATUS_BEGINDOWNLOADDATA
,
NULL
);
hres
=
IInternetProtocolSink_ReportProgress
(
pOIProtSink
,
BINDSTATUS_BEGINDOWNLOADDATA
,
NULL
);
ok
(
hres
==
S_OK
,
"ReportProgress(BINDSTATUS_BEGINDOWNLOADDATA) failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
,
"ReportProgress(BINDSTATUS_BEGINDOWNLOADDATA) failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
Read
);
CHECK_CALLED
(
Read
);
}
else
if
(
!
bind_to_object
&&
test_protocol
==
ABOUT
_TEST
)
{
}
else
if
(
!
bind_to_object
&&
test_protocol
==
FILE
_TEST
)
{
SET_EXPECT
(
Read
);
SET_EXPECT
(
Read
);
hres
=
IInternetProtocolSink_ReportData
(
pOIProtSink
,
bscf
,
13
,
13
);
hres
=
IInternetProtocolSink_ReportData
(
pOIProtSink
,
bscf
,
13
,
13
);
ok
(
hres
==
S_OK
,
"ReportData failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
,
"ReportData failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
Read
);
CHECK_CALLED
(
Read
);
}
}
SET_EXPECT
(
Terminate
);
if
(
test_protocol
!=
WINETEST_SYNC_TEST
)
{
hres
=
IInternetProtocolSink_ReportResult
(
pOIProtSink
,
S_OK
,
0
,
NULL
);
SET_EXPECT
(
Terminate
);
ok
(
hres
==
S_OK
,
"ReportResult failed: %08x
\n
"
,
hres
);
hres
=
IInternetProtocolSink_ReportResult
(
pOIProtSink
,
S_OK
,
0
,
NULL
);
CHECK_CALLED
(
Terminate
);
ok
(
hres
==
S_OK
,
"ReportResult failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
Terminate
);
}
return
S_OK
;
return
S_OK
;
}
}
...
@@ -1119,6 +1132,8 @@ static HRESULT WINAPI Protocol_Resume(IInternetProtocol *iface)
...
@@ -1119,6 +1132,8 @@ static HRESULT WINAPI Protocol_Resume(IInternetProtocol *iface)
static
HRESULT
WINAPI
Protocol_Read
(
IInternetProtocol
*
iface
,
void
*
pv
,
static
HRESULT
WINAPI
Protocol_Read
(
IInternetProtocol
*
iface
,
void
*
pv
,
ULONG
cb
,
ULONG
*
pcbRead
)
ULONG
cb
,
ULONG
*
pcbRead
)
{
{
HRESULT
hres
;
static
const
char
data
[]
=
"<HTML></HTML>"
;
static
const
char
data
[]
=
"<HTML></HTML>"
;
CHECK_EXPECT2
(
Read
);
CHECK_EXPECT2
(
Read
);
...
@@ -1139,8 +1154,6 @@ static HRESULT WINAPI Protocol_Read(IInternetProtocol *iface, void *pv,
...
@@ -1139,8 +1154,6 @@ static HRESULT WINAPI Protocol_Read(IInternetProtocol *iface, void *pv,
}
}
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
)
{
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
)
{
HRESULT
hres
;
static
int
pending
=
TRUE
;
static
int
pending
=
TRUE
;
pending
=
!
pending
;
pending
=
!
pending
;
...
@@ -1184,6 +1197,13 @@ static HRESULT WINAPI Protocol_Read(IInternetProtocol *iface, void *pv,
...
@@ -1184,6 +1197,13 @@ static HRESULT WINAPI Protocol_Read(IInternetProtocol *iface, void *pv,
return
S_FALSE
;
return
S_FALSE
;
}
}
if
(
test_protocol
==
WINETEST_SYNC_TEST
)
{
hres
=
IInternetProtocolSink_ReportResult
(
protocol_sink
,
S_OK
,
0
,
NULL
);
ok
(
hres
==
S_OK
,
"ReportResult failed: %08x
\n
"
,
hres
);
SET_EXPECT
(
OnStopBinding
);
}
ok
(
*
pcbRead
==
0
,
"*pcbRead=%d, expected 0
\n
"
,
*
pcbRead
);
ok
(
*
pcbRead
==
0
,
"*pcbRead=%d, expected 0
\n
"
,
*
pcbRead
);
read
+=
*
pcbRead
=
sizeof
(
data
)
-
1
;
read
+=
*
pcbRead
=
sizeof
(
data
)
-
1
;
memcpy
(
pv
,
data
,
sizeof
(
data
));
memcpy
(
pv
,
data
,
sizeof
(
data
));
...
@@ -2917,7 +2937,8 @@ static void test_BindToStorage(int protocol, DWORD flags, DWORD t)
...
@@ -2917,7 +2937,8 @@ static void test_BindToStorage(int protocol, DWORD flags, DWORD t)
if
(
is_urlmon_protocol
(
test_protocol
))
if
(
is_urlmon_protocol
(
test_protocol
))
SET_EXPECT
(
SetPriority
);
SET_EXPECT
(
SetPriority
);
SET_EXPECT
(
Start
);
SET_EXPECT
(
Start
);
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
)
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
||
test_protocol
==
WINETEST_SYNC_TEST
)
SET_EXPECT
(
Terminate
);
SET_EXPECT
(
Terminate
);
if
(
tymed
!=
TYMED_FILE
||
(
test_protocol
!=
ABOUT_TEST
&&
test_protocol
!=
ITS_TEST
))
if
(
tymed
!=
TYMED_FILE
||
(
test_protocol
!=
ABOUT_TEST
&&
test_protocol
!=
ITS_TEST
))
SET_EXPECT
(
UnlockRequest
);
SET_EXPECT
(
UnlockRequest
);
...
@@ -3057,7 +3078,8 @@ static void test_BindToStorage(int protocol, DWORD flags, DWORD t)
...
@@ -3057,7 +3078,8 @@ static void test_BindToStorage(int protocol, DWORD flags, DWORD t)
if
(
is_urlmon_protocol
(
test_protocol
))
if
(
is_urlmon_protocol
(
test_protocol
))
CHECK_CALLED
(
SetPriority
);
CHECK_CALLED
(
SetPriority
);
CHECK_CALLED
(
Start
);
CHECK_CALLED
(
Start
);
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
)
{
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
HTTPS_TEST
||
test_protocol
==
WINETEST_TEST
||
test_protocol
==
WINETEST_SYNC_TEST
)
{
if
(
tymed
==
TYMED_FILE
)
if
(
tymed
==
TYMED_FILE
)
CLEAR_CALLED
(
Read
);
CLEAR_CALLED
(
Read
);
CHECK_CALLED
(
Terminate
);
CHECK_CALLED
(
Terminate
);
...
@@ -3959,6 +3981,9 @@ START_TEST(url)
...
@@ -3959,6 +3981,9 @@ START_TEST(url)
trace
(
"emulated about test (to object)...
\n
"
);
trace
(
"emulated about test (to object)...
\n
"
);
test_BindToObject
(
ABOUT_TEST
,
BINDTEST_EMULATE
);
test_BindToObject
(
ABOUT_TEST
,
BINDTEST_EMULATE
);
trace
(
"emulalated test reporting result in read...
\n
"
);
test_BindToStorage
(
WINETEST_SYNC_TEST
,
BINDTEST_EMULATE
,
TYMED_ISTREAM
);
trace
(
"file test...
\n
"
);
trace
(
"file test...
\n
"
);
test_BindToStorage
(
FILE_TEST
,
0
,
TYMED_ISTREAM
);
test_BindToStorage
(
FILE_TEST
,
0
,
TYMED_ISTREAM
);
...
...
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