mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[KERNEL32_APITEST] Check also 'NV Hostname' in SetComputerNameExW testcase (#1581)
Also test NV Hostname registry value in the testcase of kernel32!SetComputerNameW. ROSTESTS-322
This commit is contained in:
parent
ed0c613528
commit
dbc20b6484
1 changed files with 21 additions and 0 deletions
|
@ -44,6 +44,7 @@ START_TEST(SetComputerNameExW)
|
|||
BOOL ret;
|
||||
HKEY hKeyHN, hKeyCN;
|
||||
DWORD cbData;
|
||||
WCHAR szNVHostNameOld[MAX_PATH], szNVHostNameNew[MAX_PATH];
|
||||
WCHAR szHostNameOld[MAX_PATH], szHostNameNew[MAX_PATH];
|
||||
WCHAR szComputerNameOld[MAX_PATH], szComputerNameNew[MAX_PATH];
|
||||
|
||||
|
@ -62,6 +63,13 @@ START_TEST(SetComputerNameExW)
|
|||
return;
|
||||
}
|
||||
|
||||
/* Get Old NV Hostname */
|
||||
szNVHostNameOld[0] = UNICODE_NULL;
|
||||
cbData = sizeof(szNVHostNameOld);
|
||||
Error = RegQueryValueExW(hKeyHN, L"NV Hostname", NULL, NULL, (LPBYTE)szNVHostNameOld, &cbData);
|
||||
ok_long(Error, ERROR_SUCCESS);
|
||||
ok(szNVHostNameOld[0], "szNVHostNameOld is empty\n");
|
||||
|
||||
/* Get Old Hostname */
|
||||
szHostNameOld[0] = UNICODE_NULL;
|
||||
cbData = sizeof(szHostNameOld);
|
||||
|
@ -80,6 +88,15 @@ START_TEST(SetComputerNameExW)
|
|||
ret = SetComputerNameExW(ComputerNamePhysicalDnsHostname, szNewName);
|
||||
ok_int(ret, TRUE);
|
||||
|
||||
/* Get New NV Hostname */
|
||||
szNVHostNameNew[0] = UNICODE_NULL;
|
||||
cbData = sizeof(szNVHostNameNew);
|
||||
Error = RegQueryValueExW(hKeyHN, L"NV Hostname", NULL, NULL, (LPBYTE)szNVHostNameNew, &cbData);
|
||||
ok_long(Error, ERROR_SUCCESS);
|
||||
ok(szNVHostNameNew[0], "szNVHostNameNew is empty\n");
|
||||
ok(lstrcmpW(szNVHostNameNew, szNewName) == 0,
|
||||
"szNVHostNameNew '%S' should be szNewName '%S'\n", szNVHostNameNew, szNewName);
|
||||
|
||||
/* Get New Hostname */
|
||||
szHostNameNew[0] = UNICODE_NULL;
|
||||
cbData = sizeof(szHostNameNew);
|
||||
|
@ -99,6 +116,10 @@ START_TEST(SetComputerNameExW)
|
|||
"szComputerNameNew '%S' should be szNewName '%S'\n", szComputerNameNew, szNewName);
|
||||
|
||||
/* Restore the registry values */
|
||||
cbData = (lstrlenW(szNVHostNameOld) + 1) * sizeof(WCHAR);
|
||||
Error = RegSetValueExW(hKeyHN, L"NV Hostname", 0, REG_SZ, (LPBYTE)szNVHostNameOld, cbData);
|
||||
ok_long(Error, ERROR_SUCCESS);
|
||||
|
||||
cbData = (lstrlenW(szHostNameOld) + 1) * sizeof(WCHAR);
|
||||
Error = RegSetValueExW(hKeyHN, L"Hostname", 0, REG_SZ, (LPBYTE)szHostNameOld, cbData);
|
||||
ok_long(Error, ERROR_SUCCESS);
|
||||
|
|
Loading…
Reference in a new issue