Add tests for '=' in names and values.
[platform/upstream/glib.git] / tests / env-test.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28
29 #undef G_DISABLE_ASSERT
30 #undef G_LOG_DOMAIN
31
32 #ifdef GLIB_COMPILATION
33 #undef GLIB_COMPILATION
34 #endif
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39
40 #include <glib.h>
41
42 #ifdef HAVE_UNISTD_H
43 #include <unistd.h>
44 #endif
45
46 static void 
47 log (const gchar   *log_domain,
48      GLogLevelFlags log_level,
49      const gchar   *message,
50      gpointer       user_data)
51 {
52   /* Silence g_assert () and friends.
53    */
54 }
55
56 int 
57 main (int argc, char *argv[])
58 {
59   gboolean result;
60   const gchar *data;
61   gchar *variable = "TEST_G_SETENV";
62   gchar *value1 = "works";
63   gchar *value2 = "again";
64
65   g_log_set_handler ("GLib", G_LOG_LEVEL_CRITICAL, log, NULL);
66
67   data = g_getenv (variable);
68   g_assert (data == NULL && "TEST_G_SETENV already set");
69   
70   result = g_setenv (variable, value1, TRUE);
71   g_assert (result && "g_setenv() failed");
72   
73   data = g_getenv (variable);
74   g_assert (data != NULL && "g_getenv() returns NULL");
75   g_assert (strcmp (data, value1) == 0 && "g_getenv() returns wrong value");
76
77   result = g_setenv (variable, value2, FALSE);
78   g_assert (result && "g_setenv() failed");
79   
80   data = g_getenv (variable);
81   g_assert (data != NULL && "g_getenv() returns NULL");
82   g_assert (strcmp (data, value2) != 0 && "g_setenv() always overwrites");
83   g_assert (strcmp (data, value1) == 0 && "g_getenv() returns wrong value");
84
85   result = g_setenv (variable, value2, TRUE);
86   g_assert (result && "g_setenv() failed");
87   
88   data = g_getenv (variable);
89   g_assert (data != NULL && "g_getenv() returns NULL");
90   g_assert (strcmp (data, value1) != 0 && "g_setenv() doesn't overwrite");
91   g_assert (strcmp (data, value2) == 0 && "g_getenv() returns wrong value");
92
93   g_unsetenv (variable);
94   data = g_getenv (variable);
95   g_assert (data == NULL && "g_unsetenv() doesn't work");
96
97   result = g_setenv ("foo=bar", "baz", TRUE);
98   g_assert (!result && "g_setenv() accepts '=' in names");
99
100   result = g_setenv ("foo", "bar=baz", TRUE);
101   g_assert (result && "g_setenv() doesn't accept '=' in values");
102   data = g_getenv ("foo=bar");
103   g_assert (strcmp (data, "baz") == 0 && "g_getenv() doesn't support '=' in names");
104   data = g_getenv ("foo");
105   g_assert (strcmp (data, "bar=baz") == 0 && "g_getenv() doesn't support '=' in values");
106   
107   g_unsetenv ("foo=bar");
108   data = g_getenv ("foo");
109   g_assert (data != NULL && "g_unsetenv() accepts '=' in names");
110   g_unsetenv ("foo");
111   data = g_getenv ("foo");
112   g_assert (data == NULL && "g_unsetenv() doesn't support '=' in values");
113
114   return 0;
115 }