Revert "winex11.drv: Optimise getting the bits of a DIB after calling SetDIBits."
[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     ret=GetPrivateProfileSectionA("section1", buf, sizeof(buf), testfile4);
187     for( p = buf + strlen(buf) + 1; *p;p += strlen(p)+1)
188         p[-1] = ',';
189     ok( ret == 35 && !strcmp( buf, "name1=val1,name2=,name3,name4=val4"), "wrong section returned(%d): %s\n",
190             ret, buf);
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());
193
194     DeleteFileA( testfile4 );
195 }
196
197 static void test_profile_sections_names(void)
198 {
199     HANDLE h;
200     int ret;
201     DWORD count;
202     char buf[100];
203     WCHAR bufW[100];
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);
214     CloseHandle( h);
215
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" );
220     
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" );
225     
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" );
230     
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" );
237     
238     /* Test with sufficiently large buffer */
239     SetLastError(0xdeadbeef);
240     ret = GetPrivateProfileSectionNamesW( bufW, 29, testfile3W );
241     if (ret == 0 && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
242     {
243         skip("GetPrivateProfileSectionNamesW is not implemented\n");
244         DeleteFileA( testfile3 );
245         return;
246     }
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" );
249     
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" );
254     
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" );
259     
260     DeleteFileA( testfile3 );
261
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" );
268 }
269
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)
272 {
273     static const char *testfile1 = ".\\winesharing1.ini";
274     static const char *testfile2 = ".\\winesharing2.ini";
275
276     static const struct {
277         DWORD dwDesiredAccess;
278         DWORD dwShareMode;
279         DWORD write_error;
280         BOOL read_error;
281     } pe[] = {
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 }
292     };
293
294     int i;
295     BOOL ret;
296     DWORD size;
297     HANDLE h = 0;
298     char buffer[MAX_PATH];
299
300     for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
301     {
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);
306
307         ret = WritePrivateProfileString(SECTION, KEY, "12345", testfile1);
308         if (!pe[i].write_error)
309         {
310             ok( ret, "%d: WritePrivateProfileString failed with error %u\n", i, GetLastError() );
311             CloseHandle(h);
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 );
314         }
315         else
316         {
317             DWORD err = GetLastError();
318             ok( !ret, "%d: WritePrivateProfileString succeeded\n", i );
319             if (!ret)
320                 ok( err == pe[i].write_error, "%d: WritePrivateProfileString failed with error %u/%u\n",
321                     i, err, pe[i].write_error );
322             CloseHandle(h);
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 );
325         }
326
327         ok( DeleteFile(testfile1), "delete failed\n" );
328     }
329
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" );
333     CloseHandle( h );
334
335     for (i=0; i < sizeof(pe)/sizeof(pe[0]); i++)
336     {
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() );
344         else
345             ok( !ret, "%d: GetPrivateProfileString succeeded\n", i );
346         CloseHandle(h);
347     }
348     ok( DeleteFile(testfile2), "delete failed\n" );
349 }
350
351 START_TEST(profile)
352 {
353     test_profile_int();
354     test_profile_string();
355     test_profile_sections();
356     test_profile_sections_names();
357     test_profile_existing();
358 }