sl@0
|
1 |
/* GLIB - Library of useful routines for C programming
|
sl@0
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
sl@0
|
3 |
* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/*
|
sl@0
|
21 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
sl@0
|
22 |
* file for a list of people on the GLib Team. See the ChangeLog
|
sl@0
|
23 |
* files for a list of changes. These files are distributed with
|
sl@0
|
24 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "config.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
#undef G_DISABLE_ASSERT
|
sl@0
|
30 |
#undef G_LOG_DOMAIN
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifdef GLIB_COMPILATION
|
sl@0
|
33 |
#undef GLIB_COMPILATION
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
#include <stdio.h>
|
sl@0
|
37 |
#include <stdlib.h>
|
sl@0
|
38 |
#include <string.h>
|
sl@0
|
39 |
|
sl@0
|
40 |
#include <glib.h>
|
sl@0
|
41 |
|
sl@0
|
42 |
#ifdef HAVE_UNISTD_H
|
sl@0
|
43 |
#include <unistd.h>
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
|
sl@0
|
46 |
#ifdef __SYMBIAN32__
|
sl@0
|
47 |
#include "mrt2_glib2_test.h"
|
sl@0
|
48 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
int
|
sl@0
|
52 |
main (int argc, char *argv[])
|
sl@0
|
53 |
{
|
sl@0
|
54 |
gboolean result;
|
sl@0
|
55 |
const gchar *data;
|
sl@0
|
56 |
gchar *variable = "TEST_G_SETENV";
|
sl@0
|
57 |
gchar *value1 = "works";
|
sl@0
|
58 |
gchar *value2 = "again";
|
sl@0
|
59 |
|
sl@0
|
60 |
#ifdef __SYMBIAN32__
|
sl@0
|
61 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
62 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
63 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
64 |
|
sl@0
|
65 |
data = g_getenv (variable);
|
sl@0
|
66 |
g_assert (data == NULL && "TEST_G_SETENV already set");
|
sl@0
|
67 |
|
sl@0
|
68 |
result = g_setenv (variable, value1, TRUE);
|
sl@0
|
69 |
g_assert (result && "g_setenv() failed");
|
sl@0
|
70 |
|
sl@0
|
71 |
data = g_getenv (variable);
|
sl@0
|
72 |
g_assert (data != NULL && "g_getenv() returns NULL");
|
sl@0
|
73 |
g_assert (strcmp (data, value1) == 0 && "g_getenv() returns wrong value");
|
sl@0
|
74 |
|
sl@0
|
75 |
result = g_setenv (variable, value2, FALSE);
|
sl@0
|
76 |
g_assert (result && "g_setenv() failed");
|
sl@0
|
77 |
|
sl@0
|
78 |
data = g_getenv (variable);
|
sl@0
|
79 |
g_assert (data != NULL && "g_getenv() returns NULL");
|
sl@0
|
80 |
g_assert (strcmp (data, value2) != 0 && "g_setenv() always overwrites");
|
sl@0
|
81 |
g_assert (strcmp (data, value1) == 0 && "g_getenv() returns wrong value");
|
sl@0
|
82 |
|
sl@0
|
83 |
result = g_setenv (variable, value2, TRUE);
|
sl@0
|
84 |
g_assert (result && "g_setenv() failed");
|
sl@0
|
85 |
|
sl@0
|
86 |
data = g_getenv (variable);
|
sl@0
|
87 |
g_assert (data != NULL && "g_getenv() returns NULL");
|
sl@0
|
88 |
g_assert (strcmp (data, value1) != 0 && "g_setenv() doesn't overwrite");
|
sl@0
|
89 |
g_assert (strcmp (data, value2) == 0 && "g_getenv() returns wrong value");
|
sl@0
|
90 |
|
sl@0
|
91 |
g_unsetenv (variable);
|
sl@0
|
92 |
data = g_getenv (variable);
|
sl@0
|
93 |
g_assert (data == NULL && "g_unsetenv() doesn't work");
|
sl@0
|
94 |
|
sl@0
|
95 |
#if 0
|
sl@0
|
96 |
/* We can't test this, because it's an illegal argument that
|
sl@0
|
97 |
* we g_return_if_fail for.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
result = g_setenv ("foo=bar", "baz", TRUE);
|
sl@0
|
100 |
g_assert (!result && "g_setenv() accepts '=' in names");
|
sl@0
|
101 |
#endif
|
sl@0
|
102 |
|
sl@0
|
103 |
result = g_setenv ("foo", "bar=baz", TRUE);
|
sl@0
|
104 |
g_assert (result && "g_setenv() doesn't accept '=' in values");
|
sl@0
|
105 |
#if 0
|
sl@0
|
106 |
/* While glibc supports '=' in names in getenv(), SUS doesn't say anything about it,
|
sl@0
|
107 |
* and Solaris doesn't support it.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
data = g_getenv ("foo=bar");
|
sl@0
|
110 |
g_assert (strcmp (data, "baz") == 0 && "g_getenv() doesn't support '=' in names");
|
sl@0
|
111 |
#endif
|
sl@0
|
112 |
data = g_getenv ("foo");
|
sl@0
|
113 |
g_assert (strcmp (data, "bar=baz") == 0 && "g_getenv() doesn't support '=' in values");
|
sl@0
|
114 |
|
sl@0
|
115 |
#if 0
|
sl@0
|
116 |
/* We can't test this, because it's an illegal argument that
|
sl@0
|
117 |
* we g_return_if_fail for. Plus how would we check for failure,
|
sl@0
|
118 |
* since we can't set the value...
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
g_unsetenv ("foo=bar");
|
sl@0
|
121 |
#endif
|
sl@0
|
122 |
g_unsetenv ("foo");
|
sl@0
|
123 |
data = g_getenv ("foo");
|
sl@0
|
124 |
g_assert (data == NULL && "g_unsetenv() doesn't support '=' in values");
|
sl@0
|
125 |
|
sl@0
|
126 |
#if __SYMBIAN32__
|
sl@0
|
127 |
testResultXml("env-test");
|
sl@0
|
128 |
#endif /* EMULATOR */
|
sl@0
|
129 |
|
sl@0
|
130 |
|
sl@0
|
131 |
return 0;
|
sl@0
|
132 |
}
|