wine-wine/programs/regedit/tests/regedit.c

346 lines
12 KiB
C
Raw Normal View History

2010-07-30 21:02:34 +00:00
/*
* Copyright 2010 Andrew Eikum for CodeWeavers
*
* 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 <windows.h>
#include "wine/test.h"
static BOOL supports_wchar;
#define lok ok_(__FILE__,line)
#define exec_import_str(c) r_exec_import_str(__LINE__, c)
static BOOL r_exec_import_str(unsigned line, const char *file_contents)
{
STARTUPINFOA si = {sizeof(STARTUPINFOA)};
PROCESS_INFORMATION pi;
HANDLE regfile;
DWORD written, dr;
BOOL br;
char cmd[] = "regedit /s test.reg";
regfile = CreateFileA("test.reg", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL);
lok(regfile != INVALID_HANDLE_VALUE, "Failed to create test.reg file\n");
if(regfile == INVALID_HANDLE_VALUE)
return FALSE;
br = WriteFile(regfile, file_contents, strlen(file_contents), &written,
NULL);
lok(br == TRUE, "WriteFile failed: %d\n", GetLastError());
CloseHandle(regfile);
if(!CreateProcessA(NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
return FALSE;
dr = WaitForSingleObject(pi.hProcess, 10000);
if(dr == WAIT_TIMEOUT)
TerminateProcess(pi.hProcess, 1);
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
br = DeleteFileA("test.reg");
lok(br == TRUE, "DeleteFileA failed: %d\n", GetLastError());
return (dr != WAIT_TIMEOUT);
}
#define exec_import_wstr(c) r_exec_import_wstr(__LINE__, c)
static BOOL r_exec_import_wstr(unsigned line, const WCHAR *file_contents)
{
STARTUPINFOA si = {sizeof(STARTUPINFOA)};
PROCESS_INFORMATION pi;
HANDLE regfile;
DWORD written, dr;
BOOL br;
char cmd[] = "regedit /s test.reg";
regfile = CreateFileA("test.reg", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL);
lok(regfile != INVALID_HANDLE_VALUE, "Failed to create test.reg file\n");
if(regfile == INVALID_HANDLE_VALUE)
return FALSE;
br = WriteFile(regfile, file_contents,
lstrlenW(file_contents) * sizeof(WCHAR), &written, NULL);
lok(br == TRUE, "WriteFile failed: %d\n", GetLastError());
CloseHandle(regfile);
if(!CreateProcessA(NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
return FALSE;
dr = WaitForSingleObject(pi.hProcess, 10000);
if(dr == WAIT_TIMEOUT)
TerminateProcess(pi.hProcess, 1);
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
br = DeleteFileA("test.reg");
lok(br == TRUE, "DeleteFileA failed: %d\n", GetLastError());
return (dr != WAIT_TIMEOUT);
}
#define verify_reg_sz(k,n,e) r_verify_reg_sz(__LINE__,k,n,e)
static void r_verify_reg_sz(unsigned line, HKEY key, const char *value_name, const char *exp_value)
2010-07-30 21:02:34 +00:00
{
LONG lr;
DWORD fnd_type, fnd_len;
char fnd_value[1024];
fnd_len = sizeof(fnd_value);
lr = RegQueryValueExA(key, value_name, NULL, &fnd_type, (BYTE*)fnd_value, &fnd_len);
2010-07-30 21:02:34 +00:00
lok(lr == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", lr);
if(lr != ERROR_SUCCESS)
return;
lok(fnd_type == REG_SZ, "Got wrong type: %d\n", fnd_type);
if(fnd_type != REG_SZ)
return;
lok(!strcmp(exp_value, fnd_value),
"Strings differ: expected %s, got %s\n", exp_value, fnd_value);
}
#define verify_reg_wsz(k,n,e) r_verify_reg_wsz(__LINE__,k,n,e)
static void r_verify_reg_wsz(unsigned line, HKEY key, const char *value_name, const WCHAR *exp_value)
2010-07-30 21:02:34 +00:00
{
LONG lr;
DWORD fnd_type, fnd_len;
WCHAR fnd_value[1024], value_nameW[1024];
MultiByteToWideChar(CP_ACP, 0, value_name, -1, value_nameW,
2010-10-24 12:26:15 +00:00
sizeof(value_nameW)/sizeof(value_nameW[0]));
2010-07-30 21:02:34 +00:00
fnd_len = sizeof(fnd_value);
lr = RegQueryValueExW(key, value_nameW, NULL, &fnd_type, (BYTE*)fnd_value, &fnd_len);
2010-07-30 21:02:34 +00:00
lok(lr == ERROR_SUCCESS, "RegQueryValueExW failed: %d\n", lr);
if(lr != ERROR_SUCCESS)
return;
lok(fnd_type == REG_SZ, "Got wrong type: %d\n", fnd_type);
if(fnd_type != REG_SZ)
return;
lok(!lstrcmpW(exp_value, fnd_value),
"Strings differ: expected %s, got %s\n",
wine_dbgstr_w(exp_value), wine_dbgstr_w(fnd_value));
}
#define verify_reg_dword(k,n,e) r_verify_reg_dword(__LINE__,k,n,e)
static void r_verify_reg_dword(unsigned line, HKEY key, const char *value_name, DWORD exp_value)
2010-07-30 21:02:34 +00:00
{
LONG lr;
DWORD fnd_type, fnd_len, fnd_value;
fnd_len = sizeof(fnd_value);
lr = RegQueryValueExA(key, value_name, NULL, &fnd_type, (BYTE *)&fnd_value, &fnd_len);
2010-07-30 21:02:34 +00:00
lok(lr == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", lr);
if(lr != ERROR_SUCCESS)
return;
lok(fnd_type == REG_DWORD, "Got wrong type: %d\n", fnd_type);
if(fnd_type != REG_DWORD)
return;
lok(fnd_value == exp_value, "Values differ: expected: 0x%x, got: 0x%x\n",
exp_value, fnd_value);
}
#define verify_reg_binary(k,n,e,z) r_verify_reg_binary(__LINE__,k,n,e,z)
static void r_verify_reg_binary(unsigned line, HKEY key,
2010-07-30 21:02:34 +00:00
const char *value_name, const char *exp_value, int exp_len)
{
LONG lr;
DWORD fnd_type, fnd_len;
char fnd_value[1024];
fnd_len = sizeof(fnd_value);
lr = RegQueryValueExA(key, value_name, NULL, &fnd_type, (BYTE*)fnd_value, &fnd_len);
2010-07-30 21:02:34 +00:00
lok(lr == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", lr);
if(lr != ERROR_SUCCESS)
return;
lok(fnd_type == REG_BINARY, "Got wrong type: %d\n", fnd_type);
if(fnd_type != REG_BINARY)
return;
lok(fnd_len == exp_len,
"Lengths differ: expected %d, got %d\n", exp_len, fnd_len);
lok(!memcmp(exp_value, fnd_value, exp_len),
"Data differs\n");
}
#define verify_reg_nonexist(k,n) r_verify_reg_nonexist(__LINE__,k,n)
static void r_verify_reg_nonexist(unsigned line, HKEY key, const char *value_name)
{
LONG lr;
DWORD fnd_type, fnd_len;
char fnd_value[32];
fnd_len = sizeof(fnd_value);
lr = RegQueryValueExA(key, value_name, NULL, &fnd_type, (BYTE*)fnd_value, &fnd_len);
lok(lr == ERROR_FILE_NOT_FOUND, "Reg value shouldn't exist: %s\n",
value_name);
}
#define KEY_BASE "Software\\Wine\\regedit_test"
2010-07-30 21:02:34 +00:00
static void test_basic_import(void)
{
HKEY hkey;
2010-07-30 21:02:34 +00:00
char exp_binary[] = {0xAA,0xBB,0xCC,0x11};
WCHAR wide_test[] = {0xFEFF,'W','i','n','d','o','w','s',' ','R','e','g',
'i','s','t','r','y',' ','E','d','i','t','o','r',' ','V','e','r','s',
'i','o','n',' ','5','.','0','0','\n','\n',
'[','H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E',
'R','\\','S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
'r','e','g','e','d','i','t','_','t','e','s','t',']','\n',
'"','T','e','s','t','V','a','l','u','e','3','"','=','"',0x3041,'V','a',
'l','u','e','"','\n',0};
WCHAR wide_test_r[] = {0xFEFF,'W','i','n','d','o','w','s',' ','R','e','g',
'i','s','t','r','y',' ','E','d','i','t','o','r',' ','V','e','r','s',
'i','o','n',' ','5','.','0','0','\r','\r',
'[','H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E',
'R','\\','S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
'r','e','g','e','d','i','t','_','t','e','s','t',']','\r',
'"','T','e','s','t','V','a','l','u','e','5','"','=','"',0x3041,'V','a',
'l','u','e','"','\r',0};
2010-07-30 21:02:34 +00:00
WCHAR wide_exp[] = {0x3041,'V','a','l','u','e',0};
LONG lr;
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
2010-07-30 21:02:34 +00:00
ok(lr == ERROR_SUCCESS || lr == ERROR_FILE_NOT_FOUND,
"RegDeleteKeyA failed: %d\n", lr);
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
2010-07-30 21:02:34 +00:00
"\"TestValue\"=\"AValue\"\n");
lr = RegOpenKeyExA(HKEY_CURRENT_USER, KEY_BASE, 0, KEY_READ, &hkey);
ok(lr == ERROR_SUCCESS, "RegOpenKeyExA failed: %d\n", lr);
verify_reg_sz(hkey, "TestValue", "AValue");
2010-07-30 21:02:34 +00:00
exec_import_str("REGEDIT4\r\n\r\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\r\n"
2010-07-30 21:02:34 +00:00
"\"TestValue2\"=\"BValue\"\r\n");
verify_reg_sz(hkey, "TestValue2", "BValue");
2010-07-30 21:02:34 +00:00
if (supports_wchar)
{
2010-07-30 21:02:34 +00:00
exec_import_wstr(wide_test);
verify_reg_wsz(hkey, "TestValue3", wide_exp);
exec_import_wstr(wide_test_r);
verify_reg_wsz(hkey, "TestValue5", wide_exp);
}
else
2010-07-30 21:02:34 +00:00
win_skip("Some WCHAR tests skipped\n");
exec_import_str("REGEDIT4\r\r"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\r"
"\"TestValue4\"=\"DValue\"\r");
verify_reg_sz(hkey, "TestValue4", "DValue");
2010-07-30 21:02:34 +00:00
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
2010-07-30 21:02:34 +00:00
"\"TestDword\"=dword:00000017\n");
verify_reg_dword(hkey, "TestDword", 0x17);
2010-07-30 21:02:34 +00:00
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
2010-07-30 21:02:34 +00:00
"\"TestBinary\"=hex:aa,bb,cc,11\n");
verify_reg_binary(hkey, "TestBinary", exp_binary, sizeof(exp_binary));
2010-07-30 21:02:34 +00:00
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"With=Equals\"=\"asdf\"\n");
verify_reg_sz(hkey, "With=Equals", "asdf");
RegCloseKey(hkey);
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
ok(lr == ERROR_SUCCESS, "RegDeleteKeyA failed: %d\n", lr);
}
static void test_invalid_import(void)
{
LONG lr;
HKEY hkey;
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
ok(lr == ERROR_SUCCESS || lr == ERROR_FILE_NOT_FOUND, "RegDeleteKeyA failed: %d\n", lr);
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"TestNoEndQuote\"=\"Asdffdsa\n");
lr = RegOpenKeyExA(HKEY_CURRENT_USER, KEY_BASE, 0, KEY_READ, &hkey);
ok(lr == ERROR_SUCCESS, "RegOpenKeyExA failed: %d\n", lr);
verify_reg_nonexist(hkey, "TestNoEndQuote");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"TestNoBeginQuote\"=Asdffdsa\"\n");
verify_reg_nonexist(hkey, "TestNoBeginQuote");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"TestNoQuotes\"=Asdffdsa\n");
verify_reg_nonexist(hkey, "TestNoQuotes");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"NameNoEndQuote=\"Asdffdsa\"\n");
verify_reg_nonexist(hkey, "NameNoEndQuote");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"NameNoBeginQuote\"=\"Asdffdsa\"\n");
verify_reg_nonexist(hkey, "NameNoBeginQuote");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"NameNoQuotes=\"Asdffdsa\"\n");
verify_reg_nonexist(hkey, "NameNoQuotes");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"MixedQuotes=Asdffdsa\"\n");
verify_reg_nonexist(hkey, "MixedQuotes");
verify_reg_nonexist(hkey, "MixedQuotes=Asdffdsa");
RegCloseKey(hkey);
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
2010-07-30 21:02:34 +00:00
ok(lr == ERROR_SUCCESS, "RegDeleteKeyA failed: %d\n", lr);
}
START_TEST(regedit)
{
WCHAR wchar_test[] = {0xFEFF,'W','i','n','d','o','w','s',' ','R','e','g',
'i','s','t','r','y',' ','E','d','i','t','o','r',' ','V','e','r','s',
'i','o','n',' ','5','.','0','0','\n','\n',0};
if(!exec_import_str("REGEDIT4\r\n\r\n")){
win_skip("regedit not available, skipping regedit tests\n");
return;
}
supports_wchar = exec_import_wstr(wchar_test);
test_basic_import();
test_invalid_import();
2010-07-30 21:02:34 +00:00
}