mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[KERNEL32_APITEST] Add SetComputerNameExW testcase (#1578)
Add testcase of kernel32!SetComputerNameExW function. ROSTESTS-227
This commit is contained in:
parent
fabbd7c1c1
commit
8aeb6a920a
3 changed files with 116 additions and 1 deletions
|
@ -27,6 +27,7 @@ list(APPEND SOURCE
|
||||||
Mailslot.c
|
Mailslot.c
|
||||||
MultiByteToWideChar.c
|
MultiByteToWideChar.c
|
||||||
PrivMoveFileIdentityW.c
|
PrivMoveFileIdentityW.c
|
||||||
|
SetComputerNameExW.c
|
||||||
SetConsoleWindowInfo.c
|
SetConsoleWindowInfo.c
|
||||||
SetCurrentDirectory.c
|
SetCurrentDirectory.c
|
||||||
SetUnhandledExceptionFilter.c
|
SetUnhandledExceptionFilter.c
|
||||||
|
|
113
modules/rostests/apitests/kernel32/SetComputerNameExW.c
Normal file
113
modules/rostests/apitests/kernel32/SetComputerNameExW.c
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
/*
|
||||||
|
* PROJECT: ReactOS api tests
|
||||||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||||
|
* PURPOSE: Tests for the SetComputerNameExW API
|
||||||
|
* COPYRIGHT: Victor Martinez Calvo (victor.martinez@reactos.org)
|
||||||
|
* Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||||||
|
*/
|
||||||
|
#include <apitest.h>
|
||||||
|
|
||||||
|
#define WIN32_NO_STATUS
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <ndk/rtltypes.h>
|
||||||
|
|
||||||
|
#undef _WIN32_WINNT
|
||||||
|
#define _WIN32_WINNT 0x0600
|
||||||
|
#include <winreg.h>
|
||||||
|
|
||||||
|
static HKEY OpenHostNameKey(void)
|
||||||
|
{
|
||||||
|
static const WCHAR
|
||||||
|
RegHostNameKey[] = L"System\\CurrentControlSet\\Services\\Tcpip\\Parameters";
|
||||||
|
HKEY hKey = NULL;
|
||||||
|
LONG Error = RegOpenKeyExW(HKEY_LOCAL_MACHINE, RegHostNameKey, 0, KEY_ALL_ACCESS, &hKey);
|
||||||
|
if (!Error)
|
||||||
|
return hKey;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HKEY OpenComputerNameKey(void)
|
||||||
|
{
|
||||||
|
static const WCHAR
|
||||||
|
RegComputerNameKey[] = L"System\\CurrentControlSet\\Control\\ComputerName\\ComputerName";
|
||||||
|
HKEY hKey = NULL;
|
||||||
|
LONG Error = RegOpenKeyExW(HKEY_LOCAL_MACHINE, RegComputerNameKey, 0, KEY_ALL_ACCESS, &hKey);
|
||||||
|
if (!Error)
|
||||||
|
return hKey;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
START_TEST(SetComputerNameExW)
|
||||||
|
{
|
||||||
|
LONG Error;
|
||||||
|
BOOL ret;
|
||||||
|
HKEY hKeyHN, hKeyCN;
|
||||||
|
DWORD cbData;
|
||||||
|
WCHAR szHostNameOld[MAX_PATH], szHostNameNew[MAX_PATH];
|
||||||
|
WCHAR szComputerNameOld[MAX_PATH], szComputerNameNew[MAX_PATH];
|
||||||
|
static const WCHAR szNewName[] = L"SRVROSTEST";
|
||||||
|
|
||||||
|
/* Open keys */
|
||||||
|
hKeyHN = OpenHostNameKey();
|
||||||
|
hKeyCN = OpenComputerNameKey();
|
||||||
|
if (!hKeyHN || !hKeyCN)
|
||||||
|
{
|
||||||
|
if (hKeyHN)
|
||||||
|
RegCloseKey(hKeyHN);
|
||||||
|
if (hKeyCN)
|
||||||
|
RegCloseKey(hKeyCN);
|
||||||
|
skip("Unable to open keys (%p, %p).\n", hKeyHN, hKeyCN);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Get Old Hostname */
|
||||||
|
szHostNameOld[0] = UNICODE_NULL;
|
||||||
|
cbData = sizeof(szHostNameOld);
|
||||||
|
Error = RegQueryValueExW(hKeyHN, L"Hostname", NULL, NULL, (LPBYTE)szHostNameOld, &cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
ok(szHostNameOld[0], "szHostNameOld is %S", szHostNameOld);
|
||||||
|
|
||||||
|
/* Get Old Computer Name */
|
||||||
|
szComputerNameOld[0] = UNICODE_NULL;
|
||||||
|
cbData = sizeof(szComputerNameOld);
|
||||||
|
Error = RegQueryValueExW(hKeyCN, L"ComputerName", NULL, NULL, (LPBYTE)szComputerNameOld, &cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
ok(szComputerNameOld[0], "szHostNameOld is %S", szComputerNameOld);
|
||||||
|
|
||||||
|
/* Change the value */
|
||||||
|
ret = SetComputerNameExW(ComputerNamePhysicalDnsHostname, szNewName);
|
||||||
|
ok_int(ret, TRUE);
|
||||||
|
|
||||||
|
/* Get New Hostname */
|
||||||
|
szHostNameNew[0] = UNICODE_NULL;
|
||||||
|
cbData = sizeof(szHostNameNew);
|
||||||
|
Error = RegQueryValueExW(hKeyHN, L"Hostname", NULL, NULL, (LPBYTE)szHostNameNew, &cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
ok(szHostNameNew[0], "szHostNameNew was empty.\n");
|
||||||
|
ok(lstrcmpW(szHostNameNew, szHostNameOld) == 0,
|
||||||
|
"szHostNameNew '%S' should be szHostNameOld '%S'.\n", szHostNameNew, szHostNameOld);
|
||||||
|
|
||||||
|
/* Get New Computer Name */
|
||||||
|
szComputerNameNew[0] = UNICODE_NULL;
|
||||||
|
cbData = sizeof(szComputerNameNew);
|
||||||
|
Error = RegQueryValueExW(hKeyCN, L"ComputerName", NULL, NULL, (LPBYTE)szComputerNameNew, &cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
ok(szComputerNameNew[0], "szComputerNameNew was empty.\n");
|
||||||
|
ok(lstrcmpW(szComputerNameNew, szNewName) == 0,
|
||||||
|
"szComputerNameNew '%S' should be szNewName '%S'.\n", szComputerNameNew, szNewName);
|
||||||
|
|
||||||
|
/* Restore the registry values */
|
||||||
|
cbData = (lstrlenW(szHostNameOld) + 1) * sizeof(WCHAR);
|
||||||
|
Error = RegSetValueExW(hKeyHN, L"Hostname", 0, REG_SZ, (LPBYTE)szHostNameOld, cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
|
||||||
|
cbData = (lstrlenW(szComputerNameOld) + 1) * sizeof(WCHAR);
|
||||||
|
Error = RegSetValueExW(hKeyCN, L"ComputerName", 0, REG_SZ, (LPBYTE)szComputerNameOld, cbData);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
|
||||||
|
/* Close keys */
|
||||||
|
Error = RegCloseKey(hKeyHN);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
Error = RegCloseKey(hKeyCN);
|
||||||
|
ok_long(Error, ERROR_SUCCESS);
|
||||||
|
}
|
|
@ -26,6 +26,7 @@ extern void func_lstrlen(void);
|
||||||
extern void func_Mailslot(void);
|
extern void func_Mailslot(void);
|
||||||
extern void func_MultiByteToWideChar(void);
|
extern void func_MultiByteToWideChar(void);
|
||||||
extern void func_PrivMoveFileIdentityW(void);
|
extern void func_PrivMoveFileIdentityW(void);
|
||||||
|
extern void func_SetComputerNameExW(void);
|
||||||
extern void func_SetConsoleWindowInfo(void);
|
extern void func_SetConsoleWindowInfo(void);
|
||||||
extern void func_SetCurrentDirectory(void);
|
extern void func_SetCurrentDirectory(void);
|
||||||
extern void func_SetUnhandledExceptionFilter(void);
|
extern void func_SetUnhandledExceptionFilter(void);
|
||||||
|
@ -59,6 +60,7 @@ const struct test winetest_testlist[] =
|
||||||
{ "MailslotRead", func_Mailslot },
|
{ "MailslotRead", func_Mailslot },
|
||||||
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
||||||
{ "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
|
{ "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
|
||||||
|
{ "SetComputerNameExW", func_SetComputerNameExW },
|
||||||
{ "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
|
{ "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
|
||||||
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
||||||
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter },
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter },
|
||||||
|
@ -68,4 +70,3 @@ const struct test winetest_testlist[] =
|
||||||
{ "WideCharToMultiByte", func_WideCharToMultiByte },
|
{ "WideCharToMultiByte", func_WideCharToMultiByte },
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue