fixing bio bugs
[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         int64_t testNum;
40         char *msg;
41
42         char* fileName = GNUNET_DISK_mktemp ("gnunet_bio");
43         struct GNUNET_BIO_ReadHandle *fileR;
44         struct GNUNET_BIO_WriteHandle *fileW;
45         struct GNUNET_CONTAINER_MetaData *metaDataW;
46         struct GNUNET_CONTAINER_MetaData *metaDataR;
47         metaDataR = GNUNET_CONTAINER_meta_data_create();
48         metaDataW = GNUNET_CONTAINER_meta_data_create();
49         GNUNET_CONTAINER_meta_data_add_publication_date(metaDataW);
50         fileW = GNUNET_BIO_write_open(fileName);
51         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_string(fileW, TESTSTRING));
52         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_meta_data(fileW,metaDataW));
53         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_int64(fileW,testNumber));
54         GNUNET_assert(GNUNET_OK == GNUNET_BIO_write_close(fileW));
55         fileR = GNUNET_BIO_read_open (fileName);
56         GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_string(fileR, "Read string error", &readResultString, 200));
57         GNUNET_BIO_read_meta_data(fileR, "Read meta error", &metaDataR);
58         GNUNET_assert(GNUNET_OK == GNUNET_BIO_read_int64(fileR, &testNum));
59         GNUNET_BIO_read_close(fileR,&msg);
60         GNUNET_CONTAINER_meta_data_destroy(metaDataW);
61         GNUNET_CONTAINER_meta_data_destroy(metaDataR);
62     free(fileName);
63
64     return 0;
65
66 }                               /* end of main */