[PATCH v3 3/4] kernelbase: Add tests for CompareObjectHandles.

Jinoh Kang jinoh.kang.kr at gmail.com
Sun Nov 28 04:41:30 CST 2021


Signed-off-by: Jinoh Kang <jinoh.kang.kr at gmail.com>
---

Notes:
    v1 -> v2: dlls/kernelbase/test/process.c: add missing #include <stdarg.h>

 dlls/kernelbase/tests/Makefile.in |   3 +-
 dlls/kernelbase/tests/process.c   | 102 ++++++++++++++++++++++++++++++
 2 files changed, 104 insertions(+), 1 deletion(-)
 create mode 100644 dlls/kernelbase/tests/process.c

diff --git a/dlls/kernelbase/tests/Makefile.in b/dlls/kernelbase/tests/Makefile.in
index fe7ab212e6e..44ea96f9864 100644
--- a/dlls/kernelbase/tests/Makefile.in
+++ b/dlls/kernelbase/tests/Makefile.in
@@ -2,7 +2,8 @@ TESTDLL   = kernelbase.dll
 
 C_SRCS = \
 	path.c \
-	sync.c
+	sync.c \
+	process.c
 
 RC_SRCS = \
 	rsrc.rc
diff --git a/dlls/kernelbase/tests/process.c b/dlls/kernelbase/tests/process.c
new file mode 100644
index 00000000000..7aa07df6e4e
--- /dev/null
+++ b/dlls/kernelbase/tests/process.c
@@ -0,0 +1,102 @@
+/*
+ * Process tests
+ *
+ * Copyright 2021 Jinoh Kang
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <stdarg.h>
+#include <stdlib.h>
+
+#include <ntstatus.h>
+#define WIN32_NO_STATUS
+#include <windef.h>
+#include <winbase.h>
+#include <winerror.h>
+#include <winternl.h>
+
+#include "wine/test.h"
+
+static BOOL (WINAPI *pCompareObjectHandles)(HANDLE, HANDLE);
+
+static void test_CompareObjectHandles(void)
+{
+    HANDLE h1, h2;
+
+    if (!pCompareObjectHandles)
+    {
+        skip("CompareObjectHandles is not available.\n");
+        return;
+    }
+
+    ok( pCompareObjectHandles( GetCurrentProcess(), GetCurrentProcess() ),
+        "comparing GetCurrentProcess() to self failed with %u\n", GetLastError() );
+
+    ok( pCompareObjectHandles( GetCurrentThread(), GetCurrentThread() ),
+        "comparing GetCurrentThread() to self failed with %u\n", GetLastError() );
+
+    SetLastError(0);
+    ok( !pCompareObjectHandles( GetCurrentProcess(), GetCurrentThread() ) &&
+        GetLastError() == ERROR_NOT_SAME_OBJECT,
+        "comparing GetCurrentProcess() to GetCurrentThread() returned %u\n", GetLastError() );
+
+    h1 = NULL;
+    ok( DuplicateHandle( GetCurrentProcess(), GetCurrentProcess(), GetCurrentProcess(),
+                         &h1, 0, FALSE, DUPLICATE_SAME_ACCESS ),
+        "failed to duplicate current process handle: %u\n", GetLastError() );
+
+    ok( pCompareObjectHandles( GetCurrentProcess(), h1 ),
+        "comparing GetCurrentProcess() with %p failed with %u\n", h1, GetLastError() );
+
+    CloseHandle( h1 );
+
+    h1 = CreateFileA( "\\\\.\\NUL", GENERIC_ALL, 0, NULL, OPEN_EXISTING, 0, 0 );
+    ok( h1 != INVALID_HANDLE_VALUE, "CreateFile failed (%d)\n", GetLastError() );
+
+    h2 = NULL;
+    ok( DuplicateHandle( GetCurrentProcess(), h1, GetCurrentProcess(),
+                         &h2, 0, FALSE, DUPLICATE_SAME_ACCESS ),
+        "failed to duplicate handle %p: %u\n", h1, GetLastError() );
+
+    ok( pCompareObjectHandles( h1, h2 ),
+        "comparing %p with %p failed with %u\n", h1, h2, GetLastError() );
+
+    CloseHandle( h2 );
+
+    h2 = CreateFileA( "\\\\.\\NUL", GENERIC_ALL, 0, NULL, OPEN_EXISTING, 0, 0 );
+    ok( h2 != INVALID_HANDLE_VALUE, "CreateFile failed (%d)\n", GetLastError() );
+
+    SetLastError(0);
+    ok( !pCompareObjectHandles( h1, h2 ) && GetLastError() == ERROR_NOT_SAME_OBJECT,
+        "comparing %p with %p returned %u\n", h1, h2, GetLastError() );
+
+    CloseHandle( h2 );
+    CloseHandle( h1 );
+}
+
+START_TEST(process)
+{
+    HMODULE hmod;
+
+    hmod = GetModuleHandleA("kernel32.dll");
+    pCompareObjectHandles = (void *)GetProcAddress(hmod, "CompareObjectHandles");
+    ok(!pCompareObjectHandles, "expected CompareObjectHandles only in kernelbase.dll\n");
+
+    hmod = GetModuleHandleA("kernelbase.dll");
+    pCompareObjectHandles = (void *)GetProcAddress(hmod, "CompareObjectHandles");
+
+    test_CompareObjectHandles();
+}
-- 
2.31.1




More information about the wine-devel mailing list