1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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.1 of the License, or (at your option) any later version.
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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
20 * file for a list of people on the GLib Team. See the ChangeLog
21 * files for a list of changes. These files are distributed with
22 * GLib at ftp://ftp.gtk.org/pub/gtk/.
25 #undef G_DISABLE_ASSERT
28 #ifdef GLIB_COMPILATION
29 #undef GLIB_COMPILATION
38 #include <fcntl.h> /* For open() */
44 #include <io.h> /* For read(), write() etc */
53 const char hello
[] = "Hello, World";
54 const int hellolen
= sizeof (hello
) - 1;
57 strcpy (template, "foobar");
58 fd
= g_mkstemp (template);
61 g_warning ("g_mkstemp works even if template doesn't contain XXXXXX");
65 strcpy (template, "foobarXXX");
66 fd
= g_mkstemp (template);
69 g_warning ("g_mkstemp works even if template contains less than six X");
73 strcpy (template, "fooXXXXXX");
74 fd
= g_mkstemp (template);
75 g_assert (fd
!= -1 && "g_mkstemp didn't work for template fooXXXXXX");
76 i
= write (fd
, hello
, hellolen
);
77 g_assert (i
!= -1 && "write() failed");
78 g_assert (i
== hellolen
&& "write() has written too few bytes");
81 i
= read (fd
, chars
, sizeof (chars
));
82 g_assert (i
!= -1 && "read() failed: %s");
83 g_assert (i
== hellolen
&& "read() has got wrong number of bytes");
86 g_assert (strcmp (chars
, hello
) == 0 && "read() didn't get same string back");
91 strcpy (template, "fooXXXXXX.pdf");
92 fd
= g_mkstemp (template);
93 g_assert (fd
!= -1 && "g_mkstemp didn't work for template fooXXXXXX.pdf");
102 char template[32], *retval
;
106 strcpy (template, "foodir");
107 retval
= g_mkdtemp (template);
110 g_warning ("g_mkdtemp works even if template doesn't contain XXXXXX");
114 strcpy (template, "foodir");
115 retval
= g_mkdtemp (template);
118 g_warning ("g_mkdtemp works even if template contains less than six X");
122 strcpy (template, "fooXXXXXX");
123 retval
= g_mkdtemp (template);
124 g_assert (retval
!= NULL
&& "g_mkdtemp didn't work for template fooXXXXXX");
125 g_assert (retval
== template && "g_mkdtemp allocated the resulting string?");
126 g_assert (!g_file_test (template, G_FILE_TEST_IS_REGULAR
));
127 g_assert (g_file_test (template, G_FILE_TEST_IS_DIR
));
129 strcat (template, "/abc");
130 fd
= g_open (template, O_WRONLY
| O_CREAT
, 0600);
131 g_assert (fd
!= -1 && "couldn't open file in temporary directory");
133 g_assert (g_file_test (template, G_FILE_TEST_IS_REGULAR
));
134 i
= g_unlink (template);
135 g_assert (i
!= -1 && "couldn't unlink file in temporary directory");
138 i
= g_rmdir (template);
139 g_assert (i
!= -1 && "couldn't remove temporary directory");
141 strcpy (template, "fooXXXXXX.dir");
142 retval
= g_mkdtemp (template);
143 g_assert (retval
!= NULL
&& "g_mkdtemp didn't work for template fooXXXXXX.dir");
144 g_assert (g_file_test (template, G_FILE_TEST_IS_DIR
));
154 char *filename
= "file-test-data";
155 char *link1
= "file-test-link1";
156 char *link2
= "file-test-link2";
157 char *link3
= "file-test-link3";
161 file
= fopen (filename
, "w");
162 g_assert (file
!= NULL
&& "fopen() failed");
165 result
= symlink (filename
, link1
);
166 g_assert (result
== 0 && "symlink() failed");
167 result
= symlink (link1
, link2
);
168 g_assert (result
== 0 && "symlink() failed");
171 data
= g_file_read_link (link1
, &error
);
172 g_assert (data
!= NULL
&& "couldn't read link1");
173 g_assert (strcmp (data
, filename
) == 0 && "link1 contains wrong data");
177 data
= g_file_read_link (link2
, &error
);
178 g_assert (data
!= NULL
&& "couldn't read link2");
179 g_assert (strcmp (data
, link1
) == 0 && "link2 contains wrong data");
183 data
= g_file_read_link (link3
, &error
);
184 g_assert (data
== NULL
&& "could read link3");
185 g_assert_error (error
, G_FILE_ERROR
, G_FILE_ERROR_NOENT
);
186 g_error_free (error
);
189 data
= g_file_read_link (filename
, &error
);
190 g_assert (data
== NULL
&& "could read regular file as link");
191 g_assert_error (error
, G_FILE_ERROR
, G_FILE_ERROR_INVAL
);
192 g_error_free (error
);
201 test_get_contents (void)
203 const gchar
*text
= "abcdefghijklmnopqrstuvwxyz";
204 const gchar
*filename
= "file-test-get-contents";
208 GError
*error
= NULL
;
210 f
= g_fopen (filename
, "w");
211 fwrite (text
, 1, strlen (text
), f
);
214 g_assert (g_file_test (filename
, G_FILE_TEST_IS_REGULAR
));
216 if (! g_file_get_contents (filename
, &contents
, &len
, &error
))
217 g_error ("g_file_get_contents() failed: %s", error
->message
);
219 g_assert (strcmp (text
, contents
) == 0 && "content mismatch");
225 main (int argc
, char *argv
[])
230 test_get_contents ();