push 4e98c31ec75caed2ea3040ac2e710b58ba1ca0e1
[wine/hacks.git] / dlls / userenv / tests / userenv.c
blobdf2774b6b6a819bfdfffbbe8ddc6876cb1fcfdfe
1 /*
2 * Unit test suite for userenv functions
4 * Copyright 2008 Google (Lei Zhang)
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
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winnls.h"
29 #include "userenv.h"
31 #include "wine/test.h"
33 #define expect(EXPECTED,GOT) ok((GOT)==(EXPECTED), "Expected %d, got %d\n", (EXPECTED), (GOT))
34 #define expect_env(EXPECTED,GOT,VAR) ok((GOT)==(EXPECTED), "Expected %d, got %d for %s (%d)\n", (EXPECTED), (GOT), (VAR), j)
36 struct profile_item
38 const char * name;
39 const int todo[4];
42 /* Debugging functions from wine/libs/wine/debug.c, slightly modified */
44 /* allocate some tmp string space */
45 /* FIXME: this is not 100% thread-safe */
46 static char *get_tmp_space( int size )
48 static char *list[32];
49 static long pos;
50 char *ret;
51 int idx;
53 idx = ++pos % (sizeof(list)/sizeof(list[0]));
54 if ((ret = realloc( list[idx], size ))) list[idx] = ret;
55 return ret;
58 /* default implementation of wine_dbgstr_wn */
59 static const char *default_dbgstr_wn( const WCHAR *str, int n, BOOL quotes )
61 char *dst, *res;
63 if (!HIWORD(str))
65 if (!str) return "(null)";
66 res = get_tmp_space( 6 );
67 sprintf( res, "#%04x", LOWORD(str) );
68 return res;
70 if (n == -1) n = lstrlenW(str);
71 if (n < 0) n = 0;
72 else if (n > 200) n = 200;
73 dst = res = get_tmp_space( n * 5 + 7 );
74 if (quotes)
76 *dst++ = 'L';
77 *dst++ = '"';
79 while (n-- > 0)
81 WCHAR c = *str++;
82 switch (c)
84 case '\n': *dst++ = '\\'; *dst++ = 'n'; break;
85 case '\r': *dst++ = '\\'; *dst++ = 'r'; break;
86 case '\t': *dst++ = '\\'; *dst++ = 't'; break;
87 case '"': *dst++ = '\\'; *dst++ = '"'; break;
88 case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
89 default:
90 if (c >= ' ' && c <= 126)
91 *dst++ = (char)c;
92 else
94 *dst++ = '\\';
95 sprintf(dst,"%04x",c);
96 dst+=4;
100 if (quotes) *dst++ = '"';
101 if (*str)
103 *dst++ = '.';
104 *dst++ = '.';
105 *dst++ = '.';
107 *dst = 0;
108 return res;
111 const char *wine_dbgstr_wn( const WCHAR *s, int n )
113 return default_dbgstr_wn(s, n, TRUE);
116 const char *wine_dbgstr_w( const WCHAR *s )
118 return default_dbgstr_wn( s, -1, TRUE);
121 const char *userenv_dbgstr_w( const WCHAR *s )
123 return default_dbgstr_wn( s, -1, FALSE);
126 /* Helper function for retrieving environment variables */
127 static BOOL get_env(const WCHAR * env, const char * var, char ** result)
129 const WCHAR * p = env;
130 int envlen, varlen, buflen;
131 char buf[256];
133 if (!env || !var || !result) return FALSE;
135 varlen = strlen(var);
138 envlen = lstrlenW(p);
139 sprintf(buf, "%s", userenv_dbgstr_w(p));
140 if (CompareStringA(GetThreadLocale(), NORM_IGNORECASE|LOCALE_USE_CP_ACP, buf, min(envlen, varlen), var, varlen) == CSTR_EQUAL)
142 if (buf[varlen] == '=')
144 buflen = strlen(buf);
145 *result = HeapAlloc(GetProcessHeap(), 0, buflen + 1);
146 if (!*result) return FALSE;
147 memcpy(*result, buf, buflen + 1);
148 return TRUE;
151 p = p + envlen + 1;
152 } while (*p);
153 return FALSE;
156 static void test_create_env(void)
158 BOOL r;
159 HANDLE htok;
160 WCHAR * env1, * env2, * env3, * env4;
161 char * st;
162 int i, j;
164 static const struct profile_item common_vars[] = {
165 { "ALLUSERSPROFILE", { 1, 1, 0, 0 } },
166 { "CommonProgramFiles", { 1, 1, 1, 1 } },
167 { "ComSpec", { 1, 1, 0, 0 } },
168 { "COMPUTERNAME", { 1, 1, 1, 1 } },
169 { "NUMBER_OF_PROCESSORS", { 1, 1, 0, 0 } },
170 { "OS", { 1, 1, 0, 0 } },
171 { "PROCESSOR_ARCHITECTURE", { 1, 1, 0, 0 } },
172 { "PROCESSOR_IDENTIFIER", { 1, 1, 0, 0 } },
173 { "PROCESSOR_LEVEL", { 1, 1, 0, 0 } },
174 { "PROCESSOR_REVISION", { 1, 1, 0, 0 } },
175 { "SystemDrive", { 1, 1, 0, 0 } },
176 { "SystemRoot", { 1, 1, 0, 0 } },
177 { "windir", { 1, 1, 0, 0 } },
178 { "ProgramFiles", { 1, 1, 0, 0 } },
179 { 0, { 0, 0, 0, 0 } }
181 static const struct profile_item htok_vars[] = {
182 { "PATH", { 1, 1, 0, 0 } },
183 { "TEMP", { 1, 1, 0, 0 } },
184 { "TMP", { 1, 1, 0, 0 } },
185 { "USERPROFILE", { 1, 1, 0, 0 } },
186 { 0, { 0, 0, 0, 0 } }
189 r = SetEnvironmentVariableA("WINE_XYZZY", "ZZYZX");
190 expect(TRUE, r);
192 if (0)
194 /* Crashes on NT4 */
195 r = CreateEnvironmentBlock(NULL, NULL, FALSE);
196 expect(FALSE, r);
199 r = OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY|TOKEN_DUPLICATE, &htok);
200 expect(TRUE, r);
202 if (0)
204 /* Crashes on NT4 */
205 r = CreateEnvironmentBlock(NULL, htok, FALSE);
206 expect(FALSE, r);
209 r = CreateEnvironmentBlock((LPVOID) &env1, NULL, FALSE);
210 expect(TRUE, r);
212 r = CreateEnvironmentBlock((LPVOID) &env2, htok, FALSE);
213 expect(TRUE, r);
215 r = CreateEnvironmentBlock((LPVOID) &env3, NULL, TRUE);
216 expect(TRUE, r);
218 r = CreateEnvironmentBlock((LPVOID) &env4, htok, TRUE);
219 expect(TRUE, r);
221 /* Test for common environment variables */
222 i = 0;
223 while (common_vars[i].name)
225 j = 0;
226 r = get_env(env1, common_vars[i].name, &st);
227 if (common_vars[i].todo[j])
228 todo_wine expect_env(TRUE, r, common_vars[i].name);
229 else
230 expect_env(TRUE, r, common_vars[i].name);
231 j++;
232 r = get_env(env2, common_vars[i].name, &st);
233 if (common_vars[i].todo[j])
234 todo_wine expect_env(TRUE, r, common_vars[i].name);
235 else
236 expect_env(TRUE, r, common_vars[i].name);
237 j++;
238 r = get_env(env3, common_vars[i].name, &st);
239 if (common_vars[i].todo[j])
240 todo_wine expect_env(TRUE, r, common_vars[i].name);
241 else
242 expect_env(TRUE, r, common_vars[i].name);
243 j++;
244 r = get_env(env4, common_vars[i].name, &st);
245 if (common_vars[i].todo[j])
246 todo_wine expect_env(TRUE, r, common_vars[i].name);
247 else
248 expect_env(TRUE, r, common_vars[i].name);
249 i++;
252 /* Test for environment variables with values that depends on htok */
253 i = 0;
254 while (htok_vars[i].name)
256 j = 0;
257 r = get_env(env1, htok_vars[i].name, &st);
258 if (htok_vars[i].todo[j])
259 todo_wine expect_env(TRUE, r, htok_vars[i].name);
260 else
261 expect_env(TRUE, r, htok_vars[i].name);
262 j++;
263 r = get_env(env2, htok_vars[i].name, &st);
264 if (htok_vars[i].todo[j])
265 todo_wine expect_env(TRUE, r, htok_vars[i].name);
266 else
267 expect_env(TRUE, r, htok_vars[i].name);
268 j++;
269 r = get_env(env3, htok_vars[i].name, &st);
270 if (htok_vars[i].todo[j])
271 todo_wine expect_env(TRUE, r, htok_vars[i].name);
272 else
273 expect_env(TRUE, r, htok_vars[i].name);
274 j++;
275 r = get_env(env4, htok_vars[i].name, &st);
276 if (htok_vars[i].todo[j])
277 todo_wine expect_env(TRUE, r, htok_vars[i].name);
278 else
279 expect_env(TRUE, r, htok_vars[i].name);
280 i++;
283 r = get_env(env1, "WINE_XYZZY", &st);
284 expect(FALSE, r);
285 r = get_env(env2, "WINE_XYZZY", &st);
286 expect(FALSE, r);
287 r = get_env(env3, "WINE_XYZZY", &st);
288 expect(TRUE, r);
289 r = get_env(env4, "WINE_XYZZY", &st);
290 expect(TRUE, r);
293 START_TEST(userenv)
295 test_create_env();