[SHELL32_APITEST] -Add some tests for SHParseDisplayName for CORE-12882.
[reactos.git] / rostests / apitests / shlwapi / PathIsUNC.c
index a8309ac..3b9d786 100644 (file)
 /* Documentation: https://msdn.microsoft.com/en-us/library/windows/desktop/bb773712(v=vs.85).aspx */
 
 #include <apitest.h>
+#include <shlwapi.h>
 
-static BOOL (WINAPI *pPathIsUNC)(PCWSTR);
-
-#define CALL_ISUNC(exp, str) \
+#define DO_TEST(exp, str) \
 do { \
-    BOOL ret = pPathIsUNC((str)); \
-    ok(ret == (exp), "Expected %S to be %d, was %d\n", (str), (exp), ret); \
+    BOOL ret = PathIsUNCW((str)); \
+    ok(ret == (exp), "Expected %s to be %d, was %d\n", wine_dbgstr_w((str)), (exp), ret); \
 } while (0)
 
 START_TEST(isuncpath)
 {
-    HMODULE hDll = LoadLibraryA("shlwapi.dll");
-
-    pPathIsUNC = (void*)GetProcAddress(hDll, "PathIsUNCW");
-    if (!hDll || !pPathIsUNC)
-    {
-        skip("shlwapi.dll or export PathIsUNCW not found! Tests will be skipped\n");
-        return;
-    }
-
-    CALL_ISUNC(TRUE, L"\\\\path1\\path2");
-    CALL_ISUNC(TRUE, L"\\\\path1");
-    CALL_ISUNC(FALSE, L"reactos\\path4\\path5");
-    CALL_ISUNC(TRUE, L"\\\\");
-    CALL_ISUNC(TRUE, L"\\\\?\\UNC\\path1\\path2");
-    CALL_ISUNC(TRUE, L"\\\\?\\UNC\\path1");
-    CALL_ISUNC(TRUE, L"\\\\?\\UNC\\");
-    CALL_ISUNC(FALSE, L"\\path1");
-    CALL_ISUNC(FALSE, L"path1");
-    CALL_ISUNC(FALSE, L"c:\\path1");
+    DO_TEST(TRUE, L"\\\\path1\\path2");
+    DO_TEST(TRUE, L"\\\\path1");
+    DO_TEST(FALSE, L"reactos\\path4\\path5");
+    DO_TEST(TRUE, L"\\\\");
+    DO_TEST(TRUE, L"\\\\?\\UNC\\path1\\path2");
+    DO_TEST(TRUE, L"\\\\?\\UNC\\path1");
+    DO_TEST(TRUE, L"\\\\?\\UNC\\");
+    DO_TEST(FALSE, L"\\path1");
+    DO_TEST(FALSE, L"path1");
+    DO_TEST(FALSE, L"c:\\path1");
 
     /* MSDN says FALSE but the test shows TRUE on Windows 2003, but returns FALSE on Windows 7 */
-    CALL_ISUNC(TRUE, L"\\\\?\\c:\\path1");
-
-    CALL_ISUNC(TRUE, L"\\\\path1\\");
-    CALL_ISUNC(FALSE, L"//");
-    CALL_ISUNC(FALSE, L"////path1");
-    CALL_ISUNC(FALSE, L"////path1//path2");
-    CALL_ISUNC(FALSE, L"reactos//path3//path4");
-    CALL_ISUNC(TRUE, L"\\\\reactos\\?");
-    CALL_ISUNC(TRUE, L"\\\\reactos\\\\");
-    CALL_ISUNC(FALSE, NULL);
-    CALL_ISUNC(FALSE, L" ");
+    DO_TEST(TRUE, L"\\\\?\\c:\\path1");
+
+    DO_TEST(TRUE, L"\\\\path1\\");
+    DO_TEST(FALSE, L"//");
+    DO_TEST(FALSE, L"////path1");
+    DO_TEST(FALSE, L"////path1//path2");
+    DO_TEST(FALSE, L"reactos//path3//path4");
+    DO_TEST(TRUE, L"\\\\reactos\\?");
+    DO_TEST(TRUE, L"\\\\reactos\\\\");
+    DO_TEST(FALSE, (wchar_t*)NULL);
+    DO_TEST(FALSE, L" ");
 
     /* The test shows TRUE on Windows 2003, but returns FALSE on Windows 7 */
-    CALL_ISUNC(TRUE, L"\\\\?\\");
+    DO_TEST(TRUE, L"\\\\?\\");
 }