uncrustify as demanded.
[oweals/gnunet.git] / src / testing / test_testing_peerstartup.c
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2008, 2009, 2012 GNUnet e.V.
4
5       GNUnet is free software: you can redistribute it and/or modify it
6       under the terms of the GNU Affero General Public License as published
7       by the Free Software Foundation, either version 3 of the License,
8       or (at your 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       Affero General Public License for more details.
14
15       You should have received a copy of the GNU Affero General Public License
16       along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
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    * The testing system
46    */
47   struct GNUNET_TESTING_System *system;
48
49   /**
50    * The peer which has been started by the testing system
51    */
52   struct GNUNET_TESTING_Peer *peer;
53
54   /**
55    * The running configuration of the peer
56    */
57   struct GNUNET_CONFIGURATION_Handle *cfg;
58 };
59
60
61 /**
62  * Task for shutdown
63  *
64  * @param cls the testing context
65  */
66 static void
67 do_shutdown(void *cls)
68 {
69   struct TestingContext *test_ctx = cls;
70
71   GNUNET_assert(NULL != test_ctx);
72   if (NULL != test_ctx->peer)
73     {
74       (void)GNUNET_TESTING_peer_stop(test_ctx->peer);
75       GNUNET_TESTING_peer_destroy(test_ctx->peer);
76     }
77   if (NULL != test_ctx->cfg)
78     GNUNET_CONFIGURATION_destroy(test_ctx->cfg);
79   if (NULL != test_ctx->system)
80     GNUNET_TESTING_system_destroy(test_ctx->system, GNUNET_YES);
81   GNUNET_free(test_ctx);
82 }
83
84
85 /**
86  * Main point of test execution
87  */
88 static void
89 run(void *cls, char *const *args, const char *cfgfile,
90     const struct GNUNET_CONFIGURATION_Handle *cfg)
91 {
92   struct TestingContext *test_ctx;
93   char *emsg;
94   struct GNUNET_PeerIdentity id;
95
96   test_ctx = GNUNET_new(struct TestingContext);
97   test_ctx->system =
98     GNUNET_TESTING_system_create("test-gnunet-testing",
99                                  "127.0.0.1", NULL, NULL);
100   emsg = NULL;
101   if (NULL == test_ctx->system)
102     goto end;
103   test_ctx->cfg = GNUNET_CONFIGURATION_dup(cfg);
104   test_ctx->peer =
105     GNUNET_TESTING_peer_configure(test_ctx->system,
106                                   test_ctx->cfg,
107                                   0, &id, &emsg);
108   if (NULL == test_ctx->peer)
109     {
110       if (NULL != emsg)
111         printf("Test failed upon error: %s", emsg);
112       goto end;
113     }
114   if (GNUNET_OK != GNUNET_TESTING_peer_start(test_ctx->peer))
115     goto end;
116   status = GNUNET_OK;
117
118 end:
119   GNUNET_SCHEDULER_add_now(&do_shutdown, test_ctx);
120   GNUNET_free_non_null(emsg);
121 }
122
123
124 int main(int argc, char *argv[])
125 {
126   struct GNUNET_GETOPT_CommandLineOption options[] = {
127     GNUNET_GETOPT_OPTION_END
128   };
129
130   status = GNUNET_SYSERR;
131   if (GNUNET_OK !=
132       GNUNET_PROGRAM_run(argc, argv,
133                          "test_testing_peerstartup",
134                          "test case for peerstartup using new testing library",
135                          options, &run, NULL))
136     return 1;
137   return (GNUNET_OK == status) ? 0 : 1;
138 }
139
140 /* end of test_testing_peerstartup.c */