47992f56ee3f32d2534b15094d21473b80d77857
[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 Ji Lu
25  */
26
27
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #define TESTSTRING "testString"
31 #define TESTNUMBER64 100000L
32
33 int
34 main (int argc, char *argv[])
35 {
36
37         char *readResultString;
38         int64_t testNumber = (int64_t)TESTNUMBER64;
39
40         const char *writeString = TESTSTRING;
41         char *msg;
42
43         char* fileName = GNUNET_DISK_mktemp ("gnunet_bio");
44         struct GNUNET_BIO_ReadHandle *fileR;
45         struct GNUNET_BIO_WriteHandle *fileW;
46         struct GNUNET_CONTAINER_MetaData *metaDataW;
47         struct GNUNET_CONTAINER_MetaData *metaDataR;
48         metaDataR = GNUNET_CONTAINER_meta_data_create();
49         metaDataW = GNUNET_CONTAINER_meta_data_create();
50         GNUNET_CONTAINER_meta_data_add_publication_date(metaDataW);
51         fileW = GNUNET_BIO_write_open(fileName);
52         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_string(fileW,writeString));
53         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_meta_data(fileW,metaDataW));
54         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_int64(fileW,testNumber));
55         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_close(fileW));
56         fileR = GNUNET_BIO_read_open (fileName);
57         GNUNET_BIO_read_meta_data(fileR,"Read meta error",&metaDataR);
58         size_t readMaxLen = 200;
59         //GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_string(fileR,"Read string error",&readResultString,readMaxLen));
60         //GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_int64__(fileR,"Read int64 error",&testNum));
61     GNUNET_BIO_read_close(fileR,&msg);
62         GNUNET_CONTAINER_meta_data_destroy(metaDataW);
63         GNUNET_CONTAINER_meta_data_destroy(metaDataR);
64     free(fileName);
65
66     return 0;
67
68 }                               /* end of main */