mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:42:58 +00:00
[SHELL32_APITEST] Add FindExecutable testcase (#3723)
Investigate the implementation of shell32!FindExecutable function. CORE-17351, CORE-16898, CORE-17612
This commit is contained in:
parent
08e9000496
commit
fccea84dd4
5 changed files with 248 additions and 10 deletions
232
modules/rostests/apitests/shell32/FindExecutable.cpp
Normal file
232
modules/rostests/apitests/shell32/FindExecutable.cpp
Normal file
|
@ -0,0 +1,232 @@
|
|||
/*
|
||||
* PROJECT: ReactOS api tests
|
||||
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
|
||||
* PURPOSE: Test for FindExecutable
|
||||
* COPYRIGHT: Copyright 2021 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||||
*/
|
||||
|
||||
#include "shelltest.h"
|
||||
#include <stdio.h>
|
||||
#include <shlwapi.h>
|
||||
|
||||
static char s_sub_program[MAX_PATH];
|
||||
|
||||
static BOOL
|
||||
GetSubProgramPath(void)
|
||||
{
|
||||
GetModuleFileNameA(NULL, s_sub_program, _countof(s_sub_program));
|
||||
PathRemoveFileSpecA(s_sub_program);
|
||||
PathAppendA(s_sub_program, "shell32_apitest_sub.exe");
|
||||
|
||||
if (!PathFileExistsA(s_sub_program))
|
||||
{
|
||||
PathRemoveFileSpecA(s_sub_program);
|
||||
PathAppendA(s_sub_program, "testdata\\shell32_apitest_sub.exe");
|
||||
|
||||
if (!PathFileExistsA(s_sub_program))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
typedef struct TEST_ENTRY
|
||||
{
|
||||
INT lineno;
|
||||
BOOL ret;
|
||||
LPCSTR file;
|
||||
LPCSTR dir;
|
||||
LPCSTR result;
|
||||
} TEST_ENTRY;
|
||||
|
||||
static char s_win_dir[MAX_PATH];
|
||||
static char s_win_notepad[MAX_PATH];
|
||||
static char s_sys_notepad[MAX_PATH];
|
||||
static char s_win_test_exe[MAX_PATH];
|
||||
static char s_sys_test_exe[MAX_PATH];
|
||||
static char s_win_bat_file[MAX_PATH];
|
||||
static char s_sys_bat_file[MAX_PATH];
|
||||
|
||||
#define DIR_0 NULL
|
||||
#define DIR_1 "."
|
||||
#define DIR_2 ".."
|
||||
#define DIR_3 s_win_dir
|
||||
#define DIR_4 "(invalid)"
|
||||
|
||||
static const TEST_ENTRY s_entries[] =
|
||||
{
|
||||
{ __LINE__, TRUE, "notepad", DIR_0, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad", DIR_1, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad", DIR_2, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad", DIR_3, s_win_notepad },
|
||||
{ __LINE__, TRUE, "notepad", DIR_4, s_sys_notepad },
|
||||
{ __LINE__, FALSE, " notepad", DIR_0, "" },
|
||||
{ __LINE__, FALSE, " notepad", DIR_1, "" },
|
||||
{ __LINE__, FALSE, " notepad", DIR_2, "" },
|
||||
{ __LINE__, FALSE, " notepad", DIR_3, "" },
|
||||
{ __LINE__, FALSE, " notepad", DIR_4, "" },
|
||||
{ __LINE__, FALSE, "notepad ", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "notepad ", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "notepad ", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "notepad ", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "notepad ", DIR_4, "" },
|
||||
{ __LINE__, TRUE, "\"notepad\"", DIR_0, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "\"notepad\"", DIR_1, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "\"notepad\"", DIR_2, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "\"notepad\"", DIR_3, s_win_notepad },
|
||||
{ __LINE__, TRUE, "\"notepad\"", DIR_4, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad.exe", DIR_0, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad.exe", DIR_1, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad.exe", DIR_2, s_sys_notepad },
|
||||
{ __LINE__, TRUE, "notepad.exe", DIR_3, s_win_notepad },
|
||||
{ __LINE__, TRUE, "notepad.exe", DIR_4, s_sys_notepad },
|
||||
{ __LINE__, FALSE, "notepad.bat", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "notepad.bat", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "notepad.bat", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "notepad.bat", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "notepad.bat", DIR_4, "" },
|
||||
{ __LINE__, FALSE, "C:\\notepad.exe", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "C:\\notepad.exe", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "C:\\notepad.exe", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "C:\\notepad.exe", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "C:\\notepad.exe", DIR_4, "" },
|
||||
{ __LINE__, FALSE, "..\\notepad.exe", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "..\\notepad.exe", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "..\\notepad.exe", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "..\\notepad.exe", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "..\\notepad.exe", DIR_4, "" },
|
||||
{ __LINE__, TRUE, "test program", DIR_0, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program", DIR_1, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program", DIR_2, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program", DIR_3, s_win_test_exe },
|
||||
{ __LINE__, TRUE, "test program", DIR_4, s_sys_test_exe },
|
||||
{ __LINE__, FALSE, " test program", DIR_0, "" },
|
||||
{ __LINE__, FALSE, " test program", DIR_1, "" },
|
||||
{ __LINE__, FALSE, " test program", DIR_2, "" },
|
||||
{ __LINE__, FALSE, " test program", DIR_3, "" },
|
||||
{ __LINE__, FALSE, " test program", DIR_4, "" },
|
||||
{ __LINE__, FALSE, "test program ", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "test program ", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "test program ", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "test program ", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "test program ", DIR_4, "" },
|
||||
{ __LINE__, TRUE, "\"test program\"", DIR_0, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program\"", DIR_1, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program\"", DIR_2, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program\"", DIR_3, s_win_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program\"", DIR_4, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program.exe", DIR_0, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program.exe", DIR_1, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program.exe", DIR_2, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "test program.exe", DIR_3, s_win_test_exe },
|
||||
{ __LINE__, TRUE, "test program.exe", DIR_4, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program.exe\"", DIR_0, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program.exe\"", DIR_1, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program.exe\"", DIR_2, s_sys_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program.exe\"", DIR_3, s_win_test_exe },
|
||||
{ __LINE__, TRUE, "\"test program.exe\"", DIR_4, s_sys_test_exe },
|
||||
{ __LINE__, FALSE, "\"test program.exe \"", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "\"test program.exe \"", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "\"test program.exe \"", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "\"test program.exe \"", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "\"test program.exe \"", DIR_4, "" },
|
||||
{ __LINE__, FALSE, "\" test program.exe\"", DIR_0, "" },
|
||||
{ __LINE__, FALSE, "\" test program.exe\"", DIR_1, "" },
|
||||
{ __LINE__, FALSE, "\" test program.exe\"", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "\" test program.exe\"", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "\" test program.exe\"", DIR_4, "" },
|
||||
{ __LINE__, TRUE, "test program.bat", DIR_0, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "test program.bat", DIR_1, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "test program.bat", DIR_2, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "test program.bat", DIR_3, s_win_bat_file },
|
||||
{ __LINE__, TRUE, "test program.bat", DIR_4, s_sys_bat_file },
|
||||
{ __LINE__, FALSE, " test program.bat ", DIR_0, "" },
|
||||
{ __LINE__, FALSE, " test program.bat ", DIR_1, "" },
|
||||
{ __LINE__, FALSE, " test program.bat ", DIR_2, "" },
|
||||
{ __LINE__, FALSE, " test program.bat ", DIR_3, "" },
|
||||
{ __LINE__, FALSE, " test program.bat ", DIR_4, "" },
|
||||
{ __LINE__, TRUE, "\"test program.bat\"", DIR_0, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "\"test program.bat\"", DIR_1, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "\"test program.bat\"", DIR_2, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "\"test program.bat\"", DIR_3, s_win_bat_file },
|
||||
{ __LINE__, TRUE, "\"test program.bat\"", DIR_4, s_sys_bat_file },
|
||||
{ __LINE__, TRUE, "shell32_apitest_sub.exe", DIR_0, s_sub_program },
|
||||
{ __LINE__, TRUE, "shell32_apitest_sub.exe", DIR_1, "shell32_apitest_sub.exe" },
|
||||
{ __LINE__, FALSE, "shell32_apitest_sub.exe", DIR_2, "" },
|
||||
{ __LINE__, FALSE, "shell32_apitest_sub.exe", DIR_3, "" },
|
||||
{ __LINE__, FALSE, "shell32_apitest_sub.exe", DIR_4, "" },
|
||||
};
|
||||
|
||||
static void DoTestEntry(const TEST_ENTRY *pEntry)
|
||||
{
|
||||
char result[MAX_PATH];
|
||||
result[0] = 0;
|
||||
BOOL ret = ((INT_PTR)FindExecutableA(pEntry->file, pEntry->dir, result) > 32);
|
||||
ok(ret == pEntry->ret, "Line %u: ret expected %d, got %d\n", pEntry->lineno, pEntry->ret, ret);
|
||||
|
||||
GetLongPathNameA(result, result, _countof(result));
|
||||
|
||||
ok(lstrcmpiA(result, pEntry->result) == 0,
|
||||
"Line %u: result expected '%s', got '%s'\n",
|
||||
pEntry->lineno, pEntry->result, result);
|
||||
}
|
||||
|
||||
START_TEST(FindExecutable)
|
||||
{
|
||||
if (!GetSubProgramPath())
|
||||
{
|
||||
skip("shell32_apitest_sub.exe not found\n");
|
||||
return;
|
||||
}
|
||||
|
||||
char cur_dir[MAX_PATH];
|
||||
GetCurrentDirectoryA(_countof(cur_dir), cur_dir);
|
||||
if (PathIsRootA(cur_dir))
|
||||
{
|
||||
skip("Don't use this program at root directory\n");
|
||||
return;
|
||||
}
|
||||
|
||||
GetWindowsDirectoryA(s_win_dir, _countof(s_win_dir));
|
||||
|
||||
GetWindowsDirectoryA(s_win_notepad, _countof(s_win_notepad));
|
||||
PathAppendA(s_win_notepad, "notepad.exe");
|
||||
|
||||
GetSystemDirectoryA(s_sys_notepad, _countof(s_sys_notepad));
|
||||
PathAppendA(s_sys_notepad, "notepad.exe");
|
||||
|
||||
GetWindowsDirectoryA(s_win_test_exe, _countof(s_win_test_exe));
|
||||
PathAppendA(s_win_test_exe, "test program.exe");
|
||||
BOOL ret = CopyFileA(s_sub_program, s_win_test_exe, FALSE);
|
||||
if (!ret)
|
||||
{
|
||||
skip("Please retry with admin rights\n");
|
||||
return;
|
||||
}
|
||||
|
||||
GetSystemDirectoryA(s_sys_test_exe, _countof(s_sys_test_exe));
|
||||
PathAppendA(s_sys_test_exe, "test program.exe");
|
||||
ok_int(CopyFileA(s_sub_program, s_sys_test_exe, FALSE), TRUE);
|
||||
|
||||
GetWindowsDirectoryA(s_win_bat_file, _countof(s_win_bat_file));
|
||||
PathAppendA(s_win_bat_file, "test program.bat");
|
||||
fclose(fopen(s_win_bat_file, "wb"));
|
||||
ok_int(PathFileExistsA(s_win_bat_file), TRUE);
|
||||
|
||||
GetSystemDirectoryA(s_sys_bat_file, _countof(s_sys_bat_file));
|
||||
PathAppendA(s_sys_bat_file, "test program.bat");
|
||||
fclose(fopen(s_sys_bat_file, "wb"));
|
||||
ok_int(PathFileExistsA(s_sys_bat_file), TRUE);
|
||||
|
||||
for (UINT iTest = 0; iTest < _countof(s_entries); ++iTest)
|
||||
{
|
||||
DoTestEntry(&s_entries[iTest]);
|
||||
}
|
||||
|
||||
DeleteFileA(s_win_test_exe);
|
||||
DeleteFileA(s_sys_test_exe);
|
||||
DeleteFileA(s_win_bat_file);
|
||||
DeleteFileA(s_sys_bat_file);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue