2 * Unit tests for profile functions
4 * Copyright (c) 2003 Stefan Leichter
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/test.h"
29 #define KEY "ProfileInt"
30 #define SECTION "Test"
31 #define TESTFILE ".\\testwine.ini"
32 #define TESTFILE2 ".\\testwine2.ini"
44 static void test_profile_int(void)
46 struct _profileInt profileInt[]={
47 { NULL, NULL, NULL, NULL, 70, 0 , 0}, /* 0 */
48 { NULL, NULL, NULL, TESTFILE, -1, 4294967295U, 0},
49 { NULL, NULL, NULL, TESTFILE, 1, 1 , 0},
50 { SECTION, NULL, NULL, TESTFILE, -1, 4294967295U, 0},
51 { SECTION, NULL, NULL, TESTFILE, 1, 1 , 0},
52 { NULL, KEY, NULL, TESTFILE, -1, 4294967295U, 0}, /* 5 */
53 { NULL, KEY, NULL, TESTFILE, 1, 1 , 0},
54 { SECTION, KEY, NULL, TESTFILE, -1, 4294967295U, 4294967295U},
55 { SECTION, KEY, NULL, TESTFILE, 1, 1 , 1},
56 { SECTION, KEY, "-1", TESTFILE, -1, 4294967295U, 4294967295U},
57 { SECTION, KEY, "-1", TESTFILE, 1, 4294967295U, 4294967295U}, /* 10 */
58 { SECTION, KEY, "1", TESTFILE, -1, 1 , 1},
59 { SECTION, KEY, "1", TESTFILE, 1, 1 , 1},
60 { SECTION, KEY, "+1", TESTFILE, -1, 1 , 0},
61 { SECTION, KEY, "+1", TESTFILE, 1, 1 , 0},
62 { SECTION, KEY, "4294967296", TESTFILE, -1, 0 , 0}, /* 15 */
63 { SECTION, KEY, "4294967296", TESTFILE, 1, 0 , 0},
64 { SECTION, KEY, "4294967297", TESTFILE, -1, 1 , 1},
65 { SECTION, KEY, "4294967297", TESTFILE, 1, 1 , 1},
66 { SECTION, KEY, "-4294967297", TESTFILE, -1, 4294967295U, 4294967295U},
67 { SECTION, KEY, "-4294967297", TESTFILE, 1, 4294967295U, 4294967295U}, /* 20 */
68 { SECTION, KEY, "42A94967297", TESTFILE, -1, 42 , 42},
69 { SECTION, KEY, "42A94967297", TESTFILE, 1, 42 , 42},
70 { SECTION, KEY, "B4294967297", TESTFILE, -1, 0 , 0},
71 { SECTION, KEY, "B4294967297", TESTFILE, 1, 0 , 0},
73 int i, num_test = (sizeof(profileInt)/sizeof(struct _profileInt));
76 DeleteFileA( TESTFILE);
78 for (i=0; i < num_test; i++) {
79 if (profileInt[i].value)
80 WritePrivateProfileStringA(SECTION, KEY, profileInt[i].value,
81 profileInt[i].iniFile);
83 res = GetPrivateProfileIntA(profileInt[i].section, profileInt[i].key,
84 profileInt[i].defaultVal, profileInt[i].iniFile);
85 ok((res == profileInt[i].result) || (res == profileInt[i].result9x),
86 "test<%02d>: ret<%010u> exp<%010u><%010u>\n",
87 i, res, profileInt[i].result, profileInt[i].result9x);
90 DeleteFileA( TESTFILE);
93 static void test_profile_string(void)
100 /* test that lines without an '=' will not be enumerated */
101 /* in the case below, name2 is a key while name3 is not. */
102 char content[]="[s]\r\nname1=val1\r\nname2=\r\nname3\r\nname4=val4\r\n";
103 DeleteFileA( TESTFILE2);
104 h = CreateFileA( TESTFILE2, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
105 FILE_ATTRIBUTE_NORMAL, NULL);
106 ok( h != INVALID_HANDLE_VALUE, " cannot create %s\n", TESTFILE2);
107 if( h == INVALID_HANDLE_VALUE) return;
108 WriteFile( h, content, sizeof(content), &count, NULL);
111 /* enumerate the keys */
112 ret=GetPrivateProfileStringA( "s", NULL, "", buf, sizeof(buf),
114 for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1)
117 ok( ret == 18 && !strcmp( buf, "name1,name2,name4"), "wrong keys returned(%d): %s\n", ret,
120 /* add a new key to test that the file is quite usable */
121 WritePrivateProfileStringA( "s", "name5", "val5", TESTFILE2);
122 ret=GetPrivateProfileStringA( "s", NULL, "", buf, sizeof(buf),
124 for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1)
126 ok( ret == 24 && !strcmp( buf, "name1,name2,name4,name5"), "wrong keys returned(%d): %s\n",
129 DeleteFileA( TESTFILE2);
132 static void test_profile_sections(void)
139 static const char content[]="[section1]\r\nname1=val1\r\nname2=\r\nname3\r\nname4=val4\r\n[section2]\r\n";
140 static const char testfile4[]=".\\testwine4.ini";
141 BOOL on_win98 = FALSE;
143 DeleteFileA( testfile4 );
144 h = CreateFileA( testfile4, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
145 ok( h != INVALID_HANDLE_VALUE, " cannot create %s\n", testfile4);
146 if( h == INVALID_HANDLE_VALUE) return;
147 WriteFile( h, content, sizeof(content), &count, NULL);
150 /* Some parameter checking */
151 SetLastError(0xdeadbeef);
152 ret = GetPrivateProfileSectionA( NULL, NULL, 0, NULL );
153 ok( ret == 0, "expected return size 0, got %d\n", ret );
154 ok( GetLastError() == ERROR_INVALID_PARAMETER ||
155 GetLastError() == 0xdeadbeef /* Win98 */,
156 "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
157 if (GetLastError() == 0xdeadbeef) on_win98 = TRUE;
159 SetLastError(0xdeadbeef);
160 ret = GetPrivateProfileSectionA( NULL, NULL, 0, testfile4 );
161 ok( ret == 0, "expected return size 0, got %d\n", ret );
162 ok( GetLastError() == ERROR_INVALID_PARAMETER ||
163 GetLastError() == 0xdeadbeef /* Win98 */,
164 "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
168 SetLastError(0xdeadbeef);
169 ret = GetPrivateProfileSectionA( "section1", NULL, 0, testfile4 );
170 ok( ret == 0, "expected return size 0, got %d\n", ret );
171 ok( GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
174 SetLastError(0xdeadbeef);
175 ret = GetPrivateProfileSectionA( NULL, buf, sizeof(buf), testfile4 );
176 ok( ret == 0, "expected return size 0, got %d\n", ret );
177 ok( GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
179 SetLastError(0xdeadbeef);
180 ret = GetPrivateProfileSectionA( "section1", buf, sizeof(buf), NULL );
181 ok( ret == 0, "expected return size 0, got %d\n", ret );
183 ok( GetLastError() == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
186 ret=GetPrivateProfileSectionA("section1", buf, sizeof(buf), testfile4);
187 for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1)
189 ok( ret == 35 && !strcmp( buf, "name1=val1,name2=,name3,name4=val4"), "wrong section returned(%d): %s\n",
191 ok( buf[ret-1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
192 ok( GetLastError() == S_OK, "expected S_OK, got %d\n", GetLastError());
194 DeleteFileA( testfile4 );
197 static void test_profile_sections_names(void)
204 static const char content[]="[section1]\r\n[section2]\r\n[section3]\r\n";
205 static const char testfile3[]=".\\testwine3.ini";
206 static const WCHAR testfile3W[]={ '.','\\','t','e','s','t','w','i','n','e','3','.','i','n','i',0 };
207 static const WCHAR not_here[] = {'.','\\','n','o','t','_','h','e','r','e','.','i','n','i',0};
208 DeleteFileA( testfile3 );
209 h = CreateFileA( testfile3, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
210 FILE_ATTRIBUTE_NORMAL, NULL);
211 ok( h != INVALID_HANDLE_VALUE, " cannot create %s\n", testfile3);
212 if( h == INVALID_HANDLE_VALUE) return;
213 WriteFile( h, content, sizeof(content), &count, NULL);
216 /* Test with sufficiently large buffer */
217 ret = GetPrivateProfileSectionNamesA( buf, 29, testfile3 );
218 ok( ret == 27, "expected return size 27, got %d\n", ret );
219 ok( buf[ret-1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
221 /* Test with exactly fitting buffer */
222 ret = GetPrivateProfileSectionNamesA( buf, 28, testfile3 );
223 ok( ret == 26, "expected return size 26, got %d\n", ret );
224 ok( buf[ret+1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
226 /* Test with a buffer too small */
227 ret = GetPrivateProfileSectionNamesA( buf, 27, testfile3 );
228 ok( ret == 25, "expected return size 25, got %d\n", ret );
229 ok( buf[ret+1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
231 /* Tests on nonexistent file */
232 memset(buf, 0xcc, sizeof(buf));
233 ret = GetPrivateProfileSectionNamesA( buf, 10, ".\\not_here.ini" );
234 ok( ret == 0, "expected return size 0, got %d\n", ret );
235 ok( buf[0] == 0, "returned buffer not terminated with null\n" );
236 ok( buf[1] != 0, "returned buffer terminated with double-null\n" );
238 /* Test with sufficiently large buffer */
239 SetLastError(0xdeadbeef);
240 ret = GetPrivateProfileSectionNamesW( bufW, 29, testfile3W );
241 if (ret == 0 && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
243 skip("GetPrivateProfileSectionNamesW is not implemented\n");
244 DeleteFileA( testfile3 );
247 ok( ret == 27, "expected return size 27, got %d\n", ret );
248 ok( bufW[ret-1] == 0 && bufW[ret] == 0, "returned buffer not terminated with double-null\n" );
250 /* Test with exactly fitting buffer */
251 ret = GetPrivateProfileSectionNamesW( bufW, 28, testfile3W );
252 ok( ret == 26, "expected return size 26, got %d\n", ret );
253 ok( bufW[ret+1] == 0 && bufW[ret] == 0, "returned buffer not terminated with double-null\n" );
255 /* Test with a buffer too small */
256 ret = GetPrivateProfileSectionNamesW( bufW, 27, testfile3W );
257 ok( ret == 25, "expected return size 25, got %d\n", ret );
258 ok( bufW[ret+1] == 0 && bufW[ret] == 0, "returned buffer not terminated with double-null\n" );
260 DeleteFileA( testfile3 );
262 /* Tests on nonexistent file */
263 memset(bufW, 0xcc, sizeof(bufW));
264 ret = GetPrivateProfileSectionNamesW( bufW, 10, not_here );
265 ok( ret == 0, "expected return size 0, got %d\n", ret );
266 ok( bufW[0] == 0, "returned buffer not terminated with null\n" );
267 ok( bufW[1] != 0, "returned buffer terminated with double-null\n" );
270 /* If the ini-file has already been opened with CreateFile, WritePrivateProfileString failed in wine with an error ERROR_SHARING_VIOLATION, some testing here */
271 static void test_profile_existing(void)
273 static const char *testfile1 = ".\\winesharing1.ini";
274 static const char *testfile2 = ".\\winesharing2.ini";
276 static const struct {
277 DWORD dwDesiredAccess;
282 {GENERIC_READ, FILE_SHARE_READ, ERROR_SHARING_VIOLATION, FALSE },
283 {GENERIC_READ, FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
284 {GENERIC_WRITE, FILE_SHARE_READ, ERROR_SHARING_VIOLATION, FALSE },
285 {GENERIC_WRITE, FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
286 {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, ERROR_SHARING_VIOLATION, FALSE },
287 {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
288 {GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE },
289 {GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE },
290 /*Thief demo (bug 5024) opens .ini file like this*/
291 {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE }
298 char buffer[MAX_PATH];
300 for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
302 h = CreateFile(testfile1, pe[i].dwDesiredAccess, pe[i].dwShareMode, NULL,
303 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
304 ok(INVALID_HANDLE_VALUE != h, "%d: CreateFile failed\n",i);
305 SetLastError(0xdeadbeef);
307 ret = WritePrivateProfileString(SECTION, KEY, "12345", testfile1);
308 if (!pe[i].write_error)
310 ok( ret, "%d: WritePrivateProfileString failed with error %u\n", i, GetLastError() );
312 size = GetPrivateProfileString(SECTION, KEY, 0, buffer, MAX_PATH, testfile1);
313 ok( size == 5, "%d: test failed, number of characters copied: %d instead of 5\n", i, size );
317 DWORD err = GetLastError();
318 ok( !ret, "%d: WritePrivateProfileString succeeded\n", i );
320 ok( err == pe[i].write_error, "%d: WritePrivateProfileString failed with error %u/%u\n",
321 i, err, pe[i].write_error );
323 size = GetPrivateProfileString(SECTION, KEY, 0, buffer, MAX_PATH, testfile1);
324 ok( !size, "%d: test failed, number of characters copied: %d instead of 0\n", i, size );
327 ok( DeleteFile(testfile1), "delete failed\n" );
330 h = CreateFile(testfile2, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
331 sprintf( buffer, "[%s]\r\n%s=123\r\n", SECTION, KEY );
332 ok( WriteFile( h, buffer, strlen(buffer), &size, NULL ), "failed to write\n" );
335 for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
337 h = CreateFile(testfile2, pe[i].dwDesiredAccess, pe[i].dwShareMode, NULL,
338 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
339 ok(INVALID_HANDLE_VALUE != h, "%d: CreateFile failed\n",i);
340 SetLastError(0xdeadbeef);
341 ret = GetPrivateProfileStringA(SECTION, KEY, NULL, buffer, MAX_PATH, testfile2);
342 if (!pe[i].read_error)
343 ok( ret, "%d: GetPrivateProfileString failed with error %u\n", i, GetLastError() );
345 ok( !ret, "%d: GetPrivateProfileString succeeded\n", i );
348 ok( DeleteFile(testfile2), "delete failed\n" );
354 test_profile_string();
355 test_profile_sections();
356 test_profile_sections_names();
357 test_profile_existing();