reduced verbosity and better debugging.
[gnutls.git] / gl / tests / test-read-file.c
blobaec3c4b054f46801fa50f6829cdd86521dbd1bb7
1 /*
2 * Copyright (C) 2006-2007, 2010-2012 Free Software Foundation, Inc.
3 * Written by Simon Josefsson
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include "read-file.h"
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <sys/stat.h>
26 #define FILE1 "/etc/resolv.conf"
27 #define FILE2 "/dev/null"
29 int
30 main (void)
32 struct stat statbuf;
33 int err = 0;
35 /* We can perform the test only if the file exists and is readable.
36 Test whether it exists, then assume it is world-readable. */
37 if (stat (FILE1, &statbuf) >= 0)
39 size_t len;
40 char *out = read_file (FILE1, &len);
42 if (!out)
44 perror ("Could not read file");
45 err = 1;
47 else
49 if (out[len] != '\0')
51 perror ("BAD: out[len] not zero");
52 err = 1;
55 if (S_ISREG (statbuf.st_mode))
57 /* FILE1 is a regular file or a symlink to a regular file. */
58 if (len != statbuf.st_size)
60 fprintf (stderr, "Read %ld from %s...\n", (unsigned long) len, FILE1);
61 err = 1;
64 else
66 /* Assume FILE1 is not empty. */
67 if (len == 0)
69 fprintf (stderr, "Read nothing from %s\n", FILE1);
70 err = 1;
73 free (out);
77 /* We can perform the test only if the file exists and is readable.
78 Test whether it exists, then assume it is world-readable. */
79 if (stat (FILE2, &statbuf) >= 0)
81 size_t len;
82 char *out = read_file (FILE2, &len);
84 if (!out)
86 perror ("Could not read file");
87 err = 1;
89 else
91 if (out[len] != '\0')
93 perror ("BAD: out[len] not zero");
94 err = 1;
97 /* /dev/null should always be empty. Ignore statbuf.st_size, since it
98 is not a regular file. */
99 if (len != 0)
101 fprintf (stderr, "Read %ld from %s...\n", (unsigned long) len, FILE2);
102 err = 1;
104 free (out);
108 return err;