1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
#include <config.h>
#include <glib.h>
#include <string.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdio.h>
#include "test.h"
#ifdef G_OS_WIN32
#include <io.h>
#define close _close
#endif
RESULT
test_file_get_contents ()
{
GError *error;
gchar *content;
gboolean ret;
gsize length;
#ifdef G_OS_WIN32
const gchar *filename = "c:\\Windows\\system.ini";
#else
const gchar *filename = "/etc/hosts";
#endif
/*
filename != NULL
ret = g_file_get_contents (NULL, NULL, NULL, NULL);
contents != NULL
ret = g_file_get_contents ("", NULL, NULL, NULL);
error no such file and fails for 'error' not being null too
ret = g_file_get_contents ("", &content, NULL, &error);
*/
error = NULL;
ret = g_file_get_contents ("", &content, NULL, &error);
if (ret)
return FAILED ("HAH!");
if (error == NULL)
return FAILED ("Got nothing as error.");
if (content != NULL)
return FAILED ("Content is uninitialized");
g_error_free (error);
error = NULL;
ret = g_file_get_contents (filename, &content, &length, &error);
if (!ret)
return FAILED ("The error is %d %s\n", error->code, error->message);
if (error != NULL)
return FAILED ("Got an error returning TRUE");
if (content == NULL)
return FAILED ("Content is NULL");
if (strlen (content) != length)
return FAILED ("length is %d but the string is %d", length, strlen (content));
g_free (content);
return OK;
}
RESULT
test_open_tmp ()
{
GError *error;
gint fd;
gchar *name = GINT_TO_POINTER (-1);
/*
* Okay, this works, but creates a .xxx file in /tmp on every run. Disabled.
* fd = g_file_open_tmp (NULL, NULL, NULL);
* if (fd < 0)
* return FAILED ("Default failed.");
* close (fd);
*/
error = NULL;
fd = g_file_open_tmp ("invalidtemplate", NULL, &error);
if (fd != -1)
return FAILED ("The template was invalid and accepted");
if (error == NULL)
return FAILED ("No error returned.");
g_error_free (error);
error = NULL;
fd = g_file_open_tmp ("i/nvalidtemplate", &name, &error);
if (fd != -1)
return FAILED ("The template was invalid and accepted");
if (error == NULL)
return FAILED ("No error returned.");
if (name == NULL)
return FAILED ("'name' is not reset");
g_error_free (error);
error = NULL;
fd = g_file_open_tmp ("valid-XXXXXX", &name, &error);
if (fd == -1)
return FAILED ("This should be valid");
if (error != NULL)
return FAILED ("No error returned.");
if (name == NULL)
return FAILED ("No name returned.");
close (fd);
unlink (name);
g_free (name);
return OK;
}
RESULT
test_file ()
{
gboolean res;
const gchar *tmp;
gchar *path;
#ifndef G_OS_WIN32 /* FIXME */
gchar *sympath;
gint ignored G_GNUC_UNUSED;
#endif
res = g_file_test (NULL, 0);
if (res)
return FAILED ("Should return FALSE HERE");
res = g_file_test ("file.c", 0);
if (res)
return FAILED ("Should return FALSE HERE");
tmp = g_get_tmp_dir ();
res = g_file_test (tmp, G_FILE_TEST_EXISTS);
if (!res)
return FAILED ("tmp does not exist.");
res = g_file_test (tmp, G_FILE_TEST_IS_REGULAR);
if (res)
return FAILED ("tmp is regular");
res = g_file_test (tmp, G_FILE_TEST_IS_DIR);
if (!res)
return FAILED ("tmp is not a directory");
res = g_file_test (tmp, G_FILE_TEST_IS_EXECUTABLE);
if (!res)
return FAILED ("tmp is not a executable");
res = g_file_test (tmp, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_SYMLINK);
if (!res)
return FAILED ("2 tmp does not exist.");
res = g_file_test (tmp, G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_SYMLINK);
if (res)
return FAILED ("2 tmp is regular");
res = g_file_test (tmp, G_FILE_TEST_IS_DIR | G_FILE_TEST_IS_SYMLINK);
if (!res)
return FAILED ("2 tmp is not a directory");
res = g_file_test (tmp, G_FILE_TEST_IS_EXECUTABLE | G_FILE_TEST_IS_SYMLINK);
if (!res)
return FAILED ("2 tmp is not a executable");
close (g_file_open_tmp (NULL, &path, NULL)); /* create an empty file */
res = g_file_test (path, G_FILE_TEST_EXISTS);
if (!res)
return FAILED ("3 %s should exist", path);
res = g_file_test (path, G_FILE_TEST_IS_REGULAR);
/* This is strange. Empty file is reported as not existing! */
if (!res)
return FAILED ("3 %s IS_REGULAR", path);
res = g_file_test (path, G_FILE_TEST_IS_DIR);
if (res)
return FAILED ("3 %s should not be a directory", path);
res = g_file_test (path, G_FILE_TEST_IS_EXECUTABLE);
if (res)
return FAILED ("3 %s should not be executable", path);
res = g_file_test (path, G_FILE_TEST_IS_SYMLINK);
if (res)
return FAILED ("3 %s should not be a symlink", path);
#ifndef G_OS_WIN32 /* FIXME */
sympath = g_strconcat (path, "-link", NULL);
ignored = symlink (path, sympath);
res = g_file_test (sympath, G_FILE_TEST_EXISTS);
if (!res)
return FAILED ("4 %s should not exist", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_REGULAR);
if (!res)
return FAILED ("4 %s should not be a regular file", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_DIR);
if (res)
return FAILED ("4 %s should not be a directory", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_EXECUTABLE);
if (res)
return FAILED ("4 %s should not be executable", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_SYMLINK);
if (!res)
return FAILED ("4 %s should be a symlink", sympath);
unlink (path);
res = g_file_test (sympath, G_FILE_TEST_EXISTS);
if (res)
return FAILED ("5 %s should exist", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_REGULAR);
if (res)
return FAILED ("5 %s should be a regular file", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_DIR);
if (res)
return FAILED ("5 %s should not be a directory", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_EXECUTABLE);
if (res)
return FAILED ("5 %s should not be executable", sympath);
res = g_file_test (sympath, G_FILE_TEST_IS_SYMLINK);
if (!res)
return FAILED ("5 %s should be a symlink", sympath);
unlink (sympath);
g_free (sympath);
#endif
g_free (path);
return OK;
}
static Test file_tests [] = {
{"g_file_get_contents", test_file_get_contents},
{"g_file_open_tmp", test_open_tmp},
{"g_file_test", test_file},
{NULL, NULL}
};
DEFINE_TEST_GROUP_INIT(file_tests_init, file_tests)
|