aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/test_messenger_anonymous.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/test_messenger_anonymous.c')
-rw-r--r--src/messenger/test_messenger_anonymous.c173
1 files changed, 0 insertions, 173 deletions
diff --git a/src/messenger/test_messenger_anonymous.c b/src/messenger/test_messenger_anonymous.c
deleted file mode 100644
index 8cb339f0e..000000000
--- a/src/messenger/test_messenger_anonymous.c
+++ /dev/null
@@ -1,173 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2021 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 * @file messenger/test_messenger_anonymous.c
22 * @author Tobias Frisch
23 * @brief Test for the messenger service using cadet API.
24 */
25#include <stdio.h>
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "gnunet_testing_lib.h"
29#include "gnunet_messenger_service.h"
30
31/**
32 * How long until we really give up on a particular testcase portion?
33 */
34#define TOTAL_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, \
35 60)
36
37/**
38 * How long until we give up on any particular operation (and retry)?
39 */
40#define BASE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
41
42static int status = 1;
43
44static struct GNUNET_SCHEDULER_Task *die_task = NULL;
45static struct GNUNET_SCHEDULER_Task *op_task = NULL;
46
47struct GNUNET_MESSENGER_Handle *messenger = NULL;
48
49static void
50end (void *cls)
51{
52 die_task = NULL;
53
54 if (op_task)
55 {
56 GNUNET_SCHEDULER_cancel (op_task);
57 op_task = NULL;
58 }
59
60 if (messenger)
61 {
62 GNUNET_MESSENGER_disconnect (messenger);
63 messenger = NULL;
64 }
65
66 status = 0;
67}
68
69static void
70end_badly (void *cls)
71{
72 fprintf (stderr, "Testcase failed (timeout).\n");
73
74 end (NULL);
75 status = 1;
76}
77
78static void
79end_operation (void *cls)
80{
81 op_task = NULL;
82
83 fprintf (stderr, "Testcase failed (operation: '%s').\n", cls ? (const char*) cls : "unknown");
84
85 if (die_task)
86 GNUNET_SCHEDULER_cancel (die_task);
87
88 end (NULL);
89 status = 1;
90}
91
92/**
93 * Function called when an identity is retrieved.
94 *
95 * @param cls Closure
96 * @param handle Handle of messenger service
97 */
98static void
99on_identity (void *cls,
100 struct GNUNET_MESSENGER_Handle *handle)
101{
102 if (op_task)
103 {
104 GNUNET_SCHEDULER_cancel (op_task);
105 op_task = NULL;
106 }
107
108 const char *name = GNUNET_MESSENGER_get_name (handle);
109
110 if (NULL != name)
111 {
112 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "name-anonymous");
113 return;
114 }
115
116 if (GNUNET_SYSERR != GNUNET_MESSENGER_update (handle))
117 {
118 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "update-fail");
119 return;
120 }
121
122 const struct GNUNET_IDENTITY_PublicKey *key = GNUNET_MESSENGER_get_key (handle);
123
124 if (key)
125 {
126 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "key-anonymous");
127 return;
128 }
129
130 GNUNET_MESSENGER_disconnect (handle);
131
132 messenger = NULL;
133
134 if (die_task)
135 GNUNET_SCHEDULER_cancel (die_task);
136
137 die_task = GNUNET_SCHEDULER_add_now (&end, NULL);
138}
139
140/**
141 * Main function for testcase.
142 *
143 * @param cls Closure
144 * @param cfg Configuration
145 * @param peer Peer for testing
146 */
147static void
148run (void *cls,
149 const struct GNUNET_CONFIGURATION_Handle *cfg,
150 struct GNUNET_TESTING_Peer *peer)
151{
152 die_task = GNUNET_SCHEDULER_add_delayed (TOTAL_TIMEOUT, &end_badly, NULL);
153
154 op_task = GNUNET_SCHEDULER_add_delayed (BASE_TIMEOUT, &end_operation, "connect");
155 messenger = GNUNET_MESSENGER_connect (cfg, NULL, &on_identity, NULL, NULL, NULL);
156}
157
158/**
159 * The main function.
160 *
161 * @param argc number of arguments from the command line
162 * @param argv command line arguments
163 * @return 0 ok, 1 on error
164 */
165int
166main (int argc,
167 char **argv)
168{
169 if (0 != GNUNET_TESTING_peer_run ("test-messenger", "test_messenger_api.conf", &run, NULL))
170 return 1;
171
172 return status;
173}