- rename also contents of config files, update config files
[oweals/gnunet.git] / src / testing / test_testing_peerstartup.c
1 /*
2       This file is part of GNUnet
3       (C) 2008, 2009, 2012 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 3, 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 testing/test_testing_new_peerstartup.c
23  * @brief test case for testing peer startup and shutdown using new testing
24  *          library
25  * @author Sree Harsha Totakura
26  */
27
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_testing_lib.h"
31
32 #define LOG(kind,...)                           \
33   GNUNET_log (kind, __VA_ARGS__)
34
35 /**
36  * The status of the test
37  */
38 int status;
39
40 /**
41  * The testing context
42  */
43 struct TestingContext
44 {
45   /**
46    * The testing system
47    */
48   struct GNUNET_TESTING_System *system;
49
50   /**
51    * The peer which has been started by the testing system
52    */
53   struct GNUNET_TESTING_Peer *peer;
54
55   /**
56    * The running configuration of the peer
57    */
58   struct GNUNET_CONFIGURATION_Handle *cfg;
59 };
60
61
62 /**
63  * Task for shutdown
64  *
65  * @param cls the testing context
66  * @param tc the tast context
67  */
68 static void
69 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
70 {
71   struct TestingContext *test_ctx = cls;
72
73   GNUNET_assert (NULL != test_ctx);
74   if (NULL != test_ctx->peer)
75   {
76     (void) GNUNET_TESTING_peer_stop (test_ctx->peer);
77     GNUNET_TESTING_peer_destroy (test_ctx->peer);
78   }
79   if (NULL != test_ctx->cfg)
80     GNUNET_CONFIGURATION_destroy (test_ctx->cfg);
81   if (NULL != test_ctx->system)
82     GNUNET_TESTING_system_destroy (test_ctx->system, GNUNET_YES);
83   GNUNET_free (test_ctx);
84 }
85
86
87 /**
88  * Main point of test execution
89  */
90 static void
91 run (void *cls, char *const *args, const char *cfgfile,
92      const struct GNUNET_CONFIGURATION_Handle *cfg)
93 {
94   struct TestingContext *test_ctx;
95   char *emsg;
96   struct GNUNET_PeerIdentity id;
97
98   test_ctx = GNUNET_new (struct TestingContext);
99   test_ctx->system =
100       GNUNET_TESTING_system_create ("test-gnunet-testing",
101                                     "127.0.0.1", NULL, NULL);
102   emsg = NULL;
103   if (NULL == test_ctx->system)
104     goto end;
105   test_ctx->cfg = GNUNET_CONFIGURATION_dup (cfg);
106   test_ctx->peer =
107       GNUNET_TESTING_peer_configure (test_ctx->system,
108                                      test_ctx->cfg,
109                                      0, &id, &emsg);
110   if (NULL == test_ctx->peer)
111   {
112     if (NULL != emsg)
113       printf ("Test failed upon error: %s", emsg);
114     goto end;
115   }
116   if (GNUNET_OK != GNUNET_TESTING_peer_start (test_ctx->peer))
117     goto end;
118   status = GNUNET_OK;
119
120  end:
121   GNUNET_SCHEDULER_add_now (&do_shutdown, test_ctx);
122   GNUNET_free_non_null (emsg);
123 }
124
125
126 int main (int argc, char *argv[])
127 {
128   struct GNUNET_GETOPT_CommandLineOption options[] = {
129     GNUNET_GETOPT_OPTION_END
130   };
131
132   status = GNUNET_SYSERR;
133   if (GNUNET_OK !=
134       GNUNET_PROGRAM_run (argc, argv,
135                           "test_testing_peerstartup",
136                           "test case for peerstartup using new testing library",
137                           options, &run, NULL))
138     return 1;
139   return (GNUNET_OK == status) ? 0 : 1;
140 }
141
142 /* end of test_testing_peerstartup.c */