Keep track of per-column information inside the listview.
[wine] / dlls / advapi32 / tests / registry.c
1 /*
2  * Unit tests for registry functions
3  *
4  * Copyright (c) 2002 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <assert.h>
22 #include "wine/test.h"
23 #include "winbase.h"
24 #include "winreg.h"
25 #include "winerror.h"
26
27 static HKEY hkey_main;
28
29 /* delete key and all its subkeys */
30 static DWORD delete_key( HKEY hkey )
31 {
32     WCHAR name[MAX_PATH];
33     DWORD ret;
34
35     while (!(ret = RegEnumKeyW(hkey, 0, name, sizeof(name))))
36     {
37         HKEY tmp;
38         if (!(ret = RegOpenKeyExW( hkey, name, 0, KEY_ENUMERATE_SUB_KEYS, &tmp )))
39         {
40             ret = delete_key( tmp );
41             RegCloseKey( tmp );
42         }
43         if (ret) break;
44     }
45     if (ret != ERROR_NO_MORE_ITEMS) return ret;
46     RegDeleteKeyA( hkey, NULL );
47     return 0;
48 }
49
50 static void setup_main_key(void)
51 {
52     if (RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Test", &hkey_main )) delete_key( hkey_main );
53
54     assert (!RegCreateKeyExA( HKEY_CURRENT_USER, "Software\\Wine\\Test", 0, NULL,
55                               REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &hkey_main, NULL ));
56 }
57
58 static void test_enum_value(void)
59 {
60     DWORD res;
61     char value[20], data[20];
62     WCHAR valueW[20], dataW[20];
63     DWORD val_count, data_count, type;
64     static const WCHAR foobarW[] = {'f','o','o','b','a','r',0};
65     static const WCHAR testW[] = {'T','e','s','t',0};
66     static const WCHAR xxxW[] = {'x','x','x','x','x','x','x','x',0};
67
68     res = RegSetValueExA( hkey_main, "Test", 0, REG_SZ, (BYTE *)"foobar", 7 );
69     ok( res == 0, "RegSetValueExA failed error %ld", res );
70
71     /* overflow both name and data */
72     val_count = 2;
73     data_count = 2;
74     type = 1234;
75     strcpy( value, "xxxxxxxxxx" );
76     strcpy( data, "xxxxxxxxxx" );
77     res = RegEnumValueA( hkey_main, 0, value, &val_count, NULL, &type, data, &data_count );
78     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
79     ok( val_count == 2, "val_count set to %ld", val_count );
80     ok( data_count == 7, "data_count set to %ld instead of 7", data_count );
81     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
82     ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'", value );
83     ok( !strcmp( data, "xxxxxxxxxx" ), "data set to '%s'", data );
84
85     /* overflow name */
86     val_count = 3;
87     data_count = 20;
88     type = 1234;
89     strcpy( value, "xxxxxxxxxx" );
90     strcpy( data, "xxxxxxxxxx" );
91     res = RegEnumValueA( hkey_main, 0, value, &val_count, NULL, &type, data, &data_count );
92     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
93     ok( val_count == 3, "val_count set to %ld", val_count );
94     ok( data_count == 7, "data_count set to %ld instead of 7", data_count );
95     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
96     ok( !strcmp( value, "Te" ), "value set to '%s' instead of 'Te'", value );
97     ok( !strcmp( data, "foobar" ), "data set to '%s' instead of 'foobar'", data );
98
99     /* overflow empty name */
100     val_count = 0;
101     data_count = 20;
102     type = 1234;
103     strcpy( value, "xxxxxxxxxx" );
104     strcpy( data, "xxxxxxxxxx" );
105     res = RegEnumValueA( hkey_main, 0, value, &val_count, NULL, &type, data, &data_count );
106     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
107     ok( val_count == 0, "val_count set to %ld", val_count );
108     ok( data_count == 7, "data_count set to %ld instead of 7", data_count );
109     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
110     ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'", value );
111     ok( !strcmp( data, "foobar" ), "data set to '%s' instead of 'foobar'", data );
112
113     /* overflow data */
114     val_count = 20;
115     data_count = 2;
116     type = 1234;
117     strcpy( value, "xxxxxxxxxx" );
118     strcpy( data, "xxxxxxxxxx" );
119     res = RegEnumValueA( hkey_main, 0, value, &val_count, NULL, &type, data, &data_count );
120     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
121     ok( val_count == 20, "val_count set to %ld", val_count );
122     ok( data_count == 7, "data_count set to %ld instead of 7", data_count );
123     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
124     ok( !strcmp( value, "xxxxxxxxxx" ), "value set to '%s'", value );
125     ok( !strcmp( data, "xxxxxxxxxx" ), "data set to '%s'", data );
126
127     /* no overflow */
128     val_count = 20;
129     data_count = 20;
130     type = 1234;
131     strcpy( value, "xxxxxxxxxx" );
132     strcpy( data, "xxxxxxxxxx" );
133     res = RegEnumValueA( hkey_main, 0, value, &val_count, NULL, &type, data, &data_count );
134     ok( res == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %ld", res );
135     ok( val_count == 4, "val_count set to %ld instead of 4", val_count );
136     ok( data_count == 7, "data_count set to %ld instead of 7", data_count );
137     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
138     ok( !strcmp( value, "Test" ), "value is '%s' instead of Test", value );
139     ok( !strcmp( data, "foobar" ), "data is '%s' instead of foobar", data );
140
141     /* Unicode tests */
142
143     res = RegSetValueExW( hkey_main, testW, 0, REG_SZ, (BYTE *)foobarW, 7*sizeof(WCHAR) );
144     ok( res == 0, "RegSetValueExW failed error %ld", res );
145
146     /* overflow both name and data */
147     val_count = 2;
148     data_count = 2;
149     type = 1234;
150     memcpy( valueW, xxxW, sizeof(xxxW) );
151     memcpy( dataW, xxxW, sizeof(xxxW) );
152     res = RegEnumValueW( hkey_main, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
153     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
154     ok( val_count == 2, "val_count set to %ld", val_count );
155     ok( data_count == 7*sizeof(WCHAR), "data_count set to %ld instead of 7*sizeof(WCHAR)", data_count );
156     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
157     ok( !memcmp( valueW, xxxW, sizeof(xxxW) ), "value modified" );
158     ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified" );
159
160     /* overflow name */
161     val_count = 3;
162     data_count = 20;
163     type = 1234;
164     memcpy( valueW, xxxW, sizeof(xxxW) );
165     memcpy( dataW, xxxW, sizeof(xxxW) );
166     res = RegEnumValueW( hkey_main, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
167     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
168     ok( val_count == 3, "val_count set to %ld", val_count );
169     ok( data_count == 7*sizeof(WCHAR), "data_count set to %ld instead of 7*sizeof(WCHAR)", data_count );
170     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
171     ok( !memcmp( valueW, xxxW, sizeof(xxxW) ), "value modified" );
172     ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified" );
173
174     /* overflow data */
175     val_count = 20;
176     data_count = 2;
177     type = 1234;
178     memcpy( valueW, xxxW, sizeof(xxxW) );
179     memcpy( dataW, xxxW, sizeof(xxxW) );
180     res = RegEnumValueW( hkey_main, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
181     ok( res == ERROR_MORE_DATA, "expected ERROR_MORE_DATA, got %ld", res );
182     ok( val_count == 4, "val_count set to %ld instead of 4", val_count );
183     ok( data_count == 7*sizeof(WCHAR), "data_count set to %ld instead of 7*sizeof(WCHAR)", data_count );
184     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
185     ok( !memcmp( valueW, testW, sizeof(testW) ), "value is not 'Test'" );
186     ok( !memcmp( dataW, xxxW, sizeof(xxxW) ), "data modified" );
187
188     /* no overflow */
189     val_count = 20;
190     data_count = 20;
191     type = 1234;
192     memcpy( valueW, xxxW, sizeof(xxxW) );
193     memcpy( dataW, xxxW, sizeof(xxxW) );
194     res = RegEnumValueW( hkey_main, 0, valueW, &val_count, NULL, &type, (BYTE*)dataW, &data_count );
195     ok( res == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %ld", res );
196     ok( val_count == 4, "val_count set to %ld instead of 4", val_count );
197     ok( data_count == 7*sizeof(WCHAR), "data_count set to %ld instead of 7*sizeof(WCHAR)", data_count );
198     ok( type == REG_SZ, "type %ld is not REG_SZ", type );
199     ok( !memcmp( valueW, testW, sizeof(testW) ), "value is not 'Test'" );
200     ok( !memcmp( dataW, foobarW, sizeof(foobarW) ), "data is not 'foobar'" );
201
202     /* cleanup */
203     RegDeleteValueA( hkey_main, "Test" );
204 }
205
206 START_TEST(registry)
207 {
208     setup_main_key();
209     test_enum_value();
210
211     /* cleanup */
212     delete_key( hkey_main );
213 }