From 12796f8786937169a83cd7882b996af487608caa Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 13 Jan 2017 15:33:38 +0000 Subject: [PATCH] [KERNEL32_APITEST] - Add tests for LoadLibraryExW to test its ability to load a redirected dll. Do not include it in the build until a way is found for it to be compiled properly. svn path=/trunk/; revision=73538 --- rostests/apitests/kernel32/LoadLibraryExW.c | 90 +++++++++++++++++++ .../kernel32/redirptest/CMakeLists.txt | 25 ++++++ .../apitests/kernel32/redirptest/redirtest.c | 27 ++++++ .../kernel32/redirptest/redirtest.spec | 1 + .../kernel32/redirptest/redirtest2.manifest | 6 ++ 5 files changed, 149 insertions(+) create mode 100644 rostests/apitests/kernel32/LoadLibraryExW.c create mode 100644 rostests/apitests/kernel32/redirptest/CMakeLists.txt create mode 100644 rostests/apitests/kernel32/redirptest/redirtest.c create mode 100644 rostests/apitests/kernel32/redirptest/redirtest.spec create mode 100644 rostests/apitests/kernel32/redirptest/redirtest2.manifest diff --git a/rostests/apitests/kernel32/LoadLibraryExW.c b/rostests/apitests/kernel32/LoadLibraryExW.c new file mode 100644 index 00000000000..913e5a7730e --- /dev/null +++ b/rostests/apitests/kernel32/LoadLibraryExW.c @@ -0,0 +1,90 @@ +/* + * Copyright 2017 Giannis Adamopoulos + * + * 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 +#include + +#include "wine/test.h" +#include "windef.h" +#include "winbase.h" +#include "winerror.h" + +HANDLE _CreateActCtxFromFile(LPCWSTR FileName, int line); +VOID _ActivateCtx(HANDLE h, ULONG_PTR *cookie, int line); +VOID _DeactivateCtx(ULONG_PTR cookie, int line); + +typedef DWORD (WINAPI *LPGETVERSION)(); + +VOID _TestVesion(HANDLE dll, DWORD ExpectedVersion, int line) +{ + LPGETVERSION proc = (LPGETVERSION)GetProcAddress(dll, "GetVersion"); + DWORD version = proc(); + ok_(__FILE__, line)(version == ExpectedVersion, "Got version %d, expected %d\n", version, ExpectedVersion); +} + +VOID TestDllRedirection() +{ + HANDLE dll1, dll2, h; + ULONG_PTR cookie; + + /* Try to load the libraries without sxs */ + dll1 = LoadLibraryExW(L"kernel32test_versioned.dll",0 , 0); + ok (dll1 != NULL, "LoadLibraryExW failed\n"); + dll2 = LoadLibraryExW(L"testdata\\kernel32test_versioned.dll",0 , 0); + ok (dll2 != NULL, "LoadLibraryExW failed\n"); + + ok (dll1 != dll2, "\n"); + _TestVesion(dll1, 1, __LINE__); + _TestVesion(dll2, 2, __LINE__); + + FreeLibrary(dll1); + FreeLibrary(dll2); + + dll1 = LoadLibraryExW(L"kernel32test_versioned.dll",0 , 0); + ok (dll1 != NULL, "LoadLibraryExW failed\n"); + + h = _CreateActCtxFromFile(L"testdata\\redirtest2.manifest", __LINE__); + _ActivateCtx(h, &cookie, __LINE__); + dll2 = LoadLibraryExW(L"kernel32test_versioned.dll",0 , 0); + _DeactivateCtx(cookie, __LINE__); + ok (dll2 != NULL, "LoadLibraryExW failed\n"); + + ok (dll1 != dll2, "\n"); + _TestVesion(dll1, 1, __LINE__); + _TestVesion(dll2, 2, __LINE__); + + FreeLibrary(dll1); + FreeLibrary(dll2); + + dll1 = LoadLibraryExW(L"comctl32.dll",0 ,0); + ok (dll1 != NULL, "LoadLibraryExW failed\n"); + + h = _CreateActCtxFromFile(L"comctl32dep.manifest", __LINE__); + _ActivateCtx(h, &cookie, __LINE__); + dll2 = LoadLibraryExW(L"comctl32.dll",0 , 0); + _DeactivateCtx(cookie, __LINE__); + ok (dll2 != NULL, "LoadLibraryExW failed\n"); + + ok (dll1 != dll2, "\n"); + +} + +START_TEST(LoadLibraryExW) +{ + TestDllRedirection(); +} \ No newline at end of file diff --git a/rostests/apitests/kernel32/redirptest/CMakeLists.txt b/rostests/apitests/kernel32/redirptest/CMakeLists.txt new file mode 100644 index 00000000000..3a7c52a7c9c --- /dev/null +++ b/rostests/apitests/kernel32/redirptest/CMakeLists.txt @@ -0,0 +1,25 @@ + +spec2def(redirtest.dll redirtest.spec ADD_IMPORTLIB) + +list(APPEND SOURCE + redirtest.c + ${CMAKE_CURRENT_BINARY_DIR}/redirtest_stubs.c + ${CMAKE_CURRENT_BINARY_DIR}/redirtest.def) + +add_definitions(-DTESTVER=1) + +add_library(redirtest1 SHARED ${SOURCE}) +set_module_type(redirtest1 win32dll) +add_importlibs(redirtest1 msvcrt kernel32 ntdll) +add_rostests_file(TARGET redirtest1 NAME_ON_CD kernel32test_versioned.dll) + +remove_definitions(-DTESTVER=1) +add_definitions(-DTESTVER=2) + +add_library(redirtest2 SHARED ${SOURCE}) +set_module_type(redirtest2 win32dll) +add_importlibs(redirtest2 msvcrt kernel32 ntdll) +add_rostests_file(TARGET redirtest2 SUBDIR testdata NAME_ON_CD kernel32test_versioned.dll) +add_rostests_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/redirtest2.manifest" SUBDIR testdata) + +remove_definitions(-DTESTVER=2) \ No newline at end of file diff --git a/rostests/apitests/kernel32/redirptest/redirtest.c b/rostests/apitests/kernel32/redirptest/redirtest.c new file mode 100644 index 00000000000..c24eac52761 --- /dev/null +++ b/rostests/apitests/kernel32/redirptest/redirtest.c @@ -0,0 +1,27 @@ + +#include +#include + +DWORD WINAPI GetVersion() +{ + return TESTVER; +} + +BOOL +WINAPI +DllMain(HINSTANCE hinstDll, + DWORD dwReason, + LPVOID reserved) +{ + switch (dwReason) + { + case DLL_PROCESS_ATTACH: + DisableThreadLibraryCalls(hinstDll); + break; + + case DLL_PROCESS_DETACH: + break; + } + + return TRUE; +} diff --git a/rostests/apitests/kernel32/redirptest/redirtest.spec b/rostests/apitests/kernel32/redirptest/redirtest.spec new file mode 100644 index 00000000000..42c974e47e5 --- /dev/null +++ b/rostests/apitests/kernel32/redirptest/redirtest.spec @@ -0,0 +1 @@ +@ stdcall GetVersion() \ No newline at end of file diff --git a/rostests/apitests/kernel32/redirptest/redirtest2.manifest b/rostests/apitests/kernel32/redirptest/redirtest2.manifest new file mode 100644 index 00000000000..f29a7638d50 --- /dev/null +++ b/rostests/apitests/kernel32/redirptest/redirtest2.manifest @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file