Author: tfaber
Date: Sun Apr 13 05:41:19 2014
New Revision: 62732

URL: http://svn.reactos.org/svn/reactos?rev=62732&view=rev
Log:
[BROWSEUI]
- Add more tests for SHExplorerParseCmdLine. Patch by Edijs Kolesnikovičs
CORE-7627 #resolve

Modified:
    trunk/rostests/apitests/browseui/SHExplorerParseCmdLine.c

Modified: trunk/rostests/apitests/browseui/SHExplorerParseCmdLine.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/browseui/SHExplorerParseCmdLine.c?rev=62732&r1=62731&r2=62732&view=diff
==============================================================================
--- trunk/rostests/apitests/browseui/SHExplorerParseCmdLine.c   [iso-8859-1] 
(original)
+++ trunk/rostests/apitests/browseui/SHExplorerParseCmdLine.c   [iso-8859-1] 
Sun Apr 13 05:41:19 2014
@@ -115,13 +115,18 @@
         PCWSTR PidlPath;
     } Tests[] =
     {
-        { L"",            -1, CSIDL_MYDOCUMENTS, 0x00000009 },
-        { L"/e",        TRUE, PIDL_IS_UNTOUCHED, 0x00000008 },
-        { L"/n",        TRUE, PIDL_IS_UNTOUCHED, 0x00004001 },
-        { L"/x",        TRUE,      PIDL_IS_NULL, 0x02000000, L"/x" },
-        { L"-e",        TRUE,      PIDL_IS_NULL, 0x02000000, L"-e" },
-        { L"C:\\",      TRUE,      PIDL_IS_PATH, 0x00000200, NULL, L"C:\\" },
-        { L"/e,C:\\",   TRUE,      PIDL_IS_PATH, 0x00000208, NULL, L"C:\\" },
+        { L"",                                                    -1, 
CSIDL_MYDOCUMENTS, 0x00000009 },
+        { L"/e",                                                TRUE, 
PIDL_IS_UNTOUCHED, 0x00000008 },
+        { L"/n",                                                TRUE, 
PIDL_IS_UNTOUCHED, 0x00004001 },
+        { L"/x",                                                TRUE, 
PIDL_IS_NULL,      0x02000000, L"/x" },
+        { L"-e",                                                TRUE, 
PIDL_IS_NULL,      0x02000000, L"-e" },
+        { L"C:\\",                                              TRUE, 
PIDL_IS_PATH,      0x00000200, NULL, L"C:\\" },
+        { L"/e,C:\\",                                           TRUE, 
PIDL_IS_PATH,      0x00000208, NULL, L"C:\\" },
+        { L"/select,C:\\",                                      TRUE, 
PIDL_IS_PATH,      0x00000240, NULL, L"C:\\" },
+        { L"/e,::{20d04fe0-3aea-1069-a2d8-08002b30309d}",       TRUE, 
PIDL_IS_PATH,      0x00000208, NULL, 
L"::{20d04fe0-3aea-1069-a2d8-08002b30309d}" },
+        { L"::{645ff040-5081-101b-9f08-00aa002f954e}",          TRUE, 
PIDL_IS_PATH,      0x00000200, NULL, 
L"::{645ff040-5081-101b-9f08-00aa002f954e}" },
+        { L"/select,::{450d8fba-ad25-11d0-98a8-0800361b1103}",  TRUE, 
PIDL_IS_PATH,      0x00000240, NULL, 
L"::{450d8fba-ad25-11d0-98a8-0800361b1103}" },
+        { L"=",                                                 TRUE, 
PIDL_IS_PATH,      0x00000200, NULL, 
L"::{20d04fe0-3aea-1069-a2d8-08002b30309d}" },
         /* TODO: needs a lot more testcases */
     };
     const int TestCount = sizeof(Tests) / sizeof(Tests[0]);


Reply via email to