1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-30 05:43:28 +02:00
Files
debian
docs
glib
gmodule
gobject
gthread
m4macros
po
tests
gobject
markups
.cvsignore
Makefile.am
array-test.c
atomic-test.c
casefold.txt
casemap.txt
child-test.c
completion-test.c
cxx-test.C
date-test.c
dirname-test.c
env-test.c
file-test.c
gen-casefold-txt.pl
gen-casemap-txt.pl
gio-test.c
hash-test.c
iochannel-test-infile
iochannel-test.c
libmoduletestplugin_a.c
libmoduletestplugin_b.c
list-test.c
mainloop-test.c
makefile.mingw.in
makefile.msc.in
markup-escape-test.c
markup-test.c
module-test.c
node-test.c
patterntest.c
printf-test.c
qsort-test.c
queue-test.c
rand-test.c
relation-test.c
run-markup-tests.sh
shell-test.c
slist-test.c
spawn-test-win32-gui.c
spawn-test.c
strfunc-test.c
string-test.c
strtod-test.c
testgdate.c
testgdateparser.c
testglib.c
thread-test.c
threadpool-test.c
timeloop-basic.c
timeloop-closure.c
timeloop.c
tree-test.c
type-test.c
unicode-caseconv.c
unicode-collate.c
unicode-encoding.c
unicode-normalize.c
uri-test.c
utf8.txt
.cvsignore
AUTHORS
COPYING
ChangeLog
ChangeLog.pre-1-2
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
HACKING
INSTALL
INSTALL.in
Makefile.am
NEWS
NEWS.pre-1-3
README
README.in
README.win32
TODO.xml
acglib.m4
acinclude.m4
autogen.sh
config.h.win32.in
configure.in
glib-2.0-uninstalled.pc.in
glib-2.0.pc.in
glib-gettextize.in
glib-zip.in
glib.spec.in
glibconfig.h.win32.in
gmodule-2.0-uninstalled.pc.in
gmodule-2.0.pc.in
gobject-2.0-uninstalled.pc.in
gobject-2.0.pc.in
gthread-2.0-uninstalled.pc.in
gthread-2.0.pc.in
makefile.mingw
makefile.msc
msvc_recommended_pragmas.h
sanity_check
win32-fixup.pl
glib/tests/file-test.c
Matthias Clasen 01fd2551d7 Weaken an g_assert() to a g_warning(), since apparently nothing in Posix
Thu Feb  5 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>

	* tests/file-test.c (test_mkstemp): Weaken an g_assert() to a
	g_warning(), since apparently nothing in Posix forces mkstemp()
	to reject templates without any X's.  ()
2004-02-05 00:17:28 +00:00

142 lines
3.7 KiB
C

/* GLIB - Library of useful routines for C programming
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
* file for a list of people on the GLib Team. See the ChangeLog
* files for a list of changes. These files are distributed with
* GLib at ftp://ftp.gtk.org/pub/gtk/.
*/
#include "config.h"
#undef G_DISABLE_ASSERT
#undef G_LOG_DOMAIN
#ifdef GLIB_COMPILATION
#undef GLIB_COMPILATION
#endif
#include <stdio.h>
#include <string.h>
#include <glib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef G_OS_WIN32
#include <io.h> /* For read(), write() etc */
#endif
static void
test_mkstemp (void)
{
char template[32];
int fd;
int i;
const char hello[] = "Hello, World";
const int hellolen = sizeof (hello) - 1;
char chars[62];
strcpy (template, "foobar");
fd = g_mkstemp (template);
if (fd != -1)
g_warning ("g_mkstemp works even if template doesn't end in XXXXXX");
close (fd);
strcpy (template, "fooXXXXXX");
fd = g_mkstemp (template);
g_assert (fd != -1 && "g_mkstemp didn't work for template fooXXXXXX");
i = write (fd, hello, hellolen);
g_assert (i != -1 && "write() failed");
g_assert (i == hellolen && "write() has written too few bytes");
lseek (fd, 0, 0);
i = read (fd, chars, sizeof (chars));
g_assert (i != -1 && "read() failed: %s");
g_assert (i == hellolen && "read() has got wrong number of bytes");
chars[i] = 0;
g_assert (strcmp (chars, hello) == 0 && "read() didn't get same string back");
close (fd);
remove (template);
}
static void
test_readlink (void)
{
#ifdef HAVE_SYMLINK
FILE *file;
int result;
char *filename = "file-test-data";
char *link1 = "file-test-link1";
char *link2 = "file-test-link2";
char *link3 = "file-test-link3";
char *data;
GError *error;
file = fopen (filename, "w");
g_assert (file != NULL && "fopen() failed");
fclose (file);
result = symlink (filename, link1);
g_assert (result == 0 && "symlink() failed");
result = symlink (link1, link2);
g_assert (result == 0 && "symlink() failed");
error = NULL;
data = g_file_read_link (link1, &error);
g_assert (data != NULL && "couldn't read link1");
g_assert (strcmp (data, filename) == 0 && "link1 contains wrong data");
g_free (data);
error = NULL;
data = g_file_read_link (link2, &error);
g_assert (data != NULL && "couldn't read link2");
g_assert (strcmp (data, link1) == 0 && "link2 contains wrong data");
g_free (data);
error = NULL;
data = g_file_read_link (link3, &error);
g_assert (data == NULL && "could read link3");
g_assert (error != NULL && "error not set");
error = NULL;
data = g_file_read_link (filename, &error);
g_assert (data == NULL && "could read regular file as link");
g_assert (error != NULL && "error not set");
remove (filename);
remove (link1);
remove (link2);
#endif
}
int
main (int argc, char *argv[])
{
test_mkstemp ();
test_readlink ();
return 0;
}