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
db66ec0e
Commit
db66ec0e
authored
Mar 14, 2005
by
Jon Griffiths
Committed by
Alexandre Julliard
Mar 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests and small fix for PathMakePretty().
Fix a crash and test failure with early native dlls.
parent
5294ba58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
34 deletions
+77
-34
path.c
dlls/shlwapi/path.c
+31
-24
path.c
dlls/shlwapi/tests/path.c
+46
-10
No files found.
dlls/shlwapi/path.c
View file @
db66ec0e
...
...
@@ -1687,7 +1687,8 @@ BOOL WINAPI PathFileExistsA(LPCSTR lpszPath)
if
(
!
lpszPath
)
return
FALSE
;
iPrevErrMode
=
SetErrorMode
(
1
);
/* Prevent a dialog box if path is on a disk that has been ejected. */
iPrevErrMode
=
SetErrorMode
(
SEM_FAILCRITICALERRORS
);
dwAttr
=
GetFileAttributesA
(
lpszPath
);
SetErrorMode
(
iPrevErrMode
);
return
dwAttr
==
INVALID_FILE_ATTRIBUTES
?
FALSE
:
TRUE
;
...
...
@@ -1708,7 +1709,7 @@ BOOL WINAPI PathFileExistsW(LPCWSTR lpszPath)
if
(
!
lpszPath
)
return
FALSE
;
iPrevErrMode
=
SetErrorMode
(
1
);
iPrevErrMode
=
SetErrorMode
(
SEM_FAILCRITICALERRORS
);
dwAttr
=
GetFileAttributesW
(
lpszPath
);
SetErrorMode
(
iPrevErrMode
);
return
dwAttr
==
INVALID_FILE_ATTRIBUTES
?
FALSE
:
TRUE
;
...
...
@@ -2580,20 +2581,23 @@ BOOL WINAPI PathMakePrettyA(LPSTR lpszPath)
TRACE
(
"(%s)
\n
"
,
debugstr_a
(
lpszPath
));
if
(
!
pszIter
||
!*
pszIter
)
if
(
!
pszIter
)
return
FALSE
;
while
(
*
pszIter
)
{
if
(
islower
(
*
pszIter
)
||
IsDBCSLeadByte
(
*
pszIter
))
return
FALSE
;
/* Not DOS path */
pszIter
++
;
}
pszIter
=
lpszPath
+
1
;
while
(
*
pszIter
)
if
(
*
pszIter
)
{
*
pszIter
=
tolower
(
*
pszIter
);
pszIter
++
;
do
{
if
(
islower
(
*
pszIter
)
||
IsDBCSLeadByte
(
*
pszIter
))
return
FALSE
;
/* Not DOS path */
pszIter
++
;
}
while
(
*
pszIter
);
pszIter
=
lpszPath
+
1
;
while
(
*
pszIter
)
{
*
pszIter
=
tolower
(
*
pszIter
);
pszIter
++
;
}
}
return
TRUE
;
}
...
...
@@ -2609,20 +2613,23 @@ BOOL WINAPI PathMakePrettyW(LPWSTR lpszPath)
TRACE
(
"(%s)
\n
"
,
debugstr_w
(
lpszPath
));
if
(
!
pszIter
||
!*
pszIter
)
if
(
!
pszIter
)
return
FALSE
;
while
(
*
pszIter
)
{
if
(
islowerW
(
*
pszIter
))
return
FALSE
;
/* Not DOS path */
pszIter
++
;
}
pszIter
=
lpszPath
+
1
;
while
(
*
pszIter
)
if
(
*
pszIter
)
{
*
pszIter
=
tolowerW
(
*
pszIter
);
pszIter
++
;
do
{
if
(
islowerW
(
*
pszIter
))
return
FALSE
;
/* Not DOS path */
pszIter
++
;
}
while
(
*
pszIter
);
pszIter
=
lpszPath
+
1
;
while
(
*
pszIter
)
{
*
pszIter
=
tolowerW
(
*
pszIter
);
pszIter
++
;
}
}
return
TRUE
;
}
...
...
dlls/shlwapi/tests/path.c
View file @
db66ec0e
...
...
@@ -186,8 +186,12 @@ struct {
{
"c:
\\
foo
\\
bar"
,
"file:///c:/foo/bar"
,
S_OK
},
{
"c:foo
\\
bar"
,
"file:///c:foo/bar"
,
S_OK
},
{
"c:
\\
foo/b a%r"
,
"file:///c:/foo/b%20a%25r"
,
S_OK
},
#if 0
/* The following test fails on native shlwapi as distributed with Win95/98.
* Wine matches the behaviour of later versions.
*/
{"xx:c:\\foo\\bar", "xx:c:\\foo\\bar", S_FALSE}
#endif
};
struct
{
...
...
@@ -451,7 +455,7 @@ static void test_UrlCombine(void)
static
void
test_UrlCreateFromPath
(
void
)
{
in
t
i
;
size_
t
i
;
char
ret_url
[
INTERNET_MAX_URL_LENGTH
];
DWORD
len
,
ret
;
WCHAR
ret_urlW
[
INTERNET_MAX_URL_LENGTH
];
...
...
@@ -469,7 +473,8 @@ static void test_UrlCreateFromPath(void)
urlW
=
GetWideString
(
TEST_URLFROMPATH
[
i
].
url
);
ret
=
UrlCreateFromPathW
(
pathW
,
ret_urlW
,
&
len
,
0
);
WideCharToMultiByte
(
CP_ACP
,
0
,
ret_urlW
,
-
1
,
ret_url
,
sizeof
(
ret_url
),
0
,
0
);
ok
(
ret
==
TEST_URLFROMPATH
[
i
].
ret
,
"ret %08lx from path L
\"
%s
\"\n
"
,
ret
,
TEST_URLFROMPATH
[
i
].
path
);
ok
(
ret
==
TEST_URLFROMPATH
[
i
].
ret
,
"ret %08lx from path L
\"
%s
\"
, expected %08lx
\n
"
,
ret
,
TEST_URLFROMPATH
[
i
].
path
,
TEST_URLFROMPATH
[
i
].
ret
);
ok
(
!
lstrcmpiW
(
ret_urlW
,
urlW
),
"got %s expected %s from path L
\"
%s
\"\n
"
,
ret_url
,
TEST_URLFROMPATH
[
i
].
url
,
TEST_URLFROMPATH
[
i
].
path
);
ok
(
len
==
strlenW
(
ret_urlW
),
"ret len %ld from path L
\"
%s
\"\n
"
,
len
,
TEST_URLFROMPATH
[
i
].
path
);
FreeWideString
(
urlW
);
...
...
@@ -480,7 +485,7 @@ static void test_UrlCreateFromPath(void)
static
void
test_UrlIs
(
void
)
{
BOOL
ret
;
INT
i
;
size_t
i
;
for
(
i
=
0
;
i
<
sizeof
(
TEST_PATH_IS_URL
)
/
sizeof
(
TEST_PATH_IS_URL
[
0
]);
i
++
)
{
ret
=
UrlIsA
(
TEST_PATH_IS_URL
[
i
].
path
,
URLIS_URL
);
...
...
@@ -496,7 +501,7 @@ static void test_UrlUnescape(void)
WCHAR
ret_urlW
[
INTERNET_MAX_URL_LENGTH
];
WCHAR
*
urlW
,
*
expected_urlW
;
DWORD
dwEscaped
;
unsigned
in
t
i
;
size_
t
i
;
for
(
i
=
0
;
i
<
sizeof
(
TEST_URL_UNESCAPE
)
/
sizeof
(
TEST_URL_UNESCAPE
[
0
]);
i
++
)
{
dwEscaped
=
INTERNET_MAX_URL_LENGTH
;
...
...
@@ -567,7 +572,7 @@ static void test_PathSearchAndQualify(void)
static
void
test_PathCreateFromUrl
(
void
)
{
in
t
i
;
size_
t
i
;
char
ret_path
[
INTERNET_MAX_URL_LENGTH
];
DWORD
len
,
ret
;
WCHAR
ret_pathW
[
INTERNET_MAX_URL_LENGTH
];
...
...
@@ -599,7 +604,7 @@ static void test_PathCreateFromUrl(void)
static
void
test_PathIsUrl
(
void
)
{
in
t
i
;
size_
t
i
;
BOOL
ret
;
for
(
i
=
0
;
i
<
sizeof
(
TEST_PATH_IS_URL
)
/
sizeof
(
TEST_PATH_IS_URL
[
0
]);
i
++
)
{
...
...
@@ -702,6 +707,29 @@ static void test_PathIsValidCharW(void)
}
}
static
void
test_PathMakePretty
(
void
)
{
char
buff
[
MAX_PATH
];
ok
(
PathMakePrettyA
(
NULL
)
==
FALSE
,
"PathMakePretty: NULL path succeeded
\n
"
);
buff
[
0
]
=
'\0'
;
ok
(
PathMakePrettyA
(
buff
)
==
TRUE
,
"PathMakePretty: Empty path failed
\n
"
);
strcpy
(
buff
,
"C:
\\
A LONG FILE NAME WITH
\\
SPACES.TXT"
);
ok
(
PathMakePrettyA
(
buff
)
==
TRUE
,
"PathMakePretty: Long UC name failed
\n
"
);
ok
(
strcmp
(
buff
,
"C:
\\
a long file name with
\\
spaces.txt"
)
==
0
,
"PathMakePretty: Long UC name not changed
\n
"
);
strcpy
(
buff
,
"C:
\\
A LONG FILE NAME WITH
\\
MixedCase.TXT"
);
ok
(
PathMakePrettyA
(
buff
)
==
FALSE
,
"PathMakePretty: Long MC name succeeded
\n
"
);
ok
(
strcmp
(
buff
,
"C:
\\
A LONG FILE NAME WITH
\\
MixedCase.TXT"
)
==
0
,
"PathMakePretty: Failed but modified path
\n
"
);
strcpy
(
buff
,
"TEST"
);
ok
(
PathMakePrettyA
(
buff
)
==
TRUE
,
"PathMakePretty: Short name failed
\n
"
);
ok
(
strcmp
(
buff
,
"Test"
)
==
0
,
"PathMakePretty: 1st char lowercased %s
\n
"
,
buff
);
}
START_TEST
(
path
)
{
hShlwapi
=
LoadLibraryA
(
"shlwapi.dll"
);
...
...
@@ -719,10 +747,18 @@ START_TEST(path)
test_PathSearchAndQualify
();
test_PathCreateFromUrl
();
test_PathIsUrl
();
test_PathMakePretty
();
/* For whatever reason, PathIsValidCharA and PathAppendA share the same
* ordinal number in some native versions. Check this to prevent a crash.
*/
pPathIsValidCharA
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
(
LPSTR
)
455
);
if
(
pPathIsValidCharA
)
test_PathIsValidCharA
();
if
(
pPathIsValidCharA
&&
pPathIsValidCharA
!=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"PathAppendA"
))
{
test_PathIsValidCharA
();
pPathIsValidCharW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
(
LPSTR
)
456
);
if
(
pPathIsValidCharW
)
test_PathIsValidCharW
();
pPathIsValidCharW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
(
LPSTR
)
456
);
if
(
pPathIsValidCharW
)
test_PathIsValidCharW
();
}
}
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