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
7e65578b
Commit
7e65578b
authored
Sep 22, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Sep 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Don't test function directly when reporting GetLastError().
parent
d0009573
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
http.c
dlls/wininet/tests/http.c
+7
-6
No files found.
dlls/wininet/tests/http.c
View file @
7e65578b
...
@@ -1468,6 +1468,7 @@ static void HttpHeaders_test(void)
...
@@ -1468,6 +1468,7 @@ static void HttpHeaders_test(void)
DWORD
len
=
256
;
DWORD
len
=
256
;
DWORD
oldlen
;
DWORD
oldlen
;
DWORD
index
=
0
;
DWORD
index
=
0
;
BOOL
ret
;
hSession
=
InternetOpen
(
"Wine Regression Test"
,
hSession
=
InternetOpen
(
"Wine Regression Test"
,
INTERNET_OPEN_TYPE_PRECONFIG
,
NULL
,
NULL
,
0
);
INTERNET_OPEN_TYPE_PRECONFIG
,
NULL
,
NULL
,
0
);
...
@@ -1759,19 +1760,19 @@ static void HttpHeaders_test(void)
...
@@ -1759,19 +1760,19 @@ static void HttpHeaders_test(void)
ok
(
index
==
1
,
"Index was not incremented
\n
"
);
ok
(
index
==
1
,
"Index was not incremented
\n
"
);
ok
(
strcmp
(
buffer
,
"value3"
)
==
0
,
"incorrect string was returned(%s)
\n
"
,
buffer
);
ok
(
strcmp
(
buffer
,
"value3"
)
==
0
,
"incorrect string was returned(%s)
\n
"
,
buffer
);
ok
(
HttpAddRequestHeaders
(
hRequest
,
"Authorization: Basic
\r\n
"
,
-
1
,
HTTP_ADDREQ_FLAG_ADD
),
ret
=
HttpAddRequestHeaders
(
hRequest
,
"Authorization: Basic
\r\n
"
,
-
1
,
HTTP_ADDREQ_FLAG_ADD
);
"unable to add header %u
\n
"
,
GetLastError
());
ok
(
ret
,
"unable to add header %u
\n
"
,
GetLastError
());
index
=
0
;
index
=
0
;
buffer
[
0
]
=
0
;
buffer
[
0
]
=
0
;
len
=
sizeof
(
buffer
);
len
=
sizeof
(
buffer
);
ok
(
HttpQueryInfo
(
hRequest
,
HTTP_QUERY_AUTHORIZATION
|
HTTP_QUERY_FLAG_REQUEST_HEADERS
,
buffer
,
&
len
,
&
index
),
ret
=
HttpQueryInfo
(
hRequest
,
HTTP_QUERY_AUTHORIZATION
|
HTTP_QUERY_FLAG_REQUEST_HEADERS
,
buffer
,
&
len
,
&
index
);
"unable to query header %u
\n
"
,
GetLastError
());
ok
(
ret
,
"unable to query header %u
\n
"
,
GetLastError
());
ok
(
index
==
1
,
"index was not incremented
\n
"
);
ok
(
index
==
1
,
"index was not incremented
\n
"
);
ok
(
!
strcmp
(
buffer
,
"Basic"
),
"incorrect string was returned (%s)
\n
"
,
buffer
);
ok
(
!
strcmp
(
buffer
,
"Basic"
),
"incorrect string was returned (%s)
\n
"
,
buffer
);
ok
(
HttpAddRequestHeaders
(
hRequest
,
"Authorization:
\r\n
"
,
-
1
,
HTTP_ADDREQ_FLAG_REPLACE
),
ret
=
HttpAddRequestHeaders
(
hRequest
,
"Authorization:
\r\n
"
,
-
1
,
HTTP_ADDREQ_FLAG_REPLACE
);
"unable to remove header %u
\n
"
,
GetLastError
());
ok
(
ret
,
"unable to remove header %u
\n
"
,
GetLastError
());
index
=
0
;
index
=
0
;
len
=
sizeof
(
buffer
);
len
=
sizeof
(
buffer
);
...
...
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