kernel32/tests: Fix some test failures on several platforms.
[wine] / dlls / kernel32 / tests / profile.c
1 /*
2  * Unit tests for profile functions
3  *
4  * Copyright (c) 2003 Stefan Leichter
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #include "wine/test.h"
25 #include "windef.h"
26 #include "winbase.h"
27 #include "windows.h"
28
29 #define KEY      "ProfileInt"
30 #define SECTION  "Test"
31 #define TESTFILE ".\\testwine.ini"
32 #define TESTFILE2 ".\\testwine2.ini"
33
34 struct _profileInt { 
35     LPCSTR section;
36     LPCSTR key;
37     LPCSTR value;
38     LPCSTR iniFile;
39     INT defaultVal;
40     UINT result;
41     UINT result9x;
42 };
43
44 static void test_profile_int(void)
45 {
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},
72     };
73     int i, num_test = (sizeof(profileInt)/sizeof(struct _profileInt));
74     UINT res;
75
76     DeleteFileA( TESTFILE);
77
78     for (i=0; i < num_test; i++) {
79         if (profileInt[i].value)
80             WritePrivateProfileStringA(SECTION, KEY, profileInt[i].value, 
81                                       profileInt[i].iniFile);
82
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);
88     }
89
90     DeleteFileA( TESTFILE);
91 }
92
93 static void test_profile_string(void)
94 {
95     HANDLE h;
96     int ret;
97     DWORD count;
98     char buf[100];
99     char *p;
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);
109     CloseHandle( h);
110
111     /* enumerate the keys */
112     ret=GetPrivateProfileStringA( "s", NULL, "", buf, sizeof(buf),
113         TESTFILE2);
114     for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1) 
115         p[-1] = ',';
116     /* and test */
117     ok( ret == 18 && !strcmp( buf, "name1,name2,name4"), "wrong keys returned(%d): %s\n", ret,
118             buf);
119
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),
123         TESTFILE2);
124     for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1) 
125         p[-1] = ',';
126     ok( ret == 24 && !strcmp( buf, "name1,name2,name4,name5"), "wrong keys returned(%d): %s\n",
127             ret, buf);
128
129     DeleteFileA( TESTFILE2);
130 }
131
132 static void test_profile_sections(void)
133 {
134     HANDLE h;
135     int ret;
136     DWORD count;
137     char buf[100];
138     char *p;
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;
142
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);
148     CloseHandle( h);
149
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;
158
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());
165
166     if (!on_win98)
167     {
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());
172     }
173
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());
178
179     SetLastError(0xdeadbeef);
180     ret = GetPrivateProfileSectionA( "section1", buf, sizeof(buf), NULL );
181     ok( ret == 0, "expected return size 0, got %d\n", ret );
182     todo_wine
183     ok( GetLastError() == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
184
185     /* And a real one */
186     SetLastError(0xdeadbeef);
187     ret=GetPrivateProfileSectionA("section1", buf, sizeof(buf), testfile4);
188     for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1)
189         p[-1] = ',';
190     ok( ret == 35 && !strcmp( buf, "name1=val1,name2=,name3,name4=val4"), "wrong section returned(%d): %s\n",
191             ret, buf);
192     ok( buf[ret-1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
193     ok( GetLastError() == ERROR_SUCCESS, "expected ERROR_SUCCESS, got %d\n", GetLastError());
194
195     DeleteFileA( testfile4 );
196 }
197
198 static void test_profile_sections_names(void)
199 {
200     HANDLE h;
201     int ret;
202     DWORD count;
203     char buf[100];
204     WCHAR bufW[100];
205     static const char content[]="[section1]\r\n[section2]\r\n[section3]\r\n";
206     static const char testfile3[]=".\\testwine3.ini";
207     static const WCHAR testfile3W[]={ '.','\\','t','e','s','t','w','i','n','e','3','.','i','n','i',0 };
208     static const WCHAR not_here[] = {'.','\\','n','o','t','_','h','e','r','e','.','i','n','i',0};
209     DeleteFileA( testfile3 );
210     h = CreateFileA( testfile3, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
211         FILE_ATTRIBUTE_NORMAL, NULL);
212     ok( h != INVALID_HANDLE_VALUE, " cannot create %s\n", testfile3);
213     if( h == INVALID_HANDLE_VALUE) return;
214     WriteFile( h, content, sizeof(content), &count, NULL);
215     CloseHandle( h);
216
217     /* Test with sufficiently large buffer */
218     memset(buf, 0xc, sizeof(buf));
219     ret = GetPrivateProfileSectionNamesA( buf, 29, testfile3 );
220     ok( ret == 27, "expected return size 27, got %d\n", ret );
221     ok( buf[ret-1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
222     
223     /* Test with exactly fitting buffer */
224     memset(buf, 0xc, sizeof(buf));
225     ret = GetPrivateProfileSectionNamesA( buf, 28, testfile3 );
226     ok( ret == 26 ||
227         broken(ret == 28), /* Win9x, WinME */
228         "expected return size 26, got %d\n", ret );
229     todo_wine
230     ok( (buf[ret+1] == 0 && buf[ret] == 0) || /* W2K3 and higher */
231         broken(buf[ret+1] == 0xc && buf[ret] == 0) || /* NT4, W2K, WinXP */
232         broken(buf[ret-1] == 0 && buf[ret-2] == 0), /* Win9x, WinME */
233         "returned buffer not terminated with double-null\n" );
234
235     /* Test with a buffer too small */
236     memset(buf, 0xc, sizeof(buf));
237     ret = GetPrivateProfileSectionNamesA( buf, 27, testfile3 );
238     ok( ret == 25, "expected return size 25, got %d\n", ret );
239     todo_wine
240     ok( buf[ret+1] == 0 && buf[ret] == 0, "returned buffer not terminated with double-null\n" );
241     
242     /* Tests on nonexistent file */
243     memset(buf, 0xc, sizeof(buf));
244     ret = GetPrivateProfileSectionNamesA( buf, 10, ".\\not_here.ini" );
245     ok( ret == 0, "expected return size 0, got %d\n", ret );
246     ok( buf[0] == 0, "returned buffer not terminated with null\n" );
247     ok( buf[1] != 0, "returned buffer terminated with double-null\n" );
248     
249     /* Test with sufficiently large buffer */
250     SetLastError(0xdeadbeef);
251     memset(bufW, 0xcc, sizeof(bufW));
252     ret = GetPrivateProfileSectionNamesW( bufW, 29, testfile3W );
253     if (ret == 0 && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
254     {
255         skip("GetPrivateProfileSectionNamesW is not implemented\n");
256         DeleteFileA( testfile3 );
257         return;
258     }
259     ok( ret == 27, "expected return size 27, got %d\n", ret );
260     ok( bufW[ret-1] == 0 && bufW[ret] == 0, "returned buffer not terminated with double-null\n" );
261     
262     /* Test with exactly fitting buffer */
263     memset(bufW, 0xcc, sizeof(bufW));
264     ret = GetPrivateProfileSectionNamesW( bufW, 28, testfile3W );
265     ok( ret == 26, "expected return size 26, got %d\n", ret );
266     ok( (bufW[ret+1] == 0 && bufW[ret] == 0) || /* W2K3 and higher */
267         broken(bufW[ret+1] == 0xcccc && bufW[ret] == 0), /* NT4, W2K, WinXP */
268         "returned buffer not terminated with double-null\n" );
269
270     /* Test with a buffer too small */
271     memset(bufW, 0xcc, sizeof(bufW));
272     ret = GetPrivateProfileSectionNamesW( bufW, 27, testfile3W );
273     ok( ret == 25, "expected return size 25, got %d\n", ret );
274     ok( bufW[ret+1] == 0 && bufW[ret] == 0, "returned buffer not terminated with double-null\n" );
275     
276     DeleteFileA( testfile3 );
277
278     /* Tests on nonexistent file */
279     memset(bufW, 0xcc, sizeof(bufW));
280     ret = GetPrivateProfileSectionNamesW( bufW, 10, not_here );
281     ok( ret == 0, "expected return size 0, got %d\n", ret );
282     ok( bufW[0] == 0, "returned buffer not terminated with null\n" );
283     ok( bufW[1] != 0, "returned buffer terminated with double-null\n" );
284 }
285
286 /* If the ini-file has already been opened with CreateFile, WritePrivateProfileString failed in wine with an error ERROR_SHARING_VIOLATION,  some testing here */
287 static void test_profile_existing(void)
288 {
289     static const char *testfile1 = ".\\winesharing1.ini";
290     static const char *testfile2 = ".\\winesharing2.ini";
291
292     static const struct {
293         DWORD dwDesiredAccess;
294         DWORD dwShareMode;
295         DWORD write_error;
296         BOOL read_error;
297         DWORD broken_error;
298     } pe[] = {
299         {GENERIC_READ,  FILE_SHARE_READ,  ERROR_SHARING_VIOLATION, FALSE },
300         {GENERIC_READ,  FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
301         {GENERIC_WRITE, FILE_SHARE_READ,  ERROR_SHARING_VIOLATION, FALSE },
302         {GENERIC_WRITE, FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
303         {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ,  ERROR_SHARING_VIOLATION, FALSE },
304         {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_WRITE, ERROR_SHARING_VIOLATION, TRUE },
305         {GENERIC_READ,  FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE, ERROR_SHARING_VIOLATION /* nt4 */},
306         {GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE, ERROR_SHARING_VIOLATION /* nt4 */},
307         /*Thief demo (bug 5024) opens .ini file like this*/
308         {GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE, 0, FALSE, ERROR_SHARING_VIOLATION /* nt4 */}
309     };
310
311     int i;
312     BOOL ret;
313     DWORD size;
314     HANDLE h = 0;
315     char buffer[MAX_PATH];
316
317     for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
318     {
319         h = CreateFile(testfile1, pe[i].dwDesiredAccess, pe[i].dwShareMode, NULL,
320                        CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
321         ok(INVALID_HANDLE_VALUE != h, "%d: CreateFile failed\n",i);
322         SetLastError(0xdeadbeef);
323
324         ret = WritePrivateProfileString(SECTION, KEY, "12345", testfile1);
325         if (!pe[i].write_error)
326         {
327             if (!ret)
328                 ok( broken(GetLastError() == pe[i].broken_error),
329                     "%d: WritePrivateProfileString failed with error %u\n", i, GetLastError() );
330             CloseHandle(h);
331             size = GetPrivateProfileString(SECTION, KEY, 0, buffer, MAX_PATH, testfile1);
332             if (ret)
333                 ok( size == 5, "%d: test failed, number of characters copied: %d instead of 5\n", i, size );
334             else
335                 ok( !size, "%d: test failed, number of characters copied: %d instead of 0\n", i, size );
336         }
337         else
338         {
339             DWORD err = GetLastError();
340             ok( !ret, "%d: WritePrivateProfileString succeeded\n", i );
341             if (!ret)
342                 ok( err == pe[i].write_error, "%d: WritePrivateProfileString failed with error %u/%u\n",
343                     i, err, pe[i].write_error );
344             CloseHandle(h);
345             size = GetPrivateProfileString(SECTION, KEY, 0, buffer, MAX_PATH, testfile1);
346             ok( !size, "%d: test failed, number of characters copied: %d instead of 0\n", i, size );
347         }
348
349         ok( DeleteFile(testfile1), "delete failed\n" );
350     }
351
352     h = CreateFile(testfile2, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
353     sprintf( buffer, "[%s]\r\n%s=123\r\n", SECTION, KEY );
354     ok( WriteFile( h, buffer, strlen(buffer), &size, NULL ), "failed to write\n" );
355     CloseHandle( h );
356
357     for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
358     {
359         h = CreateFile(testfile2, pe[i].dwDesiredAccess, pe[i].dwShareMode, NULL,
360                        OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
361         ok(INVALID_HANDLE_VALUE != h, "%d: CreateFile failed\n",i);
362         SetLastError(0xdeadbeef);
363         ret = GetPrivateProfileStringA(SECTION, KEY, NULL, buffer, MAX_PATH, testfile2);
364         if (!pe[i].read_error)
365             ok( ret, "%d: GetPrivateProfileString failed with error %u\n", i, GetLastError() );
366         else
367             ok( !ret, "%d: GetPrivateProfileString succeeded\n", i );
368         CloseHandle(h);
369     }
370     ok( DeleteFile(testfile2), "delete failed\n" );
371 }
372
373 static void test_profile_delete_on_close(void)
374 {
375     static CHAR testfile[] = ".\\testwine5.ini";
376     HANDLE h;
377     DWORD size, res;
378     static const char contents[] = "[" SECTION "]\n" KEY "=123\n";
379
380     h = CreateFile(testfile, GENERIC_WRITE, FILE_SHARE_READ, NULL,
381                     CREATE_ALWAYS, FILE_FLAG_DELETE_ON_CLOSE, NULL);
382     ok( WriteFile( h, contents, sizeof contents - 1, &size, NULL ),
383                     "Cannot write test file: %x\n", GetLastError() );
384     ok( size == sizeof contents - 1, "Test file: partial write\n");
385
386     res = GetPrivateProfileInt(SECTION, KEY, 0, testfile);
387     ok( res == 123, "Got %d instead of 123\n", res);
388
389     /* This also deletes the file */
390     CloseHandle(h);
391 }
392
393 static void test_profile_refresh(void)
394 {
395     static CHAR testfile[] = ".\\winetest4.ini";
396     HANDLE h;
397     DWORD size, res;
398     static const char contents1[] = "[" SECTION "]\n" KEY "=123\n";
399     static const char contents2[] = "[" SECTION "]\n" KEY "=124\n";
400
401     h = CreateFile(testfile, GENERIC_WRITE, FILE_SHARE_READ, NULL,
402                     CREATE_ALWAYS, FILE_FLAG_DELETE_ON_CLOSE, NULL);
403     ok( WriteFile( h, contents1, sizeof contents1 - 1, &size, NULL ),
404                     "Cannot write test file: %x\n", GetLastError() );
405     ok( size == sizeof contents1 - 1, "Test file: partial write\n");
406
407     res = GetPrivateProfileInt(SECTION, KEY, 0, testfile);
408     ok( res == 123, "Got %d instead of 123\n", res);
409
410     CloseHandle(h);
411
412     /* Test proper invalidation of wine's profile file cache */
413
414     h = CreateFile(testfile, GENERIC_WRITE, FILE_SHARE_READ, NULL,
415                     CREATE_ALWAYS, FILE_FLAG_DELETE_ON_CLOSE, NULL);
416     ok( WriteFile( h, contents2, sizeof contents2 - 1, &size, NULL ),
417                     "Cannot write test file: %x\n", GetLastError() );
418     ok( size == sizeof contents2 - 1, "Test file: partial write\n");
419
420     res = GetPrivateProfileInt(SECTION, KEY, 0, testfile);
421     ok( res == 124, "Got %d instead of 124\n", res);
422
423     /* This also deletes the file */
424     CloseHandle(h);
425 }
426
427 static void create_test_file(LPCSTR name, LPCSTR data, DWORD size)
428 {
429     HANDLE hfile;
430     DWORD count;
431
432     hfile = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
433     ok(hfile != INVALID_HANDLE_VALUE, "cannot create %s\n", name);
434     WriteFile(hfile, data, size, &count, NULL);
435     CloseHandle(hfile);
436 }
437
438 static BOOL emptystr_ok(CHAR emptystr[MAX_PATH])
439 {
440     int i;
441
442     for(i = 0;i < MAX_PATH;++i)
443         if(emptystr[i] != 0)
444         {
445             trace("emptystr[%d] = %d\n",i,emptystr[i]);
446             return FALSE;
447         }
448
449     return TRUE;
450 }
451
452 static void test_GetPrivateProfileString(const char *content, const char *descript)
453 {
454     DWORD ret;
455     CHAR buf[MAX_PATH];
456     CHAR def_val[MAX_PATH];
457     CHAR path[MAX_PATH];
458     CHAR windir[MAX_PATH];
459     /* NT series crashes on r/o empty strings, so pass an r/w
460        empty string and check for modification */
461     CHAR emptystr[MAX_PATH] = "";
462     LPSTR tempfile;
463
464     static const char filename[] = ".\\winetest.ini";
465
466     trace("test_GetPrivateProfileStringA: %s\n", descript);
467
468     create_test_file(filename, content, lstrlenA(content));
469
470     /* Run this test series with caching. Wine won't cache profile
471        files younger than 2.1 seconds. */
472     Sleep(2500);
473
474     /* lpAppName is NULL */
475     lstrcpyA(buf, "kumquat");
476     ret = GetPrivateProfileStringA(NULL, "name1", "default",
477                                    buf, MAX_PATH, filename);
478     ok(ret == 18, "Expected 18, got %d\n", ret);
479     ok(!memcmp(buf, "section1\0section2\0", ret + 1),
480        "Expected \"section1\\0section2\\0\", got \"%s\"\n", buf);
481
482     /* lpAppName is empty */
483     lstrcpyA(buf, "kumquat");
484     ret = GetPrivateProfileStringA(emptystr, "name1", "default",
485                                    buf, MAX_PATH, filename);
486     ok(ret == 7, "Expected 7, got %d\n", ret);
487     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
488     ok(emptystr_ok(emptystr), "AppName modified\n");
489
490     /* lpAppName is missing */
491     lstrcpyA(buf, "kumquat");
492     ret = GetPrivateProfileStringA("notasection", "name1", "default",
493                                    buf, MAX_PATH, filename);
494     ok(ret == 7, "Expected 7, got %d\n", ret);
495     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
496
497     /* lpAppName is empty, lpDefault is NULL */
498     lstrcpyA(buf, "kumquat");
499     ret = GetPrivateProfileStringA(emptystr, "name1", NULL,
500                                    buf, MAX_PATH, filename);
501     ok(ret == 0, "Expected 0, got %d\n", ret);
502     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
503     ok(emptystr_ok(emptystr), "AppName modified\n");
504
505     /* lpAppName is empty, lpDefault is empty */
506     lstrcpyA(buf, "kumquat");
507     ret = GetPrivateProfileStringA(emptystr, "name1", "",
508                                    buf, MAX_PATH, filename);
509     ok(ret == 0, "Expected 0, got %d\n", ret);
510     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
511     ok(emptystr_ok(emptystr), "AppName modified\n");
512
513     /* lpAppName is empty, lpDefault has trailing blank characters */
514     lstrcpyA(buf, "kumquat");
515     /* lpDefault must be writable (trailing blanks are removed inplace in win9x) */
516     lstrcpyA(def_val, "default  ");
517     ret = GetPrivateProfileStringA(emptystr, "name1", def_val,
518                                    buf, MAX_PATH, filename);
519     ok(ret == 7, "Expected 7, got %d\n", ret);
520     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
521     ok(emptystr_ok(emptystr), "AppName modified\n");
522
523     /* lpAppName is empty, many blank characters in lpDefault */
524     lstrcpyA(buf, "kumquat");
525     /* lpDefault must be writable (trailing blanks are removed inplace in win9x) */
526     lstrcpyA(def_val, "one two  ");
527     ret = GetPrivateProfileStringA(emptystr, "name1", def_val,
528                                    buf, MAX_PATH, filename);
529     ok(ret == 7, "Expected 7, got %d\n", ret);
530     ok(!lstrcmpA(buf, "one two"), "Expected \"one two\", got \"%s\"\n", buf);
531     ok(emptystr_ok(emptystr), "AppName modified\n");
532
533     /* lpAppName is empty, blank character but not trailing in lpDefault */
534     lstrcpyA(buf, "kumquat");
535     ret = GetPrivateProfileStringA(emptystr, "name1", "one two",
536                                    buf, MAX_PATH, filename);
537     ok(ret == 7, "Expected 7, got %d\n", ret);
538     ok(!lstrcmpA(buf, "one two"), "Expected \"one two\", got \"%s\"\n", buf);
539     ok(emptystr_ok(emptystr), "AppName modified\n");
540
541     /* lpKeyName is NULL */
542     lstrcpyA(buf, "kumquat");
543     ret = GetPrivateProfileStringA("section1", NULL, "default",
544                                    buf, MAX_PATH, filename);
545     ok(ret == 18, "Expected 18, got %d\n", ret);
546     ok(!memcmp(buf, "name1\0name2\0name4\0", ret + 1),
547        "Expected \"name1\\0name2\\0name4\\0\", got \"%s\"\n", buf);
548
549     /* lpKeyName is empty */
550     lstrcpyA(buf, "kumquat");
551     ret = GetPrivateProfileStringA("section1", emptystr, "default",
552                                    buf, MAX_PATH, filename);
553     ok(ret == 7, "Expected 7, got %d\n", ret);
554     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
555     ok(emptystr_ok(emptystr), "KeyName modified\n");
556
557     /* lpKeyName is missing */
558     lstrcpyA(buf, "kumquat");
559     ret = GetPrivateProfileStringA("section1", "notakey", "default",
560                                    buf, MAX_PATH, filename);
561     ok(ret == 7, "Expected 7, got %d\n", ret);
562     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
563
564     /* lpKeyName is empty, lpDefault is NULL */
565     lstrcpyA(buf, "kumquat");
566     ret = GetPrivateProfileStringA("section1", emptystr, NULL,
567                                    buf, MAX_PATH, filename);
568     ok(ret == 0, "Expected 0, got %d\n", ret);
569     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
570     ok(emptystr_ok(emptystr), "KeyName modified\n");
571
572     /* lpKeyName is empty, lpDefault is empty */
573     lstrcpyA(buf, "kumquat");
574     ret = GetPrivateProfileStringA("section1", emptystr, "",
575                                    buf, MAX_PATH, filename);
576     ok(ret == 0, "Expected 0, got %d\n", ret);
577     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
578     ok(emptystr_ok(emptystr), "KeyName modified\n");
579
580     /* lpKeyName is empty, lpDefault has trailing blank characters */
581     lstrcpyA(buf, "kumquat");
582     /* lpDefault must be writable (trailing blanks are removed inplace in win9x) */
583     lstrcpyA(def_val, "default  ");
584     ret = GetPrivateProfileStringA("section1", emptystr, def_val,
585                                    buf, MAX_PATH, filename);
586     ok(ret == 7, "Expected 7, got %d\n", ret);
587     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
588     ok(emptystr_ok(emptystr), "KeyName modified\n");
589
590     if (0) /* crashes */
591     {
592         /* lpReturnedString is NULL */
593         ret = GetPrivateProfileStringA("section1", "name1", "default",
594                                        NULL, MAX_PATH, filename);
595     }
596
597     /* lpFileName is NULL */
598     lstrcpyA(buf, "kumquat");
599     ret = GetPrivateProfileStringA("section1", "name1", "default",
600                                    buf, MAX_PATH, NULL);
601     ok(ret == 7, "Expected 7, got %d\n", ret);
602     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
603
604     /* lpFileName is empty */
605     lstrcpyA(buf, "kumquat");
606     ret = GetPrivateProfileStringA("section1", "name1", "default",
607                                    buf, MAX_PATH, "");
608     ok(ret == 7, "Expected 7, got %d\n", ret);
609     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
610
611     /* lpFileName is nonexistent */
612     lstrcpyA(buf, "kumquat");
613     ret = GetPrivateProfileStringA("section1", "name1", "default",
614                                    buf, MAX_PATH, "nonexistent");
615     ok(ret == 7, "Expected 7, got %d\n", ret);
616     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
617
618     /* nSize is 0 */
619     lstrcpyA(buf, "kumquat");
620     ret = GetPrivateProfileStringA("section1", "name1", "default",
621                                    buf, 0, filename);
622     ok(ret == 0, "Expected 0, got %d\n", ret);
623     ok(!lstrcmpA(buf, "kumquat"), "Expected buf to be unchanged, got \"%s\"\n", buf);
624
625     /* nSize is exact size of output */
626     lstrcpyA(buf, "kumquat");
627     ret = GetPrivateProfileStringA("section1", "name1", "default",
628                                    buf, 4, filename);
629     ok(ret == 3, "Expected 3, got %d\n", ret);
630     ok(!lstrcmpA(buf, "val"), "Expected \"val\", got \"%s\"\n", buf);
631
632     /* nSize has room for NULL terminator */
633     lstrcpyA(buf, "kumquat");
634     ret = GetPrivateProfileStringA("section1", "name1", "default",
635                                    buf, 5, filename);
636     ok(ret == 4, "Expected 4, got %d\n", ret);
637     ok(!lstrcmpA(buf, "val1"), "Expected \"val1\", got \"%s\"\n", buf);
638
639     /* output is 1 character */
640     lstrcpyA(buf, "kumquat");
641     ret = GetPrivateProfileStringA("section1", "name4", "default",
642                                    buf, MAX_PATH, filename);
643     ok(ret == 1, "Expected 1, got %d\n", ret);
644     ok(!lstrcmpA(buf, "a"), "Expected \"a\", got \"%s\"\n", buf);
645
646     /* output is 1 character, no room for NULL terminator */
647     lstrcpyA(buf, "kumquat");
648     ret = GetPrivateProfileStringA("section1", "name4", "default",
649                                    buf, 1, filename);
650     ok(ret == 0, "Expected 0, got %d\n", ret);
651     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
652
653     /* lpAppName is NULL, not enough room for final section name */
654     lstrcpyA(buf, "kumquat");
655     ret = GetPrivateProfileStringA(NULL, "name1", "default",
656                                    buf, 16, filename);
657     ok(ret == 14, "Expected 14, got %d\n", ret);
658     ok(!memcmp(buf, "section1\0secti\0", ret + 1),
659        "Expected \"section1\\0secti\\0\", got \"%s\"\n", buf);
660
661     /* lpKeyName is NULL, not enough room for final key name */
662     lstrcpyA(buf, "kumquat");
663     ret = GetPrivateProfileStringA("section1", NULL, "default",
664                                    buf, 16, filename);
665     ok(ret == 14, "Expected 14, got %d\n", ret);
666     ok(!memcmp(buf, "name1\0name2\0na\0", ret + 1),
667        "Expected \"name1\\0name2\\0na\\0\", got \"%s\"\n", buf);
668
669     /* key value has quotation marks which are stripped */
670     lstrcpyA(buf, "kumquat");
671     ret = GetPrivateProfileStringA("section1", "name2", "default",
672                                    buf, MAX_PATH, filename);
673     ok(ret == 4, "Expected 4, got %d\n", ret);
674     ok(!lstrcmpA(buf, "val2"), "Expected \"val2\", got \"%s\"\n", buf);
675
676     /* case does not match */
677     lstrcpyA(buf, "kumquat");
678     ret = GetPrivateProfileStringA("section1", "NaMe1", "default",
679                                    buf, MAX_PATH, filename);
680     ok(ret == 4, "Expected 4, got %d\n", ret);
681     ok(!lstrcmpA(buf, "val1"), "Expected \"val1\", got \"%s\"\n", buf);
682
683     /* only filename is used */
684     lstrcpyA(buf, "kumquat");
685     ret = GetPrivateProfileStringA("section1", "NaMe1", "default",
686                                    buf, MAX_PATH, "winetest.ini");
687     ok(ret == 7, "Expected 7, got %d\n", ret);
688     ok(!lstrcmpA(buf, "default"), "Expected \"default\", got \"%s\"\n", buf);
689
690     GetWindowsDirectoryA(windir, MAX_PATH);
691     SetLastError(0xdeadbeef);
692     ret = GetTempFileNameA(windir, "pre", 0, path);
693     if (!ret && GetLastError() == ERROR_ACCESS_DENIED)
694     {
695         skip("Not allowed to create a file in the Windows directory\n");
696         DeleteFileA(filename);
697         return;
698     }
699     tempfile = strrchr(path, '\\') + 1;
700     create_test_file(path, content, lstrlenA(content));
701
702     /* only filename is used, file exists in windows directory */
703     lstrcpyA(buf, "kumquat");
704     ret = GetPrivateProfileStringA("section1", "NaMe1", "default",
705                                    buf, MAX_PATH, tempfile);
706     ok(ret == 4, "Expected 4, got %d\n", ret);
707     ok(!lstrcmpA(buf, "val1"), "Expected \"val1\", got \"%s\"\n", buf);
708
709     /* successful case */
710     lstrcpyA(buf, "kumquat");
711     ret = GetPrivateProfileStringA("section1", "name1", "default",
712                                    buf, MAX_PATH, filename);
713     ok(ret == 4, "Expected 4, got %d\n", ret);
714     ok(!lstrcmpA(buf, "val1"), "Expected \"val1\", got \"%s\"\n", buf);
715
716     DeleteFileA(path);
717     DeleteFileA(filename);
718 }
719
720 START_TEST(profile)
721 {
722     test_profile_int();
723     test_profile_string();
724     test_profile_sections();
725     test_profile_sections_names();
726     test_profile_existing();
727     test_profile_delete_on_close();
728     test_profile_refresh();
729     test_GetPrivateProfileString(
730         "[section1]\r\n"
731         "name1=val1\r\n"
732         "name2=\"val2\"\r\n"
733         "name3\r\n"
734         "name4=a\r\n"
735         "[section2]\r\n",
736         "CR+LF");
737     test_GetPrivateProfileString(
738         "[section1]\r"
739         "name1=val1\r"
740         "name2=\"val2\"\r"
741         "name3\r"
742         "name4=a\r"
743         "[section2]\r",
744         "CR only");
745 }