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.c169
1 files changed, 0 insertions, 169 deletions
diff --git a/src/messenger/test_messenger_anonymous.c b/src/messenger/test_messenger_anonymous.c
deleted file mode 100644
index a70121a30..000000000
--- a/src/messenger/test_messenger_anonymous.c
+++ /dev/null
@@ -1,169 +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, struct GNUNET_MESSENGER_Handle *handle)
100{
101 if (op_task)
102 {
103 GNUNET_SCHEDULER_cancel (op_task);
104 op_task = NULL;
105 }
106
107 const char *name = GNUNET_MESSENGER_get_name (handle);
108
109 if (NULL != name)
110 {
111 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "name-anonymous");
112 return;
113 }
114
115 if (GNUNET_SYSERR != GNUNET_MESSENGER_update (handle))
116 {
117 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "update-fail");
118 return;
119 }
120
121 const struct GNUNET_IDENTITY_PublicKey *key = GNUNET_MESSENGER_get_key (handle);
122
123 if (key)
124 {
125 op_task = GNUNET_SCHEDULER_add_now (&end_operation, "key-anonymous");
126 return;
127 }
128
129 GNUNET_MESSENGER_disconnect (handle);
130
131 messenger = NULL;
132
133 if (die_task)
134 GNUNET_SCHEDULER_cancel (die_task);
135
136 die_task = GNUNET_SCHEDULER_add_now (&end, NULL);
137}
138
139/**
140 * Main function for testcase.
141 *
142 * @param cls Closure
143 * @param cfg Configuration
144 * @param peer Peer for testing
145 */
146static void
147run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_TESTING_Peer *peer)
148{
149 die_task = GNUNET_SCHEDULER_add_delayed (TOTAL_TIMEOUT, &end_badly, NULL);
150
151 op_task = GNUNET_SCHEDULER_add_delayed (BASE_TIMEOUT, &end_operation, "connect");
152 messenger = GNUNET_MESSENGER_connect (cfg, NULL, &on_identity, NULL, NULL, NULL);
153}
154
155/**
156 * The main function.
157 *
158 * @param argc number of arguments from the command line
159 * @param argv command line arguments
160 * @return 0 ok, 1 on error
161 */
162int
163main (int argc, char **argv)
164{
165 if (0 != GNUNET_TESTING_peer_run ("test-messenger", "test_messenger_api.conf", &run, NULL))
166 return 1;
167
168 return status;
169}