0a2f1f595dc5c1721011dc255ea5901f51fb7ae4
[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 JiLu
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 #include "gnunet_container_lib.h"
33 #include "gnunet_strings_lib.h"
34 #include "gnunet_time_lib.h"
35 #include <extractor.h>
36 #include <zlib.h>
37
38 const char readWhatMeta[200],readWhatString[200],readWhatInt64[200];
39 char readResultString[200];
40 size_t readMaxLen;
41 int64_t numberOne = 100000L;
42 char *msg;
43
44 int
45 main (int argc, char *argv[])
46 {
47             char* fileName = GNUNET_DISK_mktemp ("gnunet_bio");
48                 struct GNUNET_BIO_ReadHandle *fileR;
49                 struct GNUNET_BIO_WriteHandle *fileW;
50                 struct GNUNET_CONTAINER_MetaData *metaDataW;
51                 struct GNUNET_CONTAINER_MetaData *metaDataR;
52                 metaDataR = GNUNET_CONTAINER_meta_data_create();
53                 metaDataW = GNUNET_CONTAINER_meta_data_create();
54                 GNUNET_CONTAINER_meta_data_add_publication_date(metaDataW);
55                 fileW = GNUNET_BIO_write_open(fileName);
56                 const char writeString[]="helloJilu";
57                 GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_string(fileW,writeString));
58                 GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_meta_data(fileW,metaDataW));
59                 GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_int64(fileW,numberOne));
60                 GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_close(fileW));
61                 fileR = GNUNET_BIO_read_open (fileName);
62                 GNUNET_BIO_read_meta_data(fileR,readWhatMeta,&metaDataR);
63                 readMaxLen = sizeof(readResultString);
64         //GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_string(fileR,readWhatString,&readResultString,readMaxLen));
65                 //GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_int64__(fileR,readWhatInt64,&numberOne));
66         GNUNET_BIO_read_close(fileR,&msg);
67                 GNUNET_CONTAINER_meta_data_destroy(metaDataW);
68                 GNUNET_CONTAINER_meta_data_destroy(metaDataR);
69
70                 return 0;
71
72 }                               /* end of main */