2002-07-10 05:30:14 +02:00
|
|
|
/*
|
|
|
|
* Unit tests for registry functions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2002 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-07-10 05:30:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2007-04-17 14:24:38 +02:00
|
|
|
#include <stdio.h>
|
2002-07-10 05:30:14 +02:00
|
|
|
#include "wine/test.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2002-09-17 02:04:35 +02:00
|
|
|
#include "winbase.h"
|
2002-07-10 05:30:14 +02:00
|
|
|
#include "winreg.h"
|
2005-09-15 11:31:05 +02:00
|
|
|
#include "winsvc.h"
|
2002-07-10 05:30:14 +02:00
|
|
|
#include "winerror.h"
|
|
|
|
|
|
|
|
static HKEY hkey_main;
|
2006-06-09 22:46:56 +02:00
|
|
|
static DWORD GLE;
|
2002-07-10 05:30:14 +02:00
|
|
|
|
2004-11-19 19:13:30 +01:00
|
|
|
static const char * sTestpath1 = "%LONGSYSTEMVAR%\\subdir1";
|
|
|
|
static const char * sTestpath2 = "%FOO%\\subdir1";
|
|
|
|
|
2007-03-11 19:42:35 +01:00
|
|
|
static HMODULE hadvapi32;
|
|
|
|
static DWORD (WINAPI *pRegGetValueA)(HKEY,LPCSTR,LPCSTR,DWORD,LPDWORD,PVOID,LPDWORD);
|
2007-04-04 23:03:00 +02:00
|
|
|
static DWORD (WINAPI *pRegDeleteTreeA)(HKEY,LPCSTR);
|
2007-03-11 19:42:35 +01:00
|
|
|
|
2007-04-17 14:24:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Debugging functions from wine/libs/wine/debug.c */
|
|
|
|
|
|
|
|
/* allocate some tmp string space */
|
|
|
|
/* FIXME: this is not 100% thread-safe */
|
|
|
|
static char *get_temp_buffer( int size )
|
|
|
|
{
|
|
|
|
static char *list[32];
|
|
|
|
static long pos;
|
|
|
|
char *ret;
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
idx = ++pos % (sizeof(list)/sizeof(list[0]));
|
|
|
|
if ((ret = realloc( list[idx], size ))) list[idx] = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *wine_debugstr_an( const char *str, int n )
|
|
|
|
{
|
|
|
|
static const char hex[16] = "0123456789abcdef";
|
|
|
|
char *dst, *res;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
if (!((ULONG_PTR)str >> 16))
|
|
|
|
{
|
|
|
|
if (!str) return "(null)";
|
|
|
|
res = get_temp_buffer( 6 );
|
|
|
|
sprintf( res, "#%04x", LOWORD(str) );
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
if (n == -1) n = strlen(str);
|
|
|
|
if (n < 0) n = 0;
|
|
|
|
size = 10 + min( 300, n * 4 );
|
|
|
|
dst = res = get_temp_buffer( size );
|
|
|
|
*dst++ = '"';
|
|
|
|
while (n-- > 0 && dst <= res + size - 9)
|
|
|
|
{
|
|
|
|
unsigned char c = *str++;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '\n': *dst++ = '\\'; *dst++ = 'n'; break;
|
|
|
|
case '\r': *dst++ = '\\'; *dst++ = 'r'; break;
|
|
|
|
case '\t': *dst++ = '\\'; *dst++ = 't'; break;
|
|
|
|
case '"': *dst++ = '\\'; *dst++ = '"'; break;
|
|
|
|
case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
|
|
|
|
default:
|
|
|
|
if (c >= ' ' && c <= 126)
|
|
|
|
*dst++ = c;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*dst++ = '\\';
|
|
|
|
*dst++ = 'x';
|
|
|
|
*dst++ = hex[(c >> 4) & 0x0f];
|
|
|
|
*dst++ = hex[c & 0x0f];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*dst++ = '"';
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
*dst++ = '.';
|
|
|
|
*dst++ = '.';
|
|
|
|
*dst++ = '.';
|
|
|
|
}
|
|
|
|
*dst++ = 0;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *wine_debugstr_wn( const WCHAR *str, int n )
|
|
|
|
{
|
|
|
|
char *dst, *res;
|
2007-11-11 15:33:03 +01:00
|
|
|
size_t size;
|
2007-04-17 14:24:38 +02:00
|
|
|
|
|
|
|
if (!HIWORD(str))
|
|
|
|
{
|
|
|
|
if (!str) return "(null)";
|
|
|
|
res = get_temp_buffer( 6 );
|
|
|
|
sprintf( res, "#%04x", LOWORD(str) );
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
if (n == -1) n = lstrlenW(str);
|
|
|
|
if (n < 0) n = 0;
|
2007-11-11 15:33:03 +01:00
|
|
|
size = 12 + min( 300, n * 5);
|
2007-04-17 14:24:38 +02:00
|
|
|
dst = res = get_temp_buffer( n * 5 + 7 );
|
|
|
|
*dst++ = 'L';
|
|
|
|
*dst++ = '"';
|
2007-11-11 15:33:03 +01:00
|
|
|
while (n-- > 0 && dst <= res + size - 10)
|
2007-04-17 14:24:38 +02:00
|
|
|
{
|
|
|
|
WCHAR c = *str++;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '\n': *dst++ = '\\'; *dst++ = 'n'; break;
|
|
|
|
case '\r': *dst++ = '\\'; *dst++ = 'r'; break;
|
|
|
|
case '\t': *dst++ = '\\'; *dst++ = 't'; break;
|
|
|
|
case '"': *dst++ = '\\'; *dst++ = '"'; break;
|
|
|
|
case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
|
|
|
|
default:
|
|
|
|
if (c >= ' ' && c <= 126)
|
|
|
|
*dst++ = (char)c;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*dst++ = '\\';
|
|
|
|
sprintf(dst,"%04x",c);
|
|
|
|
dst+=4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*dst++ = '"';
|
2007-11-11 15:33:03 +01:00
|
|
|
if (n > 0)
|
2007-04-17 14:24:38 +02:00
|
|
|
{
|
|
|
|
*dst++ = '.';
|
|
|
|
*dst++ = '.';
|
|
|
|
*dst++ = '.';
|
|
|
|
}
|
|
|
|
*dst = 0;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-11 19:42:35 +01:00
|
|
|
#define ADVAPI32_GET_PROC(func) \
|
2008-07-29 23:58:04 +02:00
|
|
|
p ## func = (void*)GetProcAddress(hadvapi32, #func);
|
|
|
|
|
2007-03-11 19:42:35 +01:00
|
|
|
|
|
|
|
static void InitFunctionPtrs(void)
|
|
|
|
{
|
|
|
|
hadvapi32 = GetModuleHandleA("advapi32.dll");
|
|
|
|
|
|
|
|
/* This function was introduced with Windows 2003 SP1 */
|
|
|
|
ADVAPI32_GET_PROC(RegGetValueA)
|
2007-04-04 23:03:00 +02:00
|
|
|
ADVAPI32_GET_PROC(RegDeleteTreeA)
|
2007-03-11 19:42:35 +01:00
|
|
|
}
|
|
|
|
|
2002-07-10 05:30:14 +02:00
|
|
|
/* delete key and all its subkeys */
|
|
|
|
static DWORD delete_key( HKEY hkey )
|
|
|
|
{
|
2003-01-13 19:29:31 +01:00
|
|
|
char name[MAX_PATH];
|
2002-07-10 05:30:14 +02:00
|
|
|
DWORD ret;
|
|
|
|
|
2003-01-13 19:29:31 +01:00
|
|
|
while (!(ret = RegEnumKeyA(hkey, 0, name, sizeof(name))))
|
2002-07-10 05:30:14 +02:00
|
|
|
{
|
2002-09-12 22:46:06 +02:00
|
|
|
HKEY tmp;
|
2003-01-13 19:29:31 +01:00
|
|
|
if (!(ret = RegOpenKeyExA( hkey, name, 0, KEY_ENUMERATE_SUB_KEYS, &tmp )))
|
2002-09-12 22:46:06 +02:00
|
|
|
{
|
|
|
|
ret = delete_key( tmp );
|
|
|
|
RegCloseKey( tmp );
|
|
|
|
}
|
|
|
|
if (ret) break;
|
2002-07-10 05:30:14 +02:00
|
|
|
}
|
|
|
|
if (ret != ERROR_NO_MORE_ITEMS) return ret;
|
2005-04-13 16:40:58 +02:00
|
|
|
RegDeleteKeyA( hkey, "" );
|
2002-07-10 05:30:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setup_main_key(void)
|
|
|
|
{
|
2007-04-27 23:37:04 +02:00
|
|
|
if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main )) delete_key( hkey_main );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
2005-01-27 12:15:00 +01:00
|
|
|
assert (!RegCreateKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main ));
|
2002-07-10 05:30:14 +02:00
|
|
|
}
|
|
|
|
|
2008-11-20 20:47:43 +01:00
|
|
|
#define lok ok_(__FILE__, line)
|
|
|
|
#define test_hkey_main_Value_A(name, string, full_byte_len) _test_hkey_main_Value_A(__LINE__, name, string, full_byte_len)
|
|
|
|
static void _test_hkey_main_Value_A(int line, LPCSTR name, LPCSTR string,
|
2007-04-13 23:11:21 +02:00
|
|
|
DWORD full_byte_len)
|
2006-06-09 22:46:56 +02:00
|
|
|
{
|
|
|
|
DWORD ret, type, cbData;
|
2007-04-13 23:11:21 +02:00
|
|
|
DWORD str_byte_len;
|
2008-11-20 20:46:34 +01:00
|
|
|
BYTE* value;
|
2007-04-13 23:11:21 +02:00
|
|
|
|
|
|
|
type=0xdeadbeef;
|
|
|
|
cbData=0xdeadbeef;
|
|
|
|
/* When successful RegQueryValueExA() leaves GLE as is,
|
|
|
|
* so we must reset it to detect unimplemented functions.
|
|
|
|
*/
|
|
|
|
SetLastError(0xdeadbeef);
|
2006-06-09 22:46:56 +02:00
|
|
|
ret = RegQueryValueExA(hkey_main, name, NULL, &type, NULL, &cbData);
|
|
|
|
GLE = GetLastError();
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(ret == ERROR_SUCCESS, "RegQueryValueExA/1 failed: %d, GLE=%d\n", ret, GLE);
|
2007-04-13 23:11:21 +02:00
|
|
|
/* It is wrong for the Ansi version to not be implemented */
|
|
|
|
ok(GLE == 0xdeadbeef, "RegQueryValueExA set GLE = %u\n", GLE);
|
2006-06-09 22:46:56 +02:00
|
|
|
if(GLE == ERROR_CALL_NOT_IMPLEMENTED) return;
|
|
|
|
|
2007-04-13 23:11:21 +02:00
|
|
|
str_byte_len = (string ? lstrlenA(string) : 0) + 1;
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(type == REG_SZ, "RegQueryValueExA/1 returned type %d\n", type);
|
|
|
|
lok(cbData == full_byte_len || cbData == str_byte_len /* Win9x */,
|
2006-10-04 12:37:30 +02:00
|
|
|
"cbData=%d instead of %d or %d\n", cbData, full_byte_len, str_byte_len);
|
2007-04-13 23:11:21 +02:00
|
|
|
|
2008-11-20 20:46:34 +01:00
|
|
|
value = HeapAlloc(GetProcessHeap(), 0, cbData+1);
|
|
|
|
memset(value, 0xbd, cbData+1);
|
2007-04-13 23:11:21 +02:00
|
|
|
type=0xdeadbeef;
|
2008-11-20 20:46:34 +01:00
|
|
|
ret = RegQueryValueExA(hkey_main, name, NULL, &type, value, &cbData);
|
2007-04-13 23:11:21 +02:00
|
|
|
GLE = GetLastError();
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(ret == ERROR_SUCCESS, "RegQueryValueExA/2 failed: %d, GLE=%d\n", ret, GLE);
|
2007-04-13 23:11:21 +02:00
|
|
|
if (!string)
|
|
|
|
{
|
|
|
|
/* When cbData == 0, RegQueryValueExA() should not modify the buffer */
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(*value == 0xbd || (cbData == 1 && *value == '\0') /* Win9x */,
|
2008-11-20 20:46:34 +01:00
|
|
|
"RegQueryValueExA overflowed: cbData=%u *value=%02x\n", cbData, *value);
|
2007-04-13 23:11:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(memcmp(value, string, cbData) == 0, "RegQueryValueExA/2 failed: %s/%d != %s/%d\n",
|
2008-11-20 20:46:34 +01:00
|
|
|
wine_debugstr_an((char*)value, cbData), cbData,
|
2007-04-17 14:24:38 +02:00
|
|
|
wine_debugstr_an(string, full_byte_len), full_byte_len);
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(*(value+cbData) == 0xbd, "RegQueryValueExA/2 overflowed at offset %u: %02x != bd\n", cbData, *(value+cbData));
|
2007-04-13 23:11:21 +02:00
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, value);
|
2006-06-09 22:46:56 +02:00
|
|
|
}
|
|
|
|
|
2008-11-20 20:47:43 +01:00
|
|
|
#define test_hkey_main_Value_W(name, string, full_byte_len) _test_hkey_main_Value_W(__LINE__, name, string, full_byte_len)
|
|
|
|
static void _test_hkey_main_Value_W(int line, LPCWSTR name, LPCWSTR string,
|
2007-04-13 23:11:21 +02:00
|
|
|
DWORD full_byte_len)
|
2006-06-09 22:46:56 +02:00
|
|
|
{
|
|
|
|
DWORD ret, type, cbData;
|
2008-11-20 20:46:34 +01:00
|
|
|
BYTE* value;
|
2007-04-13 23:11:21 +02:00
|
|
|
|
|
|
|
type=0xdeadbeef;
|
|
|
|
cbData=0xdeadbeef;
|
|
|
|
/* When successful RegQueryValueExW() leaves GLE as is,
|
|
|
|
* so we must reset it to detect unimplemented functions.
|
|
|
|
*/
|
|
|
|
SetLastError(0xdeadbeef);
|
2006-06-09 22:46:56 +02:00
|
|
|
ret = RegQueryValueExW(hkey_main, name, NULL, &type, NULL, &cbData);
|
|
|
|
GLE = GetLastError();
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(ret == ERROR_SUCCESS, "RegQueryValueExW/1 failed: %d, GLE=%d\n", ret, GLE);
|
2008-06-10 18:30:15 +02:00
|
|
|
if(GLE == ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
{
|
|
|
|
win_skip("RegQueryValueExW() is not implemented\n");
|
|
|
|
return;
|
|
|
|
}
|
2006-06-09 22:46:56 +02:00
|
|
|
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(type == REG_SZ, "RegQueryValueExW/1 returned type %d\n", type);
|
|
|
|
lok(cbData == full_byte_len,
|
2007-04-13 23:11:21 +02:00
|
|
|
"cbData=%d instead of %d\n", cbData, full_byte_len);
|
|
|
|
|
2008-11-20 20:46:34 +01:00
|
|
|
/* Give enough space to overflow by one WCHAR */
|
|
|
|
value = HeapAlloc(GetProcessHeap(), 0, cbData+2);
|
|
|
|
memset(value, 0xbd, cbData+2);
|
2007-04-13 23:11:21 +02:00
|
|
|
type=0xdeadbeef;
|
2008-11-20 20:46:34 +01:00
|
|
|
ret = RegQueryValueExW(hkey_main, name, NULL, &type, value, &cbData);
|
2007-04-13 23:11:21 +02:00
|
|
|
GLE = GetLastError();
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(ret == ERROR_SUCCESS, "RegQueryValueExW/2 failed: %d, GLE=%d\n", ret, GLE);
|
2008-11-20 20:46:34 +01:00
|
|
|
if (string)
|
2007-04-13 23:11:21 +02:00
|
|
|
{
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(memcmp(value, string, cbData) == 0, "RegQueryValueExW failed: %s/%d != %s/%d\n",
|
2008-11-20 20:46:34 +01:00
|
|
|
wine_debugstr_wn((WCHAR*)value, cbData / sizeof(WCHAR)), cbData,
|
|
|
|
wine_debugstr_wn(string, full_byte_len / sizeof(WCHAR)), full_byte_len);
|
2007-04-13 23:11:21 +02:00
|
|
|
}
|
2008-11-20 20:46:34 +01:00
|
|
|
/* This implies that when cbData == 0, RegQueryValueExW() should not modify the buffer */
|
2008-11-20 20:47:43 +01:00
|
|
|
lok(*(value+cbData) == 0xbd, "RegQueryValueExW/2 overflowed at %u: %02x != bd\n", cbData, *(value+cbData));
|
|
|
|
lok(*(value+cbData+1) == 0xbd, "RegQueryValueExW/2 overflowed at %u+1: %02x != bd\n", cbData, *(value+cbData+1));
|
2007-04-13 23:11:21 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, value);
|
2006-06-09 22:46:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_set_value(void)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-08-26 22:48:14 +02:00
|
|
|
static const WCHAR name1W[] = {'C','l','e','a','n','S','i','n','g','l','e','S','t','r','i','n','g', 0};
|
|
|
|
static const WCHAR name2W[] = {'S','o','m','e','I','n','t','r','a','Z','e','r','o','e','d','S','t','r','i','n','g', 0};
|
2007-04-13 23:11:21 +02:00
|
|
|
static const WCHAR emptyW[] = {0};
|
2006-08-26 22:48:14 +02:00
|
|
|
static const WCHAR string1W[] = {'T','h','i','s','N','e','v','e','r','B','r','e','a','k','s', 0};
|
2007-04-17 14:24:38 +02:00
|
|
|
static const WCHAR string2W[] = {'T','h','i','s', 0 ,'B','r','e','a','k','s', 0 , 0 ,'A', 0 , 0 , 0 , 'L','o','t', 0 , 0 , 0 , 0, 0};
|
2008-02-16 16:36:00 +01:00
|
|
|
static const WCHAR substring2W[] = {'T','h','i','s',0};
|
2006-06-09 22:46:56 +02:00
|
|
|
|
2006-08-26 22:48:14 +02:00
|
|
|
static const char name1A[] = "CleanSingleString";
|
|
|
|
static const char name2A[] = "SomeIntraZeroedString";
|
2007-04-13 23:11:21 +02:00
|
|
|
static const char emptyA[] = "";
|
2006-08-26 22:48:14 +02:00
|
|
|
static const char string1A[] = "ThisNeverBreaks";
|
|
|
|
static const char string2A[] = "This\0Breaks\0\0A\0\0\0Lot\0\0\0\0";
|
2008-02-16 16:36:00 +01:00
|
|
|
static const char substring2A[] = "This";
|
|
|
|
|
2008-02-25 15:41:18 +01:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
/* Crashes on NT4, Windows 2000 and XP SP1 */
|
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_SZ, NULL, 0);
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "RegSetValueA should have failed with ERROR_INVALID_PARAMETER instead of %d\n", ret);
|
|
|
|
}
|
2008-02-16 16:36:00 +01:00
|
|
|
|
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_SZ, string1A, sizeof(string1A));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(NULL, string1W, sizeof(string1W));
|
|
|
|
|
|
|
|
/* RegSetValueA ignores the size passed in */
|
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_SZ, string1A, 4);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(NULL, string1W, sizeof(string1W));
|
|
|
|
|
|
|
|
/* stops at first null */
|
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_SZ, string2A, sizeof(string2A));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, substring2A, sizeof(substring2A));
|
|
|
|
test_hkey_main_Value_W(NULL, substring2W, sizeof(substring2W));
|
|
|
|
|
2008-07-29 23:58:04 +02:00
|
|
|
/* only REG_SZ is supported on NT*/
|
2008-02-16 16:36:00 +01:00
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_BINARY, string2A, sizeof(string2A));
|
2008-07-29 23:58:04 +02:00
|
|
|
/* NT: ERROR_INVALID_PARAMETER, 9x: ERROR_SUCCESS */
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER || broken(ret == ERROR_SUCCESS),
|
|
|
|
"got %d (expected ERROR_INVALID_PARAMETER or ERROR_SUCCESS)\n", ret);
|
|
|
|
|
2008-02-16 16:36:00 +01:00
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_EXPAND_SZ, string2A, sizeof(string2A));
|
2008-07-29 23:58:04 +02:00
|
|
|
/* NT: ERROR_INVALID_PARAMETER, 9x: ERROR_SUCCESS */
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER || broken(ret == ERROR_SUCCESS),
|
|
|
|
"got %d (expected ERROR_INVALID_PARAMETER or ERROR_SUCCESS)\n", ret);
|
|
|
|
|
2008-02-16 16:36:00 +01:00
|
|
|
ret = RegSetValueA(hkey_main, NULL, REG_MULTI_SZ, string2A, sizeof(string2A));
|
2008-07-29 23:58:04 +02:00
|
|
|
/* NT: ERROR_INVALID_PARAMETER, 9x: ERROR_SUCCESS */
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER || broken(ret == ERROR_SUCCESS),
|
|
|
|
"got %d (expected ERROR_INVALID_PARAMETER or ERROR_SUCCESS)\n", ret);
|
2006-06-09 22:46:56 +02:00
|
|
|
|
2007-04-13 23:11:21 +02:00
|
|
|
/* Test RegSetValueExA with a 'zero-byte' string (as Office 2003 does).
|
|
|
|
* Surprisingly enough we're supposed to get zero bytes out of it.
|
|
|
|
*/
|
|
|
|
ret = RegSetValueExA(hkey_main, name1A, 0, REG_SZ, (const BYTE *)emptyA, 0);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(name1A, NULL, 0);
|
|
|
|
test_hkey_main_Value_W(name1W, NULL, 0);
|
|
|
|
|
|
|
|
/* test RegSetValueExA with an empty string */
|
|
|
|
ret = RegSetValueExA(hkey_main, name1A, 0, REG_SZ, (const BYTE *)emptyA, sizeof(emptyA));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(name1A, emptyA, sizeof(emptyA));
|
|
|
|
test_hkey_main_Value_W(name1W, emptyW, sizeof(emptyW));
|
|
|
|
|
2008-02-16 16:36:18 +01:00
|
|
|
/* test RegSetValueExA with off-by-one size */
|
|
|
|
ret = RegSetValueExA(hkey_main, name1A, 0, REG_SZ, (const BYTE *)string1A, sizeof(string1A)-sizeof(string1A[0]));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(name1A, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(name1W, string1W, sizeof(string1W));
|
|
|
|
|
2006-06-09 22:46:56 +02:00
|
|
|
/* test RegSetValueExA with normal string */
|
2006-08-26 22:48:14 +02:00
|
|
|
ret = RegSetValueExA(hkey_main, name1A, 0, REG_SZ, (const BYTE *)string1A, sizeof(string1A));
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());
|
2007-04-13 23:11:21 +02:00
|
|
|
test_hkey_main_Value_A(name1A, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(name1W, string1W, sizeof(string1W));
|
2006-06-09 22:46:56 +02:00
|
|
|
|
|
|
|
/* test RegSetValueExA with intrazeroed string */
|
2006-08-26 22:48:14 +02:00
|
|
|
ret = RegSetValueExA(hkey_main, name2A, 0, REG_SZ, (const BYTE *)string2A, sizeof(string2A));
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());
|
2007-04-13 23:11:21 +02:00
|
|
|
test_hkey_main_Value_A(name2A, string2A, sizeof(string2A));
|
|
|
|
test_hkey_main_Value_W(name2W, string2W, sizeof(string2W));
|
2006-06-09 22:46:56 +02:00
|
|
|
|
|
|
|
/* 9x doesn't support W-calls, so don't test them then */
|
|
|
|
if(GLE == ERROR_CALL_NOT_IMPLEMENTED) return;
|
|
|
|
|
2008-02-25 15:41:18 +01:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
/* Crashes on NT4, Windows 2000 and XP SP1 */
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_SZ, NULL, 0);
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "RegSetValueW should have failed with ERROR_INVALID_PARAMETER instead of %d\n", ret);
|
|
|
|
}
|
2008-02-16 16:36:00 +01:00
|
|
|
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_SZ, string1W, sizeof(string1W));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueW failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(NULL, string1W, sizeof(string1W));
|
|
|
|
|
|
|
|
/* RegSetValueA ignores the size passed in */
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_SZ, string1W, 4 * sizeof(string1W[0]));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueW failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(NULL, string1W, sizeof(string1W));
|
|
|
|
|
|
|
|
/* stops at first null */
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_SZ, string2W, sizeof(string2W));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueW failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(NULL, substring2A, sizeof(substring2A));
|
|
|
|
test_hkey_main_Value_W(NULL, substring2W, sizeof(substring2W));
|
|
|
|
|
|
|
|
/* only REG_SZ is supported */
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_BINARY, string2W, sizeof(string2W));
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "RegSetValueW should have returned ERROR_INVALID_PARAMETER instead of %d\n", ret);
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_EXPAND_SZ, string2W, sizeof(string2W));
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "RegSetValueW should have returned ERROR_INVALID_PARAMETER instead of %d\n", ret);
|
|
|
|
ret = RegSetValueW(hkey_main, NULL, REG_MULTI_SZ, string2W, sizeof(string2W));
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "RegSetValueW should have returned ERROR_INVALID_PARAMETER instead of %d\n", ret);
|
|
|
|
|
2008-02-16 16:36:18 +01:00
|
|
|
/* test RegSetValueExW with off-by-one size */
|
|
|
|
ret = RegSetValueExW(hkey_main, name1W, 0, REG_SZ, (const BYTE *)string1W, sizeof(string1W)-sizeof(string1W[0]));
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExW failed: %d, GLE=%d\n", ret, GetLastError());
|
|
|
|
test_hkey_main_Value_A(name1A, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(name1W, string1W, sizeof(string1W));
|
|
|
|
|
2006-06-09 22:46:56 +02:00
|
|
|
/* test RegSetValueExW with normal string */
|
2006-08-26 22:48:14 +02:00
|
|
|
ret = RegSetValueExW(hkey_main, name1W, 0, REG_SZ, (const BYTE *)string1W, sizeof(string1W));
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExW failed: %d, GLE=%d\n", ret, GetLastError());
|
2007-04-13 23:11:21 +02:00
|
|
|
test_hkey_main_Value_A(name1A, string1A, sizeof(string1A));
|
|
|
|
test_hkey_main_Value_W(name1W, string1W, sizeof(string1W));
|
2006-06-09 22:46:56 +02:00
|
|
|
|
|
|
|
/* test RegSetValueExW with intrazeroed string */
|
2006-08-26 22:48:14 +02:00
|
|
|
ret = RegSetValueExW(hkey_main, name2W, 0, REG_SZ, (const BYTE *)string2W, sizeof(string2W));
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExW failed: %d, GLE=%d\n", ret, GetLastError());
|
2007-04-13 23:11:21 +02:00
|
|
|
test_hkey_main_Value_A(name2A, string2A, sizeof(string2A));
|
|
|
|
test_hkey_main_Value_W(name2W, string2W, sizeof(string2W));
|
2006-06-09 22:46:56 +02:00
|
|
|
}
|
|
|
|
|
2004-11-19 19:13:30 +01:00
|
|
|
static void create_test_entries(void)
|
|
|
|
{
|
2006-08-26 22:48:14 +02:00
|
|
|
static const DWORD qw[2] = { 0x12345678, 0x87654321 };
|
2005-07-03 13:19:03 +02:00
|
|
|
|
2004-11-19 19:13:30 +01:00
|
|
|
SetEnvironmentVariableA("LONGSYSTEMVAR", "bar");
|
|
|
|
SetEnvironmentVariableA("FOO", "ImARatherLongButIndeedNeededString");
|
|
|
|
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"TP1_EXP_SZ",0,REG_EXPAND_SZ, (const BYTE *)sTestpath1, strlen(sTestpath1)+1),
|
2004-11-19 19:13:30 +01:00
|
|
|
"RegSetValueExA failed\n");
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"TP1_SZ",0,REG_SZ, (const BYTE *)sTestpath1, strlen(sTestpath1)+1),
|
2004-11-19 19:13:30 +01:00
|
|
|
"RegSetValueExA failed\n");
|
2008-07-02 06:23:51 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"TP1_ZB_SZ",0,REG_SZ, (const BYTE *)"", 0),
|
2008-02-19 00:21:09 +01:00
|
|
|
"RegSetValueExA failed\n");
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"TP2_EXP_SZ",0,REG_EXPAND_SZ, (const BYTE *)sTestpath2, strlen(sTestpath2)+1),
|
2004-11-19 19:13:30 +01:00
|
|
|
"RegSetValueExA failed\n");
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"DWORD",0,REG_DWORD, (const BYTE *)qw, 4),
|
2005-07-03 13:19:03 +02:00
|
|
|
"RegSetValueExA failed\n");
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"BIN32",0,REG_BINARY, (const BYTE *)qw, 4),
|
2005-07-03 13:19:03 +02:00
|
|
|
"RegSetValueExA failed\n");
|
2006-08-26 22:48:14 +02:00
|
|
|
ok(!RegSetValueExA(hkey_main,"BIN64",0,REG_BINARY, (const BYTE *)qw, 8),
|
2005-07-03 13:19:03 +02:00
|
|
|
"RegSetValueExA failed\n");
|
2004-11-19 19:13:30 +01:00
|
|
|
}
|
|
|
|
|
2002-07-10 05:30:14 +02:00
|
|
|
static void test_enum_value(void)
|
|
|
|
{
|
|
|
|
DWORD res;
|
2005-04-11 14:52:32 +02:00
|
|
|
HKEY test_key;
|
2002-07-10 05:30:14 +02:00
|
|
|
char value[20], data[20];
|
|
|
|
WCHAR valueW[20], dataW[20];
|
|
|
|
DWORD val_count, data_count, type;
|
|
|
|
static const WCHAR foobarW[] = {'f','o','o','b','a','r',0};
|
|
|
|
static const WCHAR testW[] = {'T','e','s','t',0};
|
|
|
|
static const WCHAR xxxW[] = {'x','x','x','x','x','x','x','x',0};
|
|
|
|
|
2005-04-11 14:52:32 +02:00
|
|
|
/* create the working key for new 'Test' value */
|
|
|
|
res = RegCreateKeyA( hkey_main, "TestKey", &test_key );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", res);
|
2005-04-11 14:52:32 +02:00
|
|
|
|
2004-07-24 04:32:50 +02:00
|
|
|
/* check NULL data with zero length */
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegSetValueExA( test_key, "Test", 0, REG_SZ, NULL, 0 );
|
2004-07-24 04:32:50 +02:00
|
|
|
if (GetVersion() & 0x80000000)
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_INVALID_PARAMETER, "RegSetValueExA returned %d\n", res );
|
2004-07-24 04:32:50 +02:00
|
|
|
else
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( !res, "RegSetValueExA returned %d\n", res );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegSetValueExA( test_key, "Test", 0, REG_EXPAND_SZ, NULL, 0 );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( ERROR_SUCCESS == res || ERROR_INVALID_PARAMETER == res, "RegSetValueExA returned %d\n", res );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegSetValueExA( test_key, "Test", 0, REG_BINARY, NULL, 0 );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( ERROR_SUCCESS == res || ERROR_INVALID_PARAMETER == res, "RegSetValueExA returned %d\n", res );
|
2004-07-24 04:32:50 +02:00
|
|
|
|
2006-08-26 22:48:14 +02:00
|
|
|
res = RegSetValueExA( test_key, "Test", 0, REG_SZ, (const BYTE *)"foobar", 7 );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == 0, "RegSetValueExA failed error %d\n", res );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow both name and data */
|
|
|
|
val_count = 2;
|
|
|
|
data_count = 2;
|
|
|
|
type = 1234;
|
|
|
|
strcpy( value, "xxxxxxxxxx" );
|
|
|
|
strcpy( data, "xxxxxxxxxx" );
|
2005-07-06 21:08:05 +02:00
|
|
|
res = RegEnumValueA( test_key, 0, value, &val_count, NULL, &type, (LPBYTE)data, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 2, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7, "data_count set to %d instead of 7\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'\n", value );
|
|
|
|
ok( !strcmp( data, "xxxxxxxxxx" ), "data set to '%s'\n", data );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow name */
|
|
|
|
val_count = 3;
|
|
|
|
data_count = 20;
|
|
|
|
type = 1234;
|
|
|
|
strcpy( value, "xxxxxxxxxx" );
|
|
|
|
strcpy( data, "xxxxxxxxxx" );
|
2005-07-06 21:08:05 +02:00
|
|
|
res = RegEnumValueA( test_key, 0, value, &val_count, NULL, &type, (LPBYTE)data, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
2003-01-13 19:29:31 +01:00
|
|
|
/* Win9x returns 2 as specified by MSDN but NT returns 3... */
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( val_count == 2 || val_count == 3, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7, "data_count set to %d instead of 7\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2008-01-17 00:04:38 +01:00
|
|
|
/* v5.1.2600.0 (XP Home and Professional) does not touch value or data in this case */
|
2006-06-02 20:55:08 +02:00
|
|
|
ok( !strcmp( value, "Te" ) || !strcmp( value, "xxxxxxxxxx" ),
|
|
|
|
"value set to '%s' instead of 'Te' or 'xxxxxxxxxx'\n", value );
|
|
|
|
ok( !strcmp( data, "foobar" ) || !strcmp( data, "xxxxxxx" ),
|
|
|
|
"data set to '%s' instead of 'foobar' or 'xxxxxxx'\n", data );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow empty name */
|
|
|
|
val_count = 0;
|
|
|
|
data_count = 20;
|
|
|
|
type = 1234;
|
|
|
|
strcpy( value, "xxxxxxxxxx" );
|
|
|
|
strcpy( data, "xxxxxxxxxx" );
|
2005-07-06 21:08:05 +02:00
|
|
|
res = RegEnumValueA( test_key, 0, value, &val_count, NULL, &type, (LPBYTE)data, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 0, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7, "data_count set to %d instead of 7\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'\n", value );
|
2006-06-02 20:55:08 +02:00
|
|
|
/* v5.1.2600.0 (XP Home and Professional) does not touch data in this case */
|
|
|
|
ok( !strcmp( data, "foobar" ) || !strcmp( data, "xxxxxxx" ),
|
|
|
|
"data set to '%s' instead of 'foobar' or 'xxxxxxx'\n", data );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow data */
|
|
|
|
val_count = 20;
|
|
|
|
data_count = 2;
|
|
|
|
type = 1234;
|
|
|
|
strcpy( value, "xxxxxxxxxx" );
|
|
|
|
strcpy( data, "xxxxxxxxxx" );
|
2005-07-06 21:08:05 +02:00
|
|
|
res = RegEnumValueA( test_key, 0, value, &val_count, NULL, &type, (LPBYTE)data, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 20, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7, "data_count set to %d instead of 7\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'\n", value );
|
|
|
|
ok( !strcmp( data, "xxxxxxxxxx" ), "data set to '%s'\n", data );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* no overflow */
|
|
|
|
val_count = 20;
|
|
|
|
data_count = 20;
|
|
|
|
type = 1234;
|
|
|
|
strcpy( value, "xxxxxxxxxx" );
|
|
|
|
strcpy( data, "xxxxxxxxxx" );
|
2005-07-06 21:08:05 +02:00
|
|
|
res = RegEnumValueA( test_key, 0, value, &val_count, NULL, &type, (LPBYTE)data, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", res );
|
|
|
|
ok( val_count == 4, "val_count set to %d instead of 4\n", val_count );
|
|
|
|
ok( data_count == 7, "data_count set to %d instead of 7\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !strcmp( value, "Test" ), "value is '%s' instead of Test\n", value );
|
|
|
|
ok( !strcmp( data, "foobar" ), "data is '%s' instead of foobar\n", data );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* Unicode tests */
|
|
|
|
|
2007-03-31 13:01:24 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegSetValueExW( test_key, testW, 0, REG_SZ, (const BYTE *)foobarW, 7*sizeof(WCHAR) );
|
2003-01-13 19:29:31 +01:00
|
|
|
if (res==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
|
2007-03-31 13:01:24 +02:00
|
|
|
{
|
2008-06-10 18:30:15 +02:00
|
|
|
win_skip("RegSetValueExW is not implemented\n");
|
2007-03-31 13:01:24 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == 0, "RegSetValueExW failed error %d\n", res );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow both name and data */
|
|
|
|
val_count = 2;
|
|
|
|
data_count = 2;
|
|
|
|
type = 1234;
|
|
|
|
memcpy( valueW, xxxW, sizeof(xxxW) );
|
|
|
|
memcpy( dataW, xxxW, sizeof(xxxW) );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegEnumValueW( test_key, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 2, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7*sizeof(WCHAR), "data_count set to %d instead of 7*sizeof(WCHAR)\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !memcmp( valueW, xxxW, sizeof(xxxW) ), "value modified\n" );
|
|
|
|
ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified\n" );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow name */
|
|
|
|
val_count = 3;
|
|
|
|
data_count = 20;
|
|
|
|
type = 1234;
|
|
|
|
memcpy( valueW, xxxW, sizeof(xxxW) );
|
|
|
|
memcpy( dataW, xxxW, sizeof(xxxW) );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegEnumValueW( test_key, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 3, "val_count set to %d\n", val_count );
|
|
|
|
ok( data_count == 7*sizeof(WCHAR), "data_count set to %d instead of 7*sizeof(WCHAR)\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !memcmp( valueW, xxxW, sizeof(xxxW) ), "value modified\n" );
|
|
|
|
ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified\n" );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* overflow data */
|
|
|
|
val_count = 20;
|
|
|
|
data_count = 2;
|
|
|
|
type = 1234;
|
|
|
|
memcpy( valueW, xxxW, sizeof(xxxW) );
|
|
|
|
memcpy( dataW, xxxW, sizeof(xxxW) );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegEnumValueW( test_key, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %d\n", res );
|
|
|
|
ok( val_count == 4, "val_count set to %d instead of 4\n", val_count );
|
|
|
|
ok( data_count == 7*sizeof(WCHAR), "data_count set to %d instead of 7*sizeof(WCHAR)\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !memcmp( valueW, testW, sizeof(testW) ), "value is not 'Test'\n" );
|
|
|
|
ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified\n" );
|
2002-07-10 05:30:14 +02:00
|
|
|
|
|
|
|
/* no overflow */
|
|
|
|
val_count = 20;
|
|
|
|
data_count = 20;
|
|
|
|
type = 1234;
|
|
|
|
memcpy( valueW, xxxW, sizeof(xxxW) );
|
|
|
|
memcpy( dataW, xxxW, sizeof(xxxW) );
|
2005-04-11 14:52:32 +02:00
|
|
|
res = RegEnumValueW( test_key, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( res == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", res );
|
|
|
|
ok( val_count == 4, "val_count set to %d instead of 4\n", val_count );
|
|
|
|
ok( data_count == 7*sizeof(WCHAR), "data_count set to %d instead of 7*sizeof(WCHAR)\n", data_count );
|
|
|
|
ok( type == REG_SZ, "type %d is not REG_SZ\n", type );
|
2004-01-26 21:23:25 +01:00
|
|
|
ok( !memcmp( valueW, testW, sizeof(testW) ), "value is not 'Test'\n" );
|
|
|
|
ok( !memcmp( dataW, foobarW, sizeof(foobarW) ), "data is not 'foobar'\n" );
|
2007-03-31 13:01:24 +02:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
RegDeleteKeyA(test_key, "");
|
|
|
|
RegCloseKey(test_key);
|
2002-07-10 05:30:14 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_query_value_ex(void)
|
2004-11-19 19:13:30 +01:00
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
DWORD size;
|
|
|
|
DWORD type;
|
2006-08-16 14:00:59 +02:00
|
|
|
BYTE buffer[10];
|
2004-11-19 19:13:30 +01:00
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
ret = RegQueryValueExA(hkey_main, "TP1_SZ", NULL, &type, NULL, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(size == strlen(sTestpath1) + 1, "(%d,%d)\n", (DWORD)strlen(sTestpath1) + 1, size);
|
|
|
|
ok(type == REG_SZ, "type %d is not REG_SZ\n", type);
|
2006-08-16 14:00:59 +02:00
|
|
|
|
|
|
|
type = 0xdeadbeef;
|
|
|
|
size = 0xdeadbeef;
|
2006-10-15 17:05:01 +02:00
|
|
|
ret = RegQueryValueExA(HKEY_CLASSES_ROOT, "Nonexistent Value", NULL, &type, NULL, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
2006-12-27 20:14:43 +01:00
|
|
|
/* the type parameter is cleared on Win9x, but is set to a random value on
|
2007-04-11 20:33:02 +02:00
|
|
|
* NT, so don't do that test there. The size parameter is left untouched on Win9x
|
|
|
|
* but cleared on NT+, this can be tested on all platforms.
|
|
|
|
*/
|
2006-12-27 20:14:43 +01:00
|
|
|
if (GetVersion() & 0x80000000)
|
2007-04-11 20:33:02 +02:00
|
|
|
{
|
2006-12-27 20:14:43 +01:00
|
|
|
ok(type == 0, "type should have been set to 0 instead of 0x%x\n", type);
|
2007-04-11 20:33:02 +02:00
|
|
|
ok(size == 0xdeadbeef, "size should have been left untouched (0xdeadbeef)\n");
|
|
|
|
}
|
2006-12-27 20:14:43 +01:00
|
|
|
else
|
2007-04-11 20:33:02 +02:00
|
|
|
{
|
2006-12-27 20:14:43 +01:00
|
|
|
trace("test_query_value_ex: type set to: 0x%08x\n", type);
|
2007-04-11 20:33:02 +02:00
|
|
|
ok(size == 0, "size should have been set to 0 instead of %d\n", size);
|
|
|
|
}
|
2006-08-16 14:00:59 +02:00
|
|
|
|
|
|
|
size = sizeof(buffer);
|
2006-10-15 17:05:01 +02:00
|
|
|
ret = RegQueryValueExA(HKEY_CLASSES_ROOT, "Nonexistent Value", NULL, &type, buffer, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
|
|
|
ok(size == sizeof(buffer), "size shouldn't have been changed to %d\n", size);
|
2007-12-14 06:48:28 +01:00
|
|
|
|
|
|
|
size = 4;
|
|
|
|
ret = RegQueryValueExA(hkey_main, "BIN32", NULL, &size, buffer, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2004-11-19 19:13:30 +01:00
|
|
|
}
|
|
|
|
|
2005-07-03 13:19:03 +02:00
|
|
|
static void test_get_value(void)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
DWORD size;
|
|
|
|
DWORD type;
|
|
|
|
DWORD dw, qw[2];
|
|
|
|
CHAR buf[80];
|
|
|
|
CHAR expanded[] = "bar\\subdir1";
|
2008-01-17 18:45:36 +01:00
|
|
|
CHAR expanded2[] = "ImARatherLongButIndeedNeededString\\subdir1";
|
2005-07-03 13:19:03 +02:00
|
|
|
|
2007-03-11 19:42:35 +01:00
|
|
|
if(!pRegGetValueA)
|
2005-07-03 13:19:03 +02:00
|
|
|
{
|
2008-06-10 18:30:15 +02:00
|
|
|
win_skip("RegGetValue not available on this platform\n");
|
2005-07-03 13:19:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2005-07-18 12:30:51 +02:00
|
|
|
|
2007-06-21 02:12:30 +02:00
|
|
|
/* Invalid parameter */
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_REG_DWORD, &type, &dw, NULL);
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "ret=%d\n", ret);
|
|
|
|
|
2005-07-03 13:19:03 +02:00
|
|
|
/* Query REG_DWORD using RRF_RT_REG_DWORD (ok) */
|
|
|
|
size = type = dw = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_REG_DWORD, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_DWORD, "type=%d\n", type);
|
|
|
|
ok(dw == 0x12345678, "dw=%d\n", dw);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query by subkey-name */
|
|
|
|
ret = pRegGetValueA(HKEY_CURRENT_USER, "Software\\Wine\\Test", "DWORD", RRF_RT_REG_DWORD, NULL, NULL, NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query REG_DWORD using RRF_RT_REG_BINARY (restricted) */
|
|
|
|
size = type = dw = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_REG_BINARY, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_UNSUPPORTED_TYPE, "ret=%d\n", ret);
|
2005-07-03 13:19:03 +02:00
|
|
|
/* Although the function failed all values are retrieved */
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_DWORD, "type=%d\n", type);
|
|
|
|
ok(dw == 0x12345678, "dw=%d\n", dw);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Test RRF_ZEROONFAILURE */
|
|
|
|
type = dw = 0xdeadbeef; size = 4;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_REG_SZ|RRF_ZEROONFAILURE, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_UNSUPPORTED_TYPE, "ret=%d\n", ret);
|
2005-07-03 13:19:03 +02:00
|
|
|
/* Again all values are retrieved ... */
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_DWORD, "type=%d\n", type);
|
2005-07-03 13:19:03 +02:00
|
|
|
/* ... except the buffer, which is zeroed out */
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(dw == 0, "dw=%d\n", dw);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
2007-06-21 02:12:30 +02:00
|
|
|
/* Test RRF_ZEROONFAILURE with a NULL buffer... */
|
|
|
|
type = size = 0xbadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_REG_SZ|RRF_ZEROONFAILURE, &type, NULL, &size);
|
|
|
|
ok(ret == ERROR_UNSUPPORTED_TYPE, "ret=%d\n", ret);
|
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_DWORD, "type=%d\n", type);
|
|
|
|
|
2005-07-03 13:19:03 +02:00
|
|
|
/* Query REG_DWORD using RRF_RT_DWORD (ok) */
|
|
|
|
size = type = dw = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "DWORD", RRF_RT_DWORD, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_DWORD, "type=%d\n", type);
|
|
|
|
ok(dw == 0x12345678, "dw=%d\n", dw);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query 32-bit REG_BINARY using RRF_RT_DWORD (ok) */
|
|
|
|
size = type = dw = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "BIN32", RRF_RT_DWORD, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == 4, "size=%d\n", size);
|
|
|
|
ok(type == REG_BINARY, "type=%d\n", type);
|
|
|
|
ok(dw == 0x12345678, "dw=%d\n", dw);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query 64-bit REG_BINARY using RRF_RT_DWORD (type mismatch) */
|
|
|
|
qw[0] = qw[1] = size = type = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "BIN64", RRF_RT_DWORD, &type, qw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_DATATYPE_MISMATCH, "ret=%d\n", ret);
|
|
|
|
ok(size == 8, "size=%d\n", size);
|
|
|
|
ok(type == REG_BINARY, "type=%d\n", type);
|
2005-07-03 13:19:03 +02:00
|
|
|
ok(qw[0] == 0x12345678 &&
|
2006-10-04 12:37:30 +02:00
|
|
|
qw[1] == 0x87654321, "qw={%d,%d}\n", qw[0], qw[1]);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query 64-bit REG_BINARY using 32-bit buffer (buffer too small) */
|
|
|
|
type = dw = 0xdeadbeef; size = 4;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "BIN64", RRF_RT_REG_BINARY, &type, &dw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_MORE_DATA, "ret=%d\n", ret);
|
|
|
|
ok(dw == 0xdeadbeef, "dw=%d\n", dw);
|
|
|
|
ok(size == 8, "size=%d\n", size);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
|
|
|
/* Query 64-bit REG_BINARY using RRF_RT_QWORD (ok) */
|
|
|
|
qw[0] = qw[1] = size = type = 0xdeadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "BIN64", RRF_RT_QWORD, &type, qw, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == 8, "size=%d\n", size);
|
|
|
|
ok(type == REG_BINARY, "type=%d\n", type);
|
2005-07-03 13:19:03 +02:00
|
|
|
ok(qw[0] == 0x12345678 &&
|
2006-10-04 12:37:30 +02:00
|
|
|
qw[1] == 0x87654321, "qw={%d,%d}\n", qw[0], qw[1]);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
/* Query REG_SZ using RRF_RT_REG_SZ (ok) */
|
2005-07-03 13:19:03 +02:00
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
2005-07-18 12:30:51 +02:00
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == strlen(sTestpath1)+1, "strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
2005-07-18 12:30:51 +02:00
|
|
|
ok(!strcmp(sTestpath1, buf), "sTestpath=\"%s\" buf=\"%s\"\n", sTestpath1, buf);
|
2005-07-03 13:19:03 +02:00
|
|
|
|
2007-06-21 02:12:30 +02:00
|
|
|
/* Query REG_SZ using RRF_RT_REG_SZ and no buffer (ok) */
|
|
|
|
type = 0xdeadbeef; size = 0;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_SZ", RRF_RT_REG_SZ, &type, NULL, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
/* v5.2.3790.1830 (2003 SP1) returns sTestpath1 length + 2 here. */
|
2008-06-10 10:23:58 +02:00
|
|
|
ok(size == strlen(sTestpath1)+1 || broken(size == strlen(sTestpath1)+2),
|
2007-06-21 02:12:30 +02:00
|
|
|
"strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
|
|
|
|
2008-02-19 00:21:09 +01:00
|
|
|
/* Query REG_SZ using RRF_RT_REG_SZ on a zero-byte value (ok) */
|
|
|
|
strcpy(buf, sTestpath1);
|
|
|
|
type = 0xdeadbeef;
|
|
|
|
size = sizeof(buf);
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_ZB_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
/* v5.2.3790.1830 (2003 SP1) returns sTestpath1 length + 2 here. */
|
2008-04-20 10:00:42 +02:00
|
|
|
ok(size == 0 ||
|
|
|
|
size == 1, /* win2k3 */
|
|
|
|
"size=%d\n", size);
|
2008-02-19 00:21:09 +01:00
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
2008-04-20 10:00:42 +02:00
|
|
|
ok(!strcmp(sTestpath1, buf) ||
|
|
|
|
!strcmp(buf, ""),
|
|
|
|
"Expected \"%s\" or \"\", got \"%s\"\n", sTestpath1, buf);
|
2008-02-19 00:21:09 +01:00
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
/* Query REG_SZ using RRF_RT_REG_SZ|RRF_NOEXPAND (ok) */
|
2005-07-03 13:19:03 +02:00
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
2005-07-18 12:30:51 +02:00
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_SZ", RRF_RT_REG_SZ|RRF_NOEXPAND, &type, buf, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == strlen(sTestpath1)+1, "strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
2005-07-03 13:19:03 +02:00
|
|
|
ok(!strcmp(sTestpath1, buf), "sTestpath=\"%s\" buf=\"%s\"\n", sTestpath1, buf);
|
|
|
|
|
2007-06-21 02:12:30 +02:00
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ and no buffer (ok, expands) */
|
2008-01-11 09:49:48 +01:00
|
|
|
size = 0;
|
2008-01-17 18:45:36 +01:00
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP2_EXP_SZ", RRF_RT_REG_SZ, NULL, NULL, &size);
|
2007-06-21 02:12:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
2008-04-25 03:19:35 +02:00
|
|
|
ok((size == strlen(expanded2)+1) || /* win2k3 SP1 */
|
|
|
|
(size == strlen(expanded2)+2) || /* win2k3 SP2 */
|
|
|
|
(size == strlen(sTestpath2)+1),
|
2008-01-17 18:45:36 +01:00
|
|
|
"strlen(expanded2)=%d, strlen(sTestpath2)=%d, size=%d\n", lstrlenA(expanded2), lstrlenA(sTestpath2), size);
|
2007-06-21 02:12:30 +02:00
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ (ok, expands) */
|
2005-07-03 13:19:03 +02:00
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
2005-07-18 12:30:51 +02:00
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
2006-06-02 20:55:08 +02:00
|
|
|
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath1 length + 1 here. */
|
2008-06-10 10:23:58 +02:00
|
|
|
ok(size == strlen(expanded)+1 || broken(size == strlen(sTestpath1)+1),
|
2006-10-04 12:37:30 +02:00
|
|
|
"strlen(expanded)=%d, strlen(sTestpath1)=%d, size=%d\n", lstrlenA(expanded), lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
2005-07-18 12:30:51 +02:00
|
|
|
ok(!strcmp(expanded, buf), "expanded=\"%s\" buf=\"%s\"\n", expanded, buf);
|
2008-01-17 18:45:36 +01:00
|
|
|
|
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ (ok, expands a lot) */
|
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP2_EXP_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath2 length + 1 here. */
|
2008-06-10 10:23:58 +02:00
|
|
|
ok(size == strlen(expanded2)+1 || broken(size == strlen(sTestpath2)+1),
|
2008-01-17 18:45:36 +01:00
|
|
|
"strlen(expanded2)=%d, strlen(sTestpath1)=%d, size=%d\n", lstrlenA(expanded2), lstrlenA(sTestpath2), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
|
|
|
ok(!strcmp(expanded2, buf), "expanded2=\"%s\" buf=\"%s\"\n", expanded2, buf);
|
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND (ok, doesn't expand) */
|
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND, &type, buf, &size);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
ok(size == strlen(sTestpath1)+1, "strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_EXPAND_SZ, "type=%d\n", type);
|
2005-07-03 13:19:03 +02:00
|
|
|
ok(!strcmp(sTestpath1, buf), "sTestpath=\"%s\" buf=\"%s\"\n", sTestpath1, buf);
|
2007-06-21 02:12:30 +02:00
|
|
|
|
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND and no buffer (ok, doesn't expand) */
|
|
|
|
size = 0xbadbeef;
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND, NULL, NULL, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
/* v5.2.3790.1830 (2003 SP1) returns sTestpath1 length + 2 here. */
|
2008-06-10 10:23:58 +02:00
|
|
|
ok(size == strlen(sTestpath1)+1 || broken(size == strlen(sTestpath1)+2),
|
2007-06-21 02:12:30 +02:00
|
|
|
"strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
|
|
|
|
2005-07-18 12:30:51 +02:00
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ|RRF_NOEXPAND (type mismatch) */
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_SZ|RRF_NOEXPAND, NULL, NULL, NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_UNSUPPORTED_TYPE, "ret=%d\n", ret);
|
2005-07-18 12:30:51 +02:00
|
|
|
|
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_REG_EXPAND_SZ (not allowed without RRF_NOEXPAND) */
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_EXPAND_SZ, NULL, NULL, NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "ret=%d\n", ret);
|
2008-07-19 18:54:20 +02:00
|
|
|
|
|
|
|
/* Query REG_EXPAND_SZ using RRF_RT_ANY */
|
|
|
|
buf[0] = 0; type = 0xdeadbeef; size = sizeof(buf);
|
|
|
|
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_ANY, &type, buf, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
|
|
|
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath1 length + 1 here. */
|
|
|
|
ok(size == strlen(expanded)+1 || broken(size == strlen(sTestpath1)+1),
|
|
|
|
"strlen(expanded)=%d, strlen(sTestpath1)=%d, size=%d\n", lstrlenA(expanded), lstrlenA(sTestpath1), size);
|
|
|
|
ok(type == REG_SZ, "type=%d\n", type);
|
|
|
|
ok(!strcmp(expanded, buf), "expanded=\"%s\" buf=\"%s\"\n", expanded, buf);
|
2005-07-03 13:19:03 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_open_key(void)
|
2005-02-21 21:37:26 +01:00
|
|
|
{
|
|
|
|
DWORD ret = 0;
|
|
|
|
HKEY hkResult = NULL;
|
|
|
|
HKEY hkPreserve = NULL;
|
|
|
|
|
|
|
|
/* successful open */
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-02-21 21:37:26 +01:00
|
|
|
ok(hkResult != NULL, "expected hkResult != NULL\n");
|
|
|
|
hkPreserve = hkResult;
|
|
|
|
|
2005-06-12 12:42:13 +02:00
|
|
|
/* these tests fail on Win9x, but we want to be compatible with NT, so
|
|
|
|
* run them if we can */
|
|
|
|
if (!(GetVersion() & 0x80000000))
|
|
|
|
{
|
|
|
|
/* open same key twice */
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult != hkPreserve, "epxected hkResult != hkPreserve\n");
|
|
|
|
ok(hkResult != NULL, "hkResult != NULL\n");
|
|
|
|
RegCloseKey(hkResult);
|
|
|
|
|
|
|
|
/* open nonexistent key
|
|
|
|
* check that hkResult is set to NULL
|
|
|
|
*/
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Nonexistent", &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult == NULL, "expected hkResult == NULL\n");
|
|
|
|
|
|
|
|
/* open the same nonexistent key again to make sure the key wasn't created */
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Nonexistent", &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult == NULL, "expected hkResult == NULL\n");
|
|
|
|
|
|
|
|
/* send in NULL lpSubKey
|
|
|
|
* check that hkResult receives the value of hKey
|
|
|
|
*/
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, NULL, &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult == HKEY_CURRENT_USER, "expected hkResult == HKEY_CURRENT_USER\n");
|
|
|
|
|
|
|
|
/* send empty-string in lpSubKey */
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "", &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult == HKEY_CURRENT_USER, "expected hkResult == HKEY_CURRENT_USER\n");
|
|
|
|
|
|
|
|
/* send in NULL lpSubKey and NULL hKey
|
|
|
|
* hkResult is set to NULL
|
|
|
|
*/
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(NULL, NULL, &hkResult);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-06-12 12:42:13 +02:00
|
|
|
ok(hkResult == NULL, "expected hkResult == NULL\n");
|
|
|
|
}
|
2005-02-21 21:37:26 +01:00
|
|
|
|
|
|
|
/* only send NULL hKey
|
|
|
|
* the value of hkResult remains unchanged
|
|
|
|
*/
|
|
|
|
hkResult = hkPreserve;
|
|
|
|
ret = RegOpenKeyA(NULL, "Software\\Wine\\Test", &hkResult);
|
2005-03-24 20:02:38 +01:00
|
|
|
ok(ret == ERROR_INVALID_HANDLE || ret == ERROR_BADKEY, /* Windows 95 returns BADKEY */
|
2006-10-04 12:37:30 +02:00
|
|
|
"expected ERROR_INVALID_HANDLE or ERROR_BADKEY, got %d\n", ret);
|
2005-02-21 21:37:26 +01:00
|
|
|
ok(hkResult == hkPreserve, "expected hkResult == hkPreserve\n");
|
|
|
|
RegCloseKey(hkResult);
|
|
|
|
|
|
|
|
/* send in NULL hkResult */
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Test", NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", ret);
|
2005-12-08 13:49:02 +01:00
|
|
|
|
|
|
|
/* beginning backslash character */
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "\\Software\\Wine\\Test", &hkResult);
|
|
|
|
ok(ret == ERROR_BAD_PATHNAME || /* NT/2k/XP */
|
|
|
|
ret == ERROR_FILE_NOT_FOUND /* Win9x,ME */
|
2006-10-04 12:37:30 +02:00
|
|
|
, "expected ERROR_BAD_PATHNAME or ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
2008-07-24 12:19:17 +02:00
|
|
|
|
2008-11-22 02:03:51 +01:00
|
|
|
hkResult = NULL;
|
|
|
|
ret = RegOpenKeyExA(HKEY_CLASSES_ROOT, "\\clsid", 0, KEY_QUERY_VALUE, &hkResult);
|
2008-11-25 10:43:17 +01:00
|
|
|
ok(ret == ERROR_SUCCESS || /* 2k/XP */
|
|
|
|
ret == ERROR_BAD_PATHNAME || /* NT */
|
2008-11-22 02:03:51 +01:00
|
|
|
ret == ERROR_FILE_NOT_FOUND /* Win9x,ME */
|
2008-11-25 10:43:17 +01:00
|
|
|
, "expected ERROR_SUCCESS, ERROR_BAD_PATHNAME or ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
2008-11-22 02:03:51 +01:00
|
|
|
RegCloseKey(hkResult);
|
|
|
|
|
2008-07-24 12:19:17 +02:00
|
|
|
/* WOW64 flags */
|
|
|
|
hkResult = NULL;
|
|
|
|
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software", 0, KEY_READ|KEY_WOW64_32KEY, &hkResult);
|
2008-07-24 16:31:05 +02:00
|
|
|
ok((ret == ERROR_SUCCESS && hkResult != NULL) || broken(ret == ERROR_ACCESS_DENIED /* NT4, win2k */),
|
|
|
|
"RegOpenKeyEx with KEY_WOW64_32KEY failed (err=%u)\n", ret);
|
2008-07-24 12:19:17 +02:00
|
|
|
RegCloseKey(hkResult);
|
|
|
|
|
|
|
|
hkResult = NULL;
|
|
|
|
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software", 0, KEY_READ|KEY_WOW64_64KEY, &hkResult);
|
2008-07-24 16:31:05 +02:00
|
|
|
ok((ret == ERROR_SUCCESS && hkResult != NULL) || broken(ret == ERROR_ACCESS_DENIED /* NT4, win2k */),
|
|
|
|
"RegOpenKeyEx with KEY_WOW64_64KEY failed (err=%u)\n", ret);
|
2008-07-24 12:19:17 +02:00
|
|
|
RegCloseKey(hkResult);
|
2005-02-21 21:37:26 +01:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_create_key(void)
|
2005-06-16 22:34:34 +02:00
|
|
|
{
|
|
|
|
LONG ret;
|
|
|
|
HKEY hkey1, hkey2;
|
|
|
|
ret = RegCreateKeyExA(hkey_main, "Subkey1", 0, NULL, 0, KEY_NOTIFY, NULL, &hkey1, NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(!ret, "RegCreateKeyExA failed with error %d\n", ret);
|
2005-06-16 22:34:34 +02:00
|
|
|
/* should succeed: all versions of Windows ignore the access rights
|
|
|
|
* to the parent handle */
|
|
|
|
ret = RegCreateKeyExA(hkey1, "Subkey2", 0, NULL, 0, KEY_SET_VALUE, NULL, &hkey2, NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(!ret, "RegCreateKeyExA failed with error %d\n", ret);
|
2005-06-16 22:34:34 +02:00
|
|
|
|
|
|
|
/* clean up */
|
2006-10-02 16:07:39 +02:00
|
|
|
RegDeleteKey(hkey2, "");
|
|
|
|
RegDeleteKey(hkey1, "");
|
2005-12-08 13:49:02 +01:00
|
|
|
|
|
|
|
/* beginning backslash character */
|
|
|
|
ret = RegCreateKeyExA(hkey_main, "\\Subkey3", 0, NULL, 0, KEY_NOTIFY, NULL, &hkey1, NULL);
|
|
|
|
if (!(GetVersion() & 0x80000000))
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_BAD_PATHNAME, "expected ERROR_BAD_PATHNAME, got %d\n", ret);
|
2005-12-08 13:49:02 +01:00
|
|
|
else {
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(!ret, "RegCreateKeyExA failed with error %d\n", ret);
|
2005-12-08 13:49:02 +01:00
|
|
|
RegDeleteKey(hkey1, NULL);
|
|
|
|
}
|
2008-07-24 12:19:17 +02:00
|
|
|
|
|
|
|
/* WOW64 flags - open an existing key */
|
|
|
|
hkey1 = NULL;
|
|
|
|
ret = RegCreateKeyExA(HKEY_LOCAL_MACHINE, "Software", 0, NULL, 0, KEY_READ|KEY_WOW64_32KEY, NULL, &hkey1, NULL);
|
2008-07-24 16:31:05 +02:00
|
|
|
ok((ret == ERROR_SUCCESS && hkey1 != NULL) || broken(ret == ERROR_ACCESS_DENIED /* NT4, win2k */),
|
|
|
|
"RegOpenKeyEx with KEY_WOW64_32KEY failed (err=%u)\n", ret);
|
2008-07-24 12:19:17 +02:00
|
|
|
RegCloseKey(hkey1);
|
|
|
|
|
|
|
|
hkey1 = NULL;
|
2008-07-24 16:31:05 +02:00
|
|
|
ret = RegCreateKeyExA(HKEY_LOCAL_MACHINE, "Software", 0, NULL, 0, KEY_READ|KEY_WOW64_64KEY, NULL, &hkey1, NULL);
|
|
|
|
ok((ret == ERROR_SUCCESS && hkey1 != NULL) || broken(ret == ERROR_ACCESS_DENIED /* NT4, win2k */),
|
|
|
|
"RegOpenKeyEx with KEY_WOW64_64KEY failed (err=%u)\n", ret);
|
2008-07-24 12:19:17 +02:00
|
|
|
RegCloseKey(hkey1);
|
2005-06-16 22:34:34 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_close_key(void)
|
2005-02-21 21:37:26 +01:00
|
|
|
{
|
|
|
|
DWORD ret = 0;
|
|
|
|
HKEY hkHandle;
|
|
|
|
|
|
|
|
/* successfully close key
|
|
|
|
* hkHandle remains changed after call to RegCloseKey
|
|
|
|
*/
|
|
|
|
ret = RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkHandle);
|
|
|
|
ret = RegCloseKey(hkHandle);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-02-21 21:37:26 +01:00
|
|
|
|
|
|
|
/* try to close the key twice */
|
2005-03-24 20:02:38 +01:00
|
|
|
ret = RegCloseKey(hkHandle); /* Windows 95 doesn't mind. */
|
2005-03-25 11:26:18 +01:00
|
|
|
ok(ret == ERROR_INVALID_HANDLE || ret == ERROR_SUCCESS,
|
2006-10-04 12:37:30 +02:00
|
|
|
"expected ERROR_INVALID_HANDLE or ERROR_SUCCESS, got %d\n", ret);
|
2005-03-25 11:26:18 +01:00
|
|
|
|
2005-02-21 21:37:26 +01:00
|
|
|
/* try to close a NULL handle */
|
|
|
|
ret = RegCloseKey(NULL);
|
2005-03-24 20:02:38 +01:00
|
|
|
ok(ret == ERROR_INVALID_HANDLE || ret == ERROR_BADKEY, /* Windows 95 returns BADKEY */
|
2006-10-04 12:37:30 +02:00
|
|
|
"expected ERROR_INVALID_HANDLE or ERROR_BADKEY, got %d\n", ret);
|
2007-03-31 12:14:10 +02:00
|
|
|
|
|
|
|
/* Check to see if we didn't potentially close our main handle, which could happen on win98 as
|
|
|
|
* win98 doesn't give a new handle when the same key is opened.
|
|
|
|
* Not re-opening will make some next tests fail.
|
|
|
|
*/
|
|
|
|
if (hkey_main == hkHandle)
|
|
|
|
{
|
|
|
|
trace("The main handle is most likely closed, so re-opening\n");
|
|
|
|
RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main );
|
|
|
|
}
|
2005-02-21 21:37:26 +01:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_delete_key(void)
|
2005-04-16 12:49:10 +02:00
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
ret = RegDeleteKey(hkey_main, NULL);
|
2007-04-10 11:29:10 +02:00
|
|
|
|
|
|
|
/* There is a bug in NT4 and W2K that doesn't check if the subkey is NULL. If
|
|
|
|
* there are also no subkeys available it will delete the key pointed to by hkey_main.
|
|
|
|
* Not re-creating will make some next tests fail.
|
|
|
|
*/
|
|
|
|
if (ret == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
trace("We are probably running on NT4 or W2K as the main key is deleted,"
|
|
|
|
" re-creating the main key\n");
|
|
|
|
setup_main_key();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER ||
|
|
|
|
ret == ERROR_ACCESS_DENIED ||
|
|
|
|
ret == ERROR_BADKEY, /* Win95 */
|
|
|
|
"ret=%d\n", ret);
|
2005-04-16 12:49:10 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_save_key(void)
|
2005-03-23 12:59:06 +01:00
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
ret = RegSaveKey(hkey_main, "saved_key", NULL);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-03-23 12:59:06 +01:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_load_key(void)
|
2005-03-23 12:59:06 +01:00
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
HKEY hkHandle;
|
|
|
|
|
|
|
|
ret = RegLoadKey(HKEY_LOCAL_MACHINE, "Test", "saved_key");
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-03-23 12:59:06 +01:00
|
|
|
|
|
|
|
ret = RegOpenKey(HKEY_LOCAL_MACHINE, "Test", &hkHandle);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-03-23 12:59:06 +01:00
|
|
|
|
2005-04-19 11:47:10 +02:00
|
|
|
RegCloseKey(hkHandle);
|
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void test_reg_unload_key(void)
|
2005-04-19 11:47:10 +02:00
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
ret = RegUnLoadKey(HKEY_LOCAL_MACHINE, "Test");
|
2006-10-04 12:37:30 +02:00
|
|
|
ok(ret == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", ret);
|
2005-04-19 11:47:10 +02:00
|
|
|
|
2005-03-23 12:59:06 +01:00
|
|
|
DeleteFile("saved_key");
|
2005-10-27 20:29:07 +02:00
|
|
|
DeleteFile("saved_key.LOG");
|
2005-03-23 12:59:06 +01:00
|
|
|
}
|
|
|
|
|
2005-04-19 14:00:04 +02:00
|
|
|
static BOOL set_privileges(LPCSTR privilege, BOOL set)
|
|
|
|
{
|
|
|
|
TOKEN_PRIVILEGES tp;
|
|
|
|
HANDLE hToken;
|
|
|
|
LUID luid;
|
|
|
|
|
|
|
|
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &hToken))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if(!LookupPrivilegeValue(NULL, privilege, &luid))
|
|
|
|
{
|
|
|
|
CloseHandle(hToken);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
tp.PrivilegeCount = 1;
|
|
|
|
tp.Privileges[0].Luid = luid;
|
|
|
|
|
|
|
|
if (set)
|
|
|
|
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
|
|
|
|
else
|
|
|
|
tp.Privileges[0].Attributes = 0;
|
|
|
|
|
|
|
|
AdjustTokenPrivileges(hToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), NULL, NULL);
|
|
|
|
if (GetLastError() != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
CloseHandle(hToken);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(hToken);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-09-15 11:31:05 +02:00
|
|
|
/* tests that show that RegConnectRegistry and
|
|
|
|
OpenSCManager accept computer names without the
|
|
|
|
\\ prefix (what MSDN says). */
|
|
|
|
static void test_regconnectregistry( void)
|
|
|
|
{
|
|
|
|
CHAR compName[MAX_COMPUTERNAME_LENGTH + 1];
|
2005-11-04 12:15:59 +01:00
|
|
|
CHAR netwName[MAX_COMPUTERNAME_LENGTH + 3]; /* 2 chars for double backslash */
|
2005-09-15 11:31:05 +02:00
|
|
|
DWORD len = sizeof(compName) ;
|
|
|
|
BOOL ret;
|
|
|
|
LONG retl;
|
|
|
|
HKEY hkey;
|
|
|
|
SC_HANDLE schnd;
|
|
|
|
|
2007-04-11 08:39:34 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
2005-09-15 11:31:05 +02:00
|
|
|
ret = GetComputerNameA(compName, &len);
|
2006-10-04 12:37:30 +02:00
|
|
|
ok( ret, "GetComputerName failed err = %d\n", GetLastError());
|
2005-09-15 11:31:05 +02:00
|
|
|
if( !ret) return;
|
|
|
|
|
2005-11-04 12:15:59 +01:00
|
|
|
lstrcpyA(netwName, "\\\\");
|
|
|
|
lstrcpynA(netwName+2, compName, MAX_COMPUTERNAME_LENGTH + 1);
|
|
|
|
|
2005-09-15 11:31:05 +02:00
|
|
|
retl = RegConnectRegistryA( compName, HKEY_LOCAL_MACHINE, &hkey);
|
2008-04-19 06:21:14 +02:00
|
|
|
ok( !retl ||
|
|
|
|
retl == ERROR_DLL_INIT_FAILED ||
|
|
|
|
retl == ERROR_BAD_NETPATH, /* some win2k */
|
|
|
|
"RegConnectRegistryA failed err = %d\n", retl);
|
2005-11-04 12:15:59 +01:00
|
|
|
if( !retl) RegCloseKey( hkey);
|
|
|
|
|
|
|
|
retl = RegConnectRegistryA( netwName, HKEY_LOCAL_MACHINE, &hkey);
|
2008-04-19 06:21:14 +02:00
|
|
|
ok( !retl ||
|
|
|
|
retl == ERROR_DLL_INIT_FAILED ||
|
|
|
|
retl == ERROR_BAD_NETPATH, /* some win2k */
|
|
|
|
"RegConnectRegistryA failed err = %d\n", retl);
|
2005-09-15 11:31:05 +02:00
|
|
|
if( !retl) RegCloseKey( hkey);
|
|
|
|
|
2007-04-11 08:39:34 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
2005-09-15 11:31:05 +02:00
|
|
|
schnd = OpenSCManagerA( compName, NULL, GENERIC_READ);
|
2007-04-11 08:39:34 +02:00
|
|
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
{
|
2008-06-10 18:30:15 +02:00
|
|
|
win_skip("OpenSCManagerA is not implemented\n");
|
2007-04-11 08:39:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok( schnd != NULL, "OpenSCManagerA failed err = %d\n", GetLastError());
|
2005-11-04 12:15:59 +01:00
|
|
|
CloseServiceHandle( schnd);
|
|
|
|
|
2007-04-11 08:39:34 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
2005-11-04 12:15:59 +01:00
|
|
|
schnd = OpenSCManagerA( netwName, NULL, GENERIC_READ);
|
2007-04-11 08:39:34 +02:00
|
|
|
ok( schnd != NULL, "OpenSCManagerA failed err = %d\n", GetLastError());
|
2005-09-15 11:31:05 +02:00
|
|
|
CloseServiceHandle( schnd);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-16 11:16:11 +01:00
|
|
|
static void test_reg_query_value(void)
|
|
|
|
{
|
|
|
|
HKEY subkey;
|
|
|
|
CHAR val[MAX_PATH];
|
|
|
|
WCHAR valW[5];
|
|
|
|
LONG size, ret;
|
|
|
|
|
|
|
|
static const WCHAR expected[] = {'d','a','t','a',0};
|
|
|
|
|
|
|
|
ret = RegCreateKeyA(hkey_main, "subkey", &subkey);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
ret = RegSetValueA(subkey, NULL, REG_SZ, "data", 4);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
/* try an invalid hkey */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
size = MAX_PATH;
|
|
|
|
ret = RegQueryValueA((HKEY)0xcafebabe, "subkey", val, &size);
|
2008-06-30 01:13:11 +02:00
|
|
|
ok(ret == ERROR_INVALID_HANDLE ||
|
|
|
|
ret == ERROR_BADKEY || /* Windows 98 returns BADKEY */
|
|
|
|
ret == ERROR_ACCESS_DENIED, /* non-admin winxp */
|
2007-03-31 13:01:24 +02:00
|
|
|
"Expected ERROR_INVALID_HANDLE or ERROR_BADKEY, got %d\n", ret);
|
2007-01-16 11:16:11 +01:00
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
|
|
|
|
/* try a NULL hkey */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
size = MAX_PATH;
|
|
|
|
ret = RegQueryValueA(NULL, "subkey", val, &size);
|
2007-03-31 13:01:24 +02:00
|
|
|
ok(ret == ERROR_INVALID_HANDLE || ret == ERROR_BADKEY, /* Windows 98 returns BADKEY */
|
|
|
|
"Expected ERROR_INVALID_HANDLE or ERROR_BADKEY, got %d\n", ret);
|
2007-01-16 11:16:11 +01:00
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
|
|
|
|
/* try a NULL value */
|
|
|
|
size = MAX_PATH;
|
|
|
|
ret = RegQueryValueA(hkey_main, "subkey", NULL, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(size == 5, "Expected 5, got %d\n", size);
|
|
|
|
|
|
|
|
/* try a NULL size */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
val[0] = '\0';
|
|
|
|
ret = RegQueryValueA(hkey_main, "subkey", val, NULL);
|
|
|
|
ok(ret == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", ret);
|
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
ok(lstrlenA(val) == 0, "Expected val to be untouched, got %s\n", val);
|
|
|
|
|
|
|
|
/* try a NULL value and size */
|
|
|
|
ret = RegQueryValueA(hkey_main, "subkey", NULL, NULL);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
/* try a size too small */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
val[0] = '\0';
|
|
|
|
size = 1;
|
|
|
|
ret = RegQueryValueA(hkey_main, "subkey", val, &size);
|
|
|
|
ok(ret == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", ret);
|
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
ok(lstrlenA(val) == 0, "Expected val to be untouched, got %s\n", val);
|
|
|
|
ok(size == 5, "Expected 5, got %d\n", size);
|
|
|
|
|
|
|
|
/* successfully read the value using 'subkey' */
|
|
|
|
size = MAX_PATH;
|
|
|
|
ret = RegQueryValueA(hkey_main, "subkey", val, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(!lstrcmpA(val, "data"), "Expected 'data', got '%s'\n", val);
|
|
|
|
ok(size == 5, "Expected 5, got %d\n", size);
|
|
|
|
|
|
|
|
/* successfully read the value using the subkey key */
|
|
|
|
size = MAX_PATH;
|
|
|
|
ret = RegQueryValueA(subkey, NULL, val, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(!lstrcmpA(val, "data"), "Expected 'data', got '%s'\n", val);
|
|
|
|
ok(size == 5, "Expected 5, got %d\n", size);
|
|
|
|
|
|
|
|
/* unicode - try size too small */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
valW[0] = '\0';
|
|
|
|
size = 0;
|
|
|
|
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
2007-03-16 08:34:01 +01:00
|
|
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
{
|
2008-06-10 18:30:15 +02:00
|
|
|
win_skip("RegQueryValueW is not implemented\n");
|
2007-03-16 08:34:01 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2007-01-16 11:16:11 +01:00
|
|
|
ok(ret == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", ret);
|
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
ok(lstrlenW(valW) == 0, "Expected valW to be untouched\n");
|
|
|
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
|
|
|
|
|
|
|
/* unicode - try size in WCHARS */
|
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
size = sizeof(valW) / sizeof(WCHAR);
|
|
|
|
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
|
|
|
ok(ret == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", ret);
|
|
|
|
ok(GetLastError() == 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", GetLastError());
|
|
|
|
ok(lstrlenW(valW) == 0, "Expected valW to be untouched\n");
|
|
|
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
|
|
|
|
|
|
|
/* unicode - successfully read the value */
|
|
|
|
size = sizeof(valW);
|
|
|
|
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(!lstrcmpW(valW, expected), "Got wrong value\n");
|
|
|
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
|
|
|
|
|
|
|
/* unicode - set the value without a NULL terminator */
|
2007-03-08 21:06:31 +01:00
|
|
|
ret = RegSetValueW(subkey, NULL, REG_SZ, expected, sizeof(expected)-sizeof(WCHAR));
|
2007-01-16 11:16:11 +01:00
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
/* unicode - read the unterminated value, value is terminated for us */
|
|
|
|
memset(valW, 'a', sizeof(valW));
|
|
|
|
size = sizeof(valW);
|
|
|
|
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
2007-03-08 21:06:31 +01:00
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(!lstrcmpW(valW, expected), "Got wrong value\n");
|
|
|
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
2007-01-16 11:16:11 +01:00
|
|
|
|
2007-03-16 08:34:01 +01:00
|
|
|
cleanup:
|
2007-01-16 11:16:11 +01:00
|
|
|
RegDeleteKeyA(subkey, "");
|
2007-03-31 13:01:24 +02:00
|
|
|
RegCloseKey(subkey);
|
2007-01-16 11:16:11 +01:00
|
|
|
}
|
|
|
|
|
2008-11-20 20:47:59 +01:00
|
|
|
static void test_string_termination(void)
|
|
|
|
{
|
|
|
|
HKEY subkey;
|
|
|
|
LSTATUS ret;
|
|
|
|
static const char string[] = "FullString";
|
|
|
|
char name[11];
|
|
|
|
BYTE buffer[11];
|
|
|
|
DWORD insize, outsize, nsize;
|
|
|
|
|
|
|
|
ret = RegCreateKeyA(hkey_main, "string_termination", &subkey);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
/* Off-by-one RegSetValueExA -> adds a trailing '\0'! */
|
|
|
|
insize=sizeof(string)-1;
|
|
|
|
ret = RegSetValueExA(subkey, "stringtest", 0, REG_SZ, (BYTE*)string, insize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d\n", ret);
|
|
|
|
outsize=insize;
|
|
|
|
ret = RegQueryValueExA(subkey, "stringtest", NULL, NULL, buffer, &outsize);
|
|
|
|
ok(ret == ERROR_MORE_DATA, "RegQueryValueExA returned: %d\n", ret);
|
|
|
|
|
|
|
|
/* Off-by-two RegSetValueExA -> no trailing '\0', except on Win9x */
|
|
|
|
insize=sizeof(string)-2;
|
|
|
|
ret = RegSetValueExA(subkey, "stringtest", 0, REG_SZ, (BYTE*)string, insize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d\n", ret);
|
|
|
|
outsize=0;
|
|
|
|
ret = RegQueryValueExA(subkey, "stringtest", NULL, NULL, NULL, &outsize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", ret);
|
|
|
|
ok(outsize == insize || broken(outsize == sizeof(string)) /* Win9x */,
|
|
|
|
"wrong size %u != %u\n", outsize, insize);
|
|
|
|
|
|
|
|
if (outsize == insize)
|
|
|
|
{
|
|
|
|
/* RegQueryValueExA may return a string with no trailing '\0' */
|
|
|
|
outsize=insize;
|
|
|
|
memset(buffer, 0xbd, sizeof(buffer));
|
|
|
|
ret = RegQueryValueExA(subkey, "stringtest", NULL, NULL, buffer, &outsize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", ret);
|
|
|
|
ok(outsize == insize, "wrong size: %u != %u\n", outsize, insize);
|
|
|
|
ok(memcmp(buffer, string, outsize) == 0, "bad string: %s/%u != %s\n",
|
|
|
|
wine_debugstr_an((char*)buffer, outsize), outsize, string);
|
|
|
|
ok(buffer[insize] == 0xbd, "buffer overflow at %u %02x\n", insize, buffer[insize]);
|
|
|
|
|
|
|
|
/* RegQueryValueExA adds a trailing '\0' if there is room */
|
|
|
|
outsize=insize+1;
|
|
|
|
memset(buffer, 0xbd, sizeof(buffer));
|
|
|
|
ret = RegQueryValueExA(subkey, "stringtest", NULL, NULL, buffer, &outsize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegQueryValueExA failed: %d\n", ret);
|
|
|
|
ok(outsize == insize, "wrong size: %u != %u\n", outsize, insize);
|
|
|
|
ok(memcmp(buffer, string, outsize) == 0, "bad string: %s/%u != %s\n",
|
|
|
|
wine_debugstr_an((char*)buffer, outsize), outsize, string);
|
|
|
|
ok(buffer[insize] == 0, "buffer overflow at %u %02x\n", insize, buffer[insize]);
|
|
|
|
|
|
|
|
/* RegEnumValueA may return a string with no trailing '\0' */
|
|
|
|
outsize=insize;
|
|
|
|
memset(buffer, 0xbd, sizeof(buffer));
|
|
|
|
nsize=sizeof(name);
|
|
|
|
ret = RegEnumValueA(subkey, 0, name, &nsize, NULL, NULL, buffer, &outsize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegEnumValueA failed: %d\n", ret);
|
|
|
|
ok(strcmp(name, "stringtest") == 0, "wrong name: %s\n", name);
|
|
|
|
ok(outsize == insize, "wrong size: %u != %u\n", outsize, insize);
|
|
|
|
ok(memcmp(buffer, string, outsize) == 0, "bad string: %s/%u != %s\n",
|
|
|
|
wine_debugstr_an((char*)buffer, outsize), outsize, string);
|
|
|
|
ok(buffer[insize] == 0xbd, "buffer overflow at %u %02x\n", insize, buffer[insize]);
|
|
|
|
|
|
|
|
/* RegEnumValueA adds a trailing '\0' if there is room */
|
|
|
|
outsize=insize+1;
|
|
|
|
memset(buffer, 0xbd, sizeof(buffer));
|
|
|
|
nsize=sizeof(name);
|
|
|
|
ret = RegEnumValueA(subkey, 0, name, &nsize, NULL, NULL, buffer, &outsize);
|
|
|
|
ok(ret == ERROR_SUCCESS, "RegEnumValueA failed: %d\n", ret);
|
|
|
|
ok(strcmp(name, "stringtest") == 0, "wrong name: %s\n", name);
|
|
|
|
ok(outsize == insize, "wrong size: %u != %u\n", outsize, insize);
|
|
|
|
ok(memcmp(buffer, string, outsize) == 0, "bad string: %s/%u != %s\n",
|
|
|
|
wine_debugstr_an((char*)buffer, outsize), outsize, string);
|
|
|
|
ok(buffer[insize] == 0, "buffer overflow at %u %02x\n", insize, buffer[insize]);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegDeleteKeyA(subkey, "");
|
|
|
|
RegCloseKey(subkey);
|
|
|
|
}
|
|
|
|
|
2007-04-04 23:03:00 +02:00
|
|
|
static void test_reg_delete_tree(void)
|
|
|
|
{
|
|
|
|
CHAR buffer[MAX_PATH];
|
|
|
|
HKEY subkey, subkey2;
|
|
|
|
LONG size, ret;
|
|
|
|
|
|
|
|
if(!pRegDeleteTreeA) {
|
2008-06-10 18:30:15 +02:00
|
|
|
win_skip("Skipping RegDeleteTreeA tests, function not present\n");
|
2007-04-04 23:03:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = RegCreateKeyA(hkey_main, "subkey", &subkey);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCreateKeyA(subkey, "subkey2", &subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegSetValueA(subkey, NULL, REG_SZ, "data", 4);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegSetValueA(subkey2, NULL, REG_SZ, "data2", 5);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCloseKey(subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
|
|
|
|
ret = pRegDeleteTreeA(subkey, "subkey2");
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(RegOpenKeyA(subkey, "subkey2", &subkey2),
|
|
|
|
"subkey2 was not deleted\n");
|
|
|
|
size = MAX_PATH;
|
|
|
|
ok(!RegQueryValueA(subkey, NULL, buffer, &size),
|
|
|
|
"Default value of subkey not longer present\n");
|
|
|
|
|
|
|
|
ret = RegCreateKeyA(subkey, "subkey2", &subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCloseKey(subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = pRegDeleteTreeA(hkey_main, "subkey\\subkey2");
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(RegOpenKeyA(subkey, "subkey2", &subkey2),
|
|
|
|
"subkey2 was not deleted\n");
|
|
|
|
ok(!RegQueryValueA(subkey, NULL, buffer, &size),
|
|
|
|
"Default value of subkey not longer present\n");
|
|
|
|
|
2007-04-22 22:28:20 +02:00
|
|
|
ret = RegCreateKeyA(subkey, "subkey2", &subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCloseKey(subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCreateKeyA(subkey, "subkey3", &subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegCloseKey(subkey2);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ret = RegSetValueA(subkey, "value", REG_SZ, "data2", 5);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
2007-04-04 23:03:00 +02:00
|
|
|
ret = pRegDeleteTreeA(subkey, NULL);
|
|
|
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
|
|
|
ok(!RegOpenKeyA(hkey_main, "subkey", &subkey),
|
|
|
|
"subkey was deleted\n");
|
2007-04-22 22:28:20 +02:00
|
|
|
ok(RegOpenKeyA(subkey, "subkey2", &subkey2),
|
|
|
|
"subkey2 was not deleted\n");
|
|
|
|
ok(RegOpenKeyA(subkey, "subkey3", &subkey2),
|
|
|
|
"subkey3 was not deleted\n");
|
|
|
|
size = MAX_PATH;
|
2007-04-04 23:03:00 +02:00
|
|
|
ret = RegQueryValueA(subkey, NULL, buffer, &size);
|
|
|
|
ok(ret == ERROR_SUCCESS,
|
|
|
|
"Default value of subkey is not present\n");
|
|
|
|
ok(!lstrlenA(buffer),
|
|
|
|
"Expected length 0 got length %u(%s)\n", lstrlenA(buffer), buffer);
|
2007-04-22 22:28:20 +02:00
|
|
|
size = MAX_PATH;
|
|
|
|
ok(RegQueryValueA(subkey, "value", buffer, &size),
|
|
|
|
"Value is still present\n");
|
2007-04-04 23:03:00 +02:00
|
|
|
|
|
|
|
ret = pRegDeleteTreeA(hkey_main, "not-here");
|
|
|
|
ok(ret == ERROR_FILE_NOT_FOUND,
|
|
|
|
"Expected ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
|
|
|
}
|
|
|
|
|
2009-01-15 03:04:31 +01:00
|
|
|
static void test_rw_order(void)
|
|
|
|
{
|
|
|
|
HKEY hKey;
|
|
|
|
DWORD dw = 0;
|
|
|
|
static char keyname[] = "test_rw_order";
|
|
|
|
char value_buf[2];
|
|
|
|
DWORD values, value_len, value_name_max_len;
|
|
|
|
LSTATUS ret;
|
|
|
|
|
|
|
|
RegDeleteKeyA(HKEY_CURRENT_USER, keyname);
|
|
|
|
ret = RegCreateKeyA(HKEY_CURRENT_USER, keyname, &hKey);
|
|
|
|
if(ret != ERROR_SUCCESS) {
|
|
|
|
skip("Couldn't create key. Skipping.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(!RegSetValueExA(hKey, "A", 0, REG_DWORD, (LPBYTE)&dw, sizeof(dw)),
|
|
|
|
"RegSetValueExA for value \"A\" failed\n");
|
|
|
|
ok(!RegSetValueExA(hKey, "C", 0, REG_DWORD, (LPBYTE)&dw, sizeof(dw)),
|
|
|
|
"RegSetValueExA for value \"C\" failed\n");
|
|
|
|
ok(!RegSetValueExA(hKey, "D", 0, REG_DWORD, (LPBYTE)&dw, sizeof(dw)),
|
|
|
|
"RegSetValueExA for value \"D\" failed\n");
|
|
|
|
ok(!RegSetValueExA(hKey, "B", 0, REG_DWORD, (LPBYTE)&dw, sizeof(dw)),
|
|
|
|
"RegSetValueExA for value \"B\" failed\n");
|
|
|
|
|
|
|
|
ok(!RegQueryInfoKeyA(hKey, NULL, NULL, NULL, NULL, NULL, NULL, &values,
|
|
|
|
&value_name_max_len, NULL, NULL, NULL), "RegQueryInfoKeyA failed\n");
|
|
|
|
ok(values == 4, "Expected 4 values, got %u\n", values);
|
|
|
|
|
|
|
|
/* Value enumeration preserves RegSetValueEx call order */
|
|
|
|
value_len = 2;
|
|
|
|
ok(!RegEnumValueA(hKey, 0, value_buf, &value_len, NULL, NULL, NULL, NULL), "RegEnumValueA failed\n");
|
|
|
|
ok(strcmp(value_buf, "A") == 0, "Expected name \"A\", got %s\n", value_buf);
|
|
|
|
value_len = 2;
|
|
|
|
ok(!RegEnumValueA(hKey, 1, value_buf, &value_len, NULL, NULL, NULL, NULL), "RegEnumValueA failed\n");
|
|
|
|
todo_wine ok(strcmp(value_buf, "C") == 0, "Expected name \"C\", got %s\n", value_buf);
|
|
|
|
value_len = 2;
|
|
|
|
ok(!RegEnumValueA(hKey, 2, value_buf, &value_len, NULL, NULL, NULL, NULL), "RegEnumValueA failed\n");
|
|
|
|
todo_wine ok(strcmp(value_buf, "D") == 0, "Expected name \"D\", got %s\n", value_buf);
|
|
|
|
value_len = 2;
|
|
|
|
ok(!RegEnumValueA(hKey, 3, value_buf, &value_len, NULL, NULL, NULL, NULL), "RegEnumValueA failed\n");
|
|
|
|
todo_wine ok(strcmp(value_buf, "B") == 0, "Expected name \"B\", got %s\n", value_buf);
|
|
|
|
|
|
|
|
ok(!RegDeleteKey(HKEY_CURRENT_USER, keyname), "Failed to delete key\n");
|
|
|
|
}
|
|
|
|
|
2002-07-10 05:30:14 +02:00
|
|
|
START_TEST(registry)
|
|
|
|
{
|
2007-03-11 19:42:35 +01:00
|
|
|
/* Load pointers for functions that are not available in all Windows versions */
|
|
|
|
InitFunctionPtrs();
|
|
|
|
|
2002-07-10 05:30:14 +02:00
|
|
|
setup_main_key();
|
2006-06-09 22:46:56 +02:00
|
|
|
test_set_value();
|
2004-11-19 19:13:30 +01:00
|
|
|
create_test_entries();
|
2002-07-10 05:30:14 +02:00
|
|
|
test_enum_value();
|
2004-11-19 19:13:30 +01:00
|
|
|
test_query_value_ex();
|
2005-07-03 13:19:03 +02:00
|
|
|
test_get_value();
|
2005-02-21 21:37:26 +01:00
|
|
|
test_reg_open_key();
|
2005-06-16 22:34:34 +02:00
|
|
|
test_reg_create_key();
|
2005-02-21 21:37:26 +01:00
|
|
|
test_reg_close_key();
|
2005-04-16 12:49:10 +02:00
|
|
|
test_reg_delete_key();
|
2007-01-16 11:16:11 +01:00
|
|
|
test_reg_query_value();
|
2008-11-20 20:47:59 +01:00
|
|
|
test_string_termination();
|
2005-04-19 14:00:04 +02:00
|
|
|
|
|
|
|
/* SaveKey/LoadKey require the SE_BACKUP_NAME privilege to be set */
|
|
|
|
if (set_privileges(SE_BACKUP_NAME, TRUE) &&
|
|
|
|
set_privileges(SE_RESTORE_NAME, TRUE))
|
|
|
|
{
|
|
|
|
test_reg_save_key();
|
|
|
|
test_reg_load_key();
|
|
|
|
test_reg_unload_key();
|
|
|
|
|
|
|
|
set_privileges(SE_BACKUP_NAME, FALSE);
|
|
|
|
set_privileges(SE_RESTORE_NAME, FALSE);
|
|
|
|
}
|
2002-07-10 05:30:14 +02:00
|
|
|
|
2007-04-04 23:03:00 +02:00
|
|
|
test_reg_delete_tree();
|
2009-01-15 03:04:31 +01:00
|
|
|
test_rw_order();
|
2007-04-04 23:03:00 +02:00
|
|
|
|
2002-07-10 05:30:14 +02:00
|
|
|
/* cleanup */
|
|
|
|
delete_key( hkey_main );
|
2005-09-15 11:31:05 +02:00
|
|
|
|
|
|
|
test_regconnectregistry();
|
2002-07-10 05:30:14 +02:00
|
|
|
}
|