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 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, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
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/.
29 #undef G_DISABLE_ASSERT
32 #ifdef GLIB_COMPILATION
33 #undef GLIB_COMPILATION
47 #include <io.h> /* For read(), write() etc */
56 const char hello[] = "Hello, World";
57 const int hellolen = sizeof (hello) - 1;
60 strcpy (template, "foobar");
61 fd = g_mkstemp (template);
63 g_warning ("g_mkstemp works even if template doesn't end in XXXXXX");
66 strcpy (template, "fooXXXXXX");
67 fd = g_mkstemp (template);
68 g_assert (fd != -1 && "g_mkstemp didn't work for template fooXXXXXX");
69 i = write (fd, hello, hellolen);
70 g_assert (i != -1 && "write() failed");
71 g_assert (i == hellolen && "write() has written too few bytes");
74 i = read (fd, chars, sizeof (chars));
75 g_assert (i != -1 && "read() failed: %s");
76 g_assert (i == hellolen && "read() has got wrong number of bytes");
79 g_assert (strcmp (chars, hello) == 0 && "read() didn't get same string back");
91 char *filename = "file-test-data";
92 char *link1 = "file-test-link1";
93 char *link2 = "file-test-link2";
94 char *link3 = "file-test-link3";
98 file = fopen (filename, "w");
99 g_assert (file != NULL && "fopen() failed");
102 result = symlink (filename, link1);
103 g_assert (result == 0 && "symlink() failed");
104 result = symlink (link1, link2);
105 g_assert (result == 0 && "symlink() failed");
108 data = g_file_read_link (link1, &error);
109 g_assert (data != NULL && "couldn't read link1");
110 g_assert (strcmp (data, filename) == 0 && "link1 contains wrong data");
114 data = g_file_read_link (link2, &error);
115 g_assert (data != NULL && "couldn't read link2");
116 g_assert (strcmp (data, link1) == 0 && "link2 contains wrong data");
120 data = g_file_read_link (link3, &error);
121 g_assert (data == NULL && "could read link3");
122 g_assert (error != NULL && "error not set");
125 data = g_file_read_link (filename, &error);
126 g_assert (data == NULL && "could read regular file as link");
127 g_assert (error != NULL && "error not set");
136 test_get_contents (void)
138 const gchar *text = "abcdefghijklmnopqrstuvwxyz";
139 const gchar *filename = "file-test-get-contents";
143 GError *error = NULL;
145 f = g_fopen (filename, "w");
146 fwrite (text, 1, strlen (text), f);
149 g_assert (g_file_test (filename, G_FILE_TEST_IS_REGULAR));
151 if (! g_file_get_contents (filename, &contents, &len, &error))
152 g_error ("g_file_get_contents() failed: %s", error->message);
154 g_assert (strcmp (text, contents) == 0 && "content mismatch");
160 main (int argc, char *argv[])
164 test_get_contents ();