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
6ff5c3b5
Commit
6ff5c3b5
authored
Feb 02, 2024
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 13, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Add basic tests for CoInternetParseUrl(PARSE_CANONICALIZE).
parent
8f278f89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
misc.c
dlls/urlmon/tests/misc.c
+11
-0
No files found.
dlls/urlmon/tests/misc.c
View file @
6ff5c3b5
...
...
@@ -401,6 +401,17 @@ static void test_CoInternetParseUrl(void)
if
(
parse_tests
[
i
].
rootdocument
)
ok
(
!
lstrcmpW
(
parse_tests
[
i
].
rootdocument
,
buf
),
"[%d] wrong rootdocument, received %s
\n
"
,
i
,
wine_dbgstr_w
(
buf
));
}
size
=
0xdeadbeef
;
hres
=
pCoInternetParseUrl
(
L"http://a/b/../c"
,
PARSE_CANONICALIZE
,
0
,
buf
,
3
,
&
size
,
0
);
ok
(
hres
==
E_POINTER
,
"got %#lx
\n
"
,
hres
);
ok
(
size
==
wcslen
(
L"http://a/c"
)
+
1
,
"got %lu
\n
"
,
size
);
size
=
0xdeadbeef
;
hres
=
pCoInternetParseUrl
(
L"http://a/b/../c"
,
PARSE_CANONICALIZE
,
0
,
buf
,
sizeof
(
buf
),
&
size
,
0
);
ok
(
hres
==
S_OK
,
"got %#lx
\n
"
,
hres
);
ok
(
!
wcscmp
(
buf
,
L"http://a/c"
),
"got %s
\n
"
,
debugstr_w
(
buf
));
ok
(
size
==
wcslen
(
buf
),
"got %lu
\n
"
,
size
);
}
static
void
test_CoInternetCompareUrl
(
void
)
...
...
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