ed51cb84987b917fb0e5ad1216327eb6b8e780ef
[oweals/gnunet.git] / src / util / test_bio.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/test_bio.c
23  * @brief testcase for the buffered IO module
24  * @author
25  */
26
27
28 #include "platform.h"
29 #include "gnunet_common.h"
30 #include "gnunet_disk_lib.h"
31 #include "gnunet_bio_lib.h"
32
33 int check(){
34
35         int suc;
36     char* fileName = GNUNET_DISK_mktemp ("gnunet_bio");
37         struct GNUNET_BIO_ReadHandle *fileR;
38         struct GNUNET_BIO_WriteHandle *fileW;
39         char *msg;
40         fileR = GNUNET_BIO_read_open (fileName);
41         GNUNET_BIO_read_close(fileR,&msg);
42         fileW = GNUNET_BIO_write_open(fileName);
43         if (GNUNET_OK == GNUNET_BIO_write_close(fileW))
44                 suc = 0;
45         else
46                 suc = 1;
47
48         return suc;
49
50
51 }
52
53
54
55 int
56 main (int argc, char *argv[])
57 {
58
59         int ch = check();
60         return ch;
61
62 }                               /* end of main */