SHELL32/tests: additional cases for IShellFolder_BindToObject

Saulius Krasuckas saulius2 at ar.fi.lt
Sat Jun 25 11:15:42 CDT 2005


ChangeLog:
	Saulius Krasuckas <saulius.krasuckas at ieee.org>
	Additional test cases for IShellFolder_BindToObject.


Index: dlls/shell32/tests/shlfolder.c
===================================================================
RCS file: /home/wine/wine/dlls/shell32/tests/shlfolder.c,v
retrieving revision 1.19
diff -p -u -r1.19 shlfolder.c
--- dlls/shell32/tests/shlfolder.c      24 Jun 2005 11:33:35 -0000      1.19
+++ dlls/shell32/tests/shlfolder.c      25 Jun 2005 16:06:51 -0000
@@ -187,6 +187,9 @@ static void test_BindToObject(void)
     hr = IShellFolder_BindToObject(psfDesktop, pidlEmpty, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
     ok (hr == E_INVALIDARG, "Desktop's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
 
+    hr = IShellFolder_BindToObject(psfDesktop, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
+    ok (hr == E_INVALIDARG, "Desktop's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
+
     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszMyComputer, NULL, &pidlMyComputer, NULL);
     ok (SUCCEEDED(hr), "Desktop's ParseDisplayName failed to parse MyComputer's CLSID! hr = %08lx\n", hr);
     if (FAILED(hr)) {
@@ -203,6 +206,9 @@ static void test_BindToObject(void)
     hr = IShellFolder_BindToObject(psfMyComputer, pidlEmpty, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
     ok (hr == E_INVALIDARG, "MyComputers's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
 
+    hr = IShellFolder_BindToObject(psfMyComputer, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
+    ok (hr == E_INVALIDARG, "MyComputers's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
+
     cChars = GetSystemDirectoryW(wszSystemDir, MAX_PATH);
     ok (cChars > 0 && cChars < MAX_PATH, "GetSystemDirectoryW failed! LastError: %08lx\n", GetLastError());
     if (cChars == 0 || cChars >= MAX_PATH) {
@@ -227,6 +233,10 @@ static void test_BindToObject(void)
     ok (hr == E_INVALIDARG, 
         "FileSystem ShellFolder's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
     
+    hr = IShellFolder_BindToObject(psfSystemDir, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
+    ok (hr == E_INVALIDARG, 
+        "FileSystem ShellFolder's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
+
     IShellFolder_Release(psfSystemDir);
 }
   




More information about the wine-patches mailing list