2 * Unit tests for C library environment routines
4 * Copyright 2004 Mike Hearn <mh@codeweavers.com>
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 "wine/test.h"
24 static const char *a_very_long_env_string
=
26 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/;"
27 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/;"
28 "/mingw/lib/gcc/mingw32/3.4.2/;"
29 "/usr/lib/gcc/mingw32/3.4.2/;"
30 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../../mingw32/lib/mingw32/3.4.2/;"
31 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../../mingw32/lib/;"
32 "/mingw/mingw32/lib/mingw32/3.4.2/;"
33 "/mingw/mingw32/lib/;"
34 "/mingw/lib/mingw32/3.4.2/;"
36 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../mingw32/3.4.2/;"
37 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../;"
38 "/mingw/lib/mingw32/3.4.2/;"
40 "/lib/mingw32/3.4.2/;"
42 "/usr/lib/mingw32/3.4.2/;"
45 void __cdecl
__getmainargs(int *, char ***, char ***, int, int *);
46 void __cdecl
__wgetmainargs(int *, wchar_t ***, wchar_t ***, int, int *);
48 static char ***(__cdecl
*p__p__environ
)(void);
49 static WCHAR
***(__cdecl
*p__p__wenviron
)(void);
51 static char ***p_environ
;
52 static WCHAR
***p_wenviron
;
54 static void init(void)
56 HMODULE hmod
= GetModuleHandleA("msvcrt.dll");
58 p__p__environ
= (void *)GetProcAddress(hmod
, "__p__environ");
59 p__p__wenviron
= (void *)GetProcAddress(hmod
, "__p__wenviron");
60 p_environ
= (void *)GetProcAddress(hmod
, "_environ");
61 p_wenviron
= (void *)GetProcAddress(hmod
, "_wenviron");
64 static void test_system(void)
66 int ret
= system(NULL
);
67 ok(ret
== 1, "Expected system to return 1, got %d\n", ret
);
69 ret
= system("echo OK");
70 ok(ret
== 0, "Expected system to return 0, got %d\n", ret
);
73 static void test__environ(void)
76 char **argv
, **envp
= NULL
;
79 ok( p_environ
!= NULL
, "Expected the pointer to _environ to be non-NULL\n" );
81 ok( *p_environ
!= NULL
, "Expected _environ to be initialized on startup\n" );
83 if (!p_environ
|| !*p_environ
)
85 skip( "_environ pointers are not valid\n" );
89 /* Examine the returned pointer from __p__environ(), if available. */
92 ok( *p__p__environ() == *p_environ
,
93 "Expected _environ pointers to be identical\n" );
96 skip( "__p__environ() is not available\n" );
98 /* Note that msvcrt from Windows versions older than Vista
99 * expects the mode pointer parameter to be valid.*/
100 __getmainargs(&argc
, &argv
, &envp
, 0, &mode
);
102 ok( envp
!= NULL
, "Expected initial environment block pointer to be non-NULL\n" );
105 skip( "Initial environment block pointer is not valid\n" );
113 ok( envp
[i
] != NULL
, "Expected environment block pointer element to be non-NULL\n" );
114 ok( !strcmp((*p_environ
)[i
], envp
[i
]),
115 "Expected _environ and environment block pointer strings (%s vs. %s) to match\n",
116 (*p_environ
)[i
], envp
[i
] );
120 ok( !envp
[i
], "Expected environment block pointer element to be NULL, got %p\n", envp
[i
] );
126 static void test__wenviron(void)
128 static const WCHAR cat_eq_dogW
[] = {'c','a','t','=','d','o','g',0};
129 static const WCHAR cat_eqW
[] = {'c','a','t','=',0};
132 char **argv
, **envp
= NULL
;
133 WCHAR
**wargv
, **wenvp
= NULL
;
136 ok( p_wenviron
!= NULL
, "Expected the pointer to _wenviron to be non-NULL\n" );
138 ok( *p_wenviron
== NULL
, "Expected _wenviron to be NULL, got %p\n", *p_wenviron
);
141 skip( "Pointer to _wenviron is not valid\n" );
145 /* Examine the returned pointer from __p__wenviron(), if available. */
148 ok( *p__p__wenviron() == NULL
,
149 "Expected _wenviron pointers to be NULL\n" );
152 skip( "__p__wenviron() is not available\n" );
154 /* __getmainargs doesn't initialize _wenviron. */
155 __getmainargs(&argc
, &argv
, &envp
, 0, &mode
);
157 ok( *p_wenviron
== NULL
, "Expected _wenviron to be NULL, got %p\n", *p_wenviron
);
158 ok( envp
!= NULL
, "Expected initial environment block pointer to be non-NULL\n" );
161 skip( "Initial environment block pointer is not valid\n" );
165 /* Neither does calling the non-Unicode environment manipulation functions. */
166 ok( _putenv("cat=dog") == 0, "failed setting cat=dog\n" );
167 ok( *p_wenviron
== NULL
, "Expected _wenviron to be NULL, got %p\n", *p_wenviron
);
168 ok( _putenv("cat=") == 0, "failed deleting cat\n" );
170 /* _wenviron isn't initialized until __wgetmainargs is called or
171 * one of the Unicode environment manipulation functions is called. */
172 ok( _wputenv(cat_eq_dogW
) == 0, "failed setting cat=dog\n" );
173 ok( *p_wenviron
!= NULL
, "Expected _wenviron to be non-NULL\n" );
174 ok( _wputenv(cat_eqW
) == 0, "failed deleting cat\n" );
176 __wgetmainargs(&argc
, &wargv
, &wenvp
, 0, &mode
);
178 ok( *p_wenviron
!= NULL
, "Expected _wenviron to be non-NULL\n" );
179 ok( wenvp
!= NULL
, "Expected initial environment block pointer to be non-NULL\n" );
182 skip( "Initial environment block pointer is not valid\n" );
186 /* Examine the returned pointer from __p__wenviron(),
187 * if available, after _wenviron is initialized. */
190 ok( *p__p__wenviron() == *p_wenviron
,
191 "Expected _wenviron pointers to be identical\n" );
196 if ((*p_wenviron
)[i
])
198 ok( wenvp
[i
] != NULL
, "Expected environment block pointer element to be non-NULL\n" );
199 ok( !winetest_strcmpW((*p_wenviron
)[i
], wenvp
[i
]),
200 "Expected _wenviron and environment block pointer strings (%s vs. %s) to match\n",
201 wine_dbgstr_w((*p_wenviron
)[i
]), wine_dbgstr_w(wenvp
[i
]) );
205 ok( !wenvp
[i
], "Expected environment block pointer element to be NULL, got %p\n", wenvp
[i
] );
211 static void test_environment_manipulation(void)
213 ok( _putenv("cat=") == 0, "_putenv failed on deletion of nonexistent environment variable\n" );
214 ok( _putenv("cat=dog") == 0, "failed setting cat=dog\n" );
215 ok( strcmp(getenv("cat"), "dog") == 0, "getenv did not return 'dog'\n" );
216 ok( _putenv("cat=") == 0, "failed deleting cat\n" );
218 ok( _putenv("=") == -1, "should not accept '=' as input\n" );
219 ok( _putenv("=dog") == -1, "should not accept '=dog' as input\n" );
220 ok( _putenv(a_very_long_env_string
) == 0, "_putenv failed for long environment string\n");
222 ok( getenv("nonexistent") == NULL
, "getenv should fail with nonexistent var name\n" );
229 /* The environ tests should always be run first, as they assume
230 * that the process has not manipulated the environment. */
233 test_environment_manipulation();