s/g_read_link/g_file_read_link/ (#118727)
[platform/upstream/glib.git] / tests / file-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 <string.h>
38
39 #include <glib.h>
40
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
44
45 static void
46 test_mkstemp (void)
47 {
48   char template[32];
49   int fd;
50   int i;
51   const char hello[] = "Hello, World";
52   const int hellolen = sizeof (hello) - 1;
53   char chars[62];
54
55   strcpy (template, "foobar");
56   fd = g_mkstemp (template);
57   g_assert (fd == -1 && "g_mkstemp works even if template doesn't end in XXXXXX");
58   close (fd);
59
60   strcpy (template, "fooXXXXXX");
61   fd = g_mkstemp (template);
62   g_assert (fd != -1 && "g_mkstemp didn't work for template fooXXXXXX");
63   i = write (fd, hello, hellolen);
64   g_assert (i != -1 && "write() failed");
65   g_assert (i == hellolen && "write() has written too few bytes");
66
67   lseek (fd, 0, 0);
68   i = read (fd, chars, sizeof (chars));
69   g_assert (i != -1 && "read() failed: %s");
70   g_assert (i == hellolen && "read() has got wrong number of bytes");
71
72   chars[i] = 0;
73   g_assert (strcmp (chars, hello) == 0 && "read() didn't get same string back");
74
75   close (fd);
76   remove (template);
77 }
78
79 static void
80 test_readlink (void)
81 {
82 #ifdef HAVE_SYMLINK
83   FILE *file;
84   int result;
85   char *filename = "file-test-data";
86   char *link1 = "file-test-link1";
87   char *link2 = "file-test-link2";
88   char *link3 = "file-test-link3";
89   char *data;
90   GError *error;
91
92   file = fopen (filename, "w");
93   g_assert (file != NULL && "fopen() failed");
94   fclose (file);
95
96   result = symlink (filename, link1);
97   g_assert (result == 0 && "symlink() failed");
98   result = symlink (link1, link2);
99   g_assert (result == 0 && "symlink() failed");
100   
101   error = NULL;
102   data = g_file_read_link (link1, &error);
103   g_assert (data != NULL && "couldn't read link1");
104   g_assert (strcmp (data, filename) == 0 && "link1 contains wrong data");
105   g_free (data);
106   
107   error = NULL;
108   data = g_file_read_link (link2, &error);
109   g_assert (data != NULL && "couldn't read link2");
110   g_assert (strcmp (data, link1) == 0 && "link2 contains wrong data");
111   g_free (data);
112   
113   error = NULL;
114   data = g_file_read_link (link3, &error);
115   g_assert (data == NULL && "could read link3");
116   g_assert (error != NULL && "error not set");
117
118   error = NULL;
119   data = g_file_read_link (filename, &error);
120   g_assert (data == NULL && "could read regular file as link");
121   g_assert (error != NULL && "error not set");
122   
123   remove (filename);
124   remove (link1);
125   remove (link2);
126 #endif
127 }
128
129 int 
130 main (int argc, char *argv[])
131 {
132   test_mkstemp ();
133   test_readlink ();
134
135   return 0;
136 }