GNUnet 0.21.1
transport-testing-main2.c File Reference
#include "platform.h"
#include "transport-testing2.h"
Include dependency graph for transport-testing-main2.c:

Go to the source code of this file.

Data Structures

struct  GNUNET_TRANSPORT_TESTING_ConnectRequestList
 Closure for connect_cb. More...
 
struct  GNUNET_TRANSPORT_TESTING_InternalPeerContext
 Internal data structure. More...
 
struct  ConnectPairInfo
 Information tracked per connected peer. More...
 

Functions

static void do_shutdown (void *cls)
 Shutdown function for the test. More...
 
static void do_timeout (void *cls)
 Testcase hit timeout, shut it down with error. More...
 
static void connect_cb (void *cls)
 Function called when we connected two peers. More...
 
struct GNUNET_TRANSPORT_TESTING_PeerContextGNUNET_TRANSPORT_TESTING_find_peer (struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext *ccc, const struct GNUNET_PeerIdentity *peer)
 Find peer by peer ID. More...
 
static void * my_nc (void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq)
 Wrapper around peers connecting. More...
 
static void my_nd (void *cls, const struct GNUNET_PeerIdentity *peer, void *custom_cls)
 Wrapper around peers disconnecting. More...
 
static int check_test (void *cls, const struct GNUNET_TRANSPORT_TESTING_TestMessage *message)
 Wrapper around receiving data. More...
 
static void handle_test (void *cls, const struct GNUNET_TRANSPORT_TESTING_TestMessage *message)
 Wrapper around receiving data. More...
 
static int check_test2 (void *cls, const struct GNUNET_TRANSPORT_TESTING_TestMessage *message)
 Wrapper around receiving data. More...
 
static void handle_test2 (void *cls, const struct GNUNET_TRANSPORT_TESTING_TestMessage *message)
 Wrapper around receiving data. More...
 
static void do_connect (void *cls)
 Connect the peers as a clique. More...
 
static void start_cb (void *cls)
 Function called once we have successfully launched a peer. More...
 
static void connect_check_run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Function run from GNUNET_TRANSPORT_TESTING_connect_check once the scheduler is up. More...
 
int GNUNET_TRANSPORT_TESTING_connect_check (void *cls, struct GNUNET_TRANSPORT_TESTING_Handle *tth_, const char *test_plugin_, const char *test_name_, unsigned int num_peers, char *cfg_files[])
 Common implementation of the GNUNET_TRANSPORT_TESTING_CheckCallback. More...
 
int GNUNET_TRANSPORT_TESTING_main_ (const char *argv0, const char *filename, unsigned int num_peers, GNUNET_TRANSPORT_TESTING_CheckCallback check, void *check_cls)
 Setup testcase. More...
 

Function Documentation

◆ do_shutdown()

static void do_shutdown ( void *  cls)
static

Shutdown function for the test.

Stops all peers.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext *

Definition at line 72 of file transport-testing-main2.c.

73{
76
78 "Testcase shutting down\n");
79 if (NULL != ccc->shutdown_task)
81 if (NULL != ccc->timeout_task)
82 {
84 ccc->timeout_task = NULL;
85 }
86 if (NULL != ccc->connect_task)
87 {
89 ccc->connect_task = NULL;
90 }
91 while (NULL != (crl = ccc->crl_head))
92 {
95 crl);
97 GNUNET_free (crl);
98 }
99 for (unsigned int i = 0; i < ccc->num_peers; i++)
100 {
101 if (NULL != ccc->p[i])
102 {
104 ccc->p[i] = NULL;
105 }
106 }
107}
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
#define GNUNET_log(kind,...)
@ GNUNET_ERROR_TYPE_DEBUG
#define GNUNET_free(ptr)
Wrapper around free.
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:981
Closure that must be passed to GNUNET_TRANSPORT_TESTING_connect_check.
unsigned int num_peers
Number of peers involved in the test.
void * shutdown_task_cls
Closure for shutdown_task.
struct GNUNET_SCHEDULER_Task * timeout_task
Task run on timeout.
GNUNET_SCHEDULER_TaskCallback shutdown_task
Custom task to run on shutdown.
void * cls
Closure for rec, nc and nd.
struct GNUNET_SCHEDULER_Task * connect_task
Task run to connect peers.
struct GNUNET_TRANSPORT_TESTING_ConnectRequestList * crl_head
DLL of active connect requests.
struct GNUNET_TRANSPORT_TESTING_PeerContext ** p
Array with num_peers entries.
struct GNUNET_TRANSPORT_TESTING_ConnectRequestList * crl_tail
DLL of active connect requests.
struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cr
Connect request this is about.
struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext * ccc
Overall context we are in.
void GNUNET_TRANSPORT_TESTING_stop_peer(struct GNUNET_TRANSPORT_TESTING_PeerContext *p)
Shutdown the given peer.
void GNUNET_TRANSPORT_TESTING_connect_peers_cancel(struct GNUNET_TRANSPORT_TESTING_ConnectRequest *cc)
Cancel the request to connect two peers.

References GNUNET_TRANSPORT_TESTING_ConnectRequestList::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::connect_task, GNUNET_TRANSPORT_TESTING_ConnectRequestList::cr, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_head, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_tail, GNUNET_CONTAINER_DLL_remove, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_SCHEDULER_cancel(), GNUNET_TRANSPORT_TESTING_connect_peers_cancel(), GNUNET_TRANSPORT_TESTING_stop_peer(), GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::shutdown_task, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::shutdown_task_cls, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::timeout_task.

Referenced by connect_check_run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ do_timeout()

static void do_timeout ( void *  cls)
static

Testcase hit timeout, shut it down with error.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext *

Definition at line 116 of file transport-testing-main2.c.

117{
119
120 ccc->timeout_task = NULL;
122 "Testcase timed out\n");
125}
@ GNUNET_SYSERR
@ GNUNET_ERROR_TYPE_WARNING
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:567
int global_ret
Result from the main function, set to GNUNET_OK on success.

References GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::global_ret, GNUNET_ERROR_TYPE_WARNING, GNUNET_log, GNUNET_SCHEDULER_shutdown(), GNUNET_SYSERR, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::timeout_task.

Referenced by connect_check_run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ connect_cb()

static void connect_cb ( void *  cls)
static

Function called when we connected two peers.

Once we have gotten to the clique, launch test-specific logic.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_ConnectRequestList *

Definition at line 171 of file transport-testing-main2.c.

172{
175
177 ccc->crl_tail,
178 crl);
179 {
180 char *p1_c = GNUNET_strdup (GNUNET_i2s (&crl->p1->id));
181
183 "Peers connected: %u (%s) <-> %u (%s)\n",
184 crl->p1->no,
185 p1_c,
186 crl->p2->no,
187 GNUNET_i2s (&crl->p2->id));
188 GNUNET_free (p1_c);
189 GNUNET_free (crl);
190 }
191 if (NULL == ccc->crl_head)
192 {
194 "All connections UP, launching custom test logic.\n");
197 }
198}
const char * GNUNET_i2s(const struct GNUNET_PeerIdentity *pid)
Convert a peer identity to a string (for printing debug messages).
@ GNUNET_ERROR_TYPE_INFO
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition: scheduler.c:1305
GNUNET_SCHEDULER_TaskCallback connect_continuation
How should we continue after the connect?
void * connect_continuation_cls
Closure for connect_continuation.
struct GNUNET_TRANSPORT_TESTING_PeerContext * p1
Peer being connected.
struct GNUNET_TRANSPORT_TESTING_PeerContext * p2
Peer being connected.
unsigned int no
An unique number to identify the peer.
struct GNUNET_PeerIdentity id
Peer identity.

References GNUNET_TRANSPORT_TESTING_ConnectRequestList::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::connect_continuation, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::connect_continuation_cls, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_head, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_tail, GNUNET_CONTAINER_DLL_remove, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_INFO, GNUNET_free, GNUNET_i2s(), GNUNET_log, GNUNET_SCHEDULER_add_now(), GNUNET_strdup, GNUNET_TRANSPORT_TESTING_PeerContext::id, GNUNET_TRANSPORT_TESTING_PeerContext::no, GNUNET_TRANSPORT_TESTING_ConnectRequestList::p1, and GNUNET_TRANSPORT_TESTING_ConnectRequestList::p2.

Referenced by do_connect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_TESTING_find_peer()

struct GNUNET_TRANSPORT_TESTING_PeerContext * GNUNET_TRANSPORT_TESTING_find_peer ( struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext ccc,
const struct GNUNET_PeerIdentity peer 
)

Find peer by peer ID.

Parameters
ccccontext to search
peerpeer to look for
Returns
NULL if peer was not found

Definition at line 209 of file transport-testing-main2.c.

213{
214 for (unsigned int i = 0; i < ccc->num_peers; i++)
215 if ((NULL != ccc->p[i]) &&
216 (0 == memcmp (peer,
217 &ccc->p[i]->id,
218 sizeof(*peer))))
219 return ccc->p[i];
220 return NULL;
221}

References GNUNET_TRANSPORT_TESTING_PeerContext::id, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, and GNUNET_TRANSPORT_TESTING_PeerContext::peer.

◆ my_nc()

static void * my_nc ( void *  cls,
const struct GNUNET_PeerIdentity peer,
struct GNUNET_MQ_Handle mq 
)
static

Wrapper around peers connecting.

Calls client's nc function.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_InternalPeerContext *
peerpeer we got connected to
mqmessage queue for transmissions to peer
Returns
closure for message handlers

Definition at line 233 of file transport-testing-main2.c.

236{
239 struct ConnectPairInfo *cpi;
240
241 if (NULL != ccc->nc)
242 ccc->nc (ccc->cls,
243 ccc->p[ipi->off],
244 peer);
245 cpi = GNUNET_new (struct ConnectPairInfo);
246 cpi->ipi = ipi;
247 cpi->sender = peer; /* valid until disconnect */
248 return cpi;
249}
#define GNUNET_new(type)
Allocate a struct or union of the given type.
Information tracked per connected peer.
const struct GNUNET_PeerIdentity * sender
Peer this is about.
struct GNUNET_TRANSPORT_TESTING_InternalPeerContext * ipi
Information about the receiving peer.
GNUNET_TRANSPORT_TESTING_NotifyConnect nc
Notify connect argument to give for peers we start.
unsigned int off
Offset of the peer this is about.
struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext * ccc
Overall context of the callback.

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, GNUNET_new, ConnectPairInfo::ipi, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::nc, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, and ConnectPairInfo::sender.

Referenced by connect_check_run().

Here is the caller graph for this function:

◆ my_nd()

static void my_nd ( void *  cls,
const struct GNUNET_PeerIdentity peer,
void *  custom_cls 
)
static

Wrapper around peers disconnecting.

Calls client's nd function.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_InternalPeerContext *
peerpeer we got disconnected from
custom_clsreturn value from my_nc

Definition at line 260 of file transport-testing-main2.c.

263{
266 struct ConnectPairInfo *cpi = custom_cls;
267
268 if (NULL != ccc->nd)
269 ccc->nd (ccc->cls,
270 ccc->p[ipi->off],
271 peer);
272 GNUNET_free (cpi);
273}
GNUNET_TRANSPORT_TESTING_NotifyDisconnect nd
Notify disconnect argument to give for peers we start.

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, GNUNET_free, ConnectPairInfo::ipi, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::nd, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p.

Referenced by connect_check_run().

Here is the caller graph for this function:

◆ check_test()

static int check_test ( void *  cls,
const struct GNUNET_TRANSPORT_TESTING_TestMessage message 
)
static

Wrapper around receiving data.

Calls client's rec function.

Parameters
clsour struct ConnectPairInfo *
messagemessage we received
Returns
GNUNET_OK (all messages are fine)

Definition at line 284 of file transport-testing-main2.c.

286{
287 return GNUNET_OK;
288}
@ GNUNET_OK

References GNUNET_OK.

◆ handle_test()

static void handle_test ( void *  cls,
const struct GNUNET_TRANSPORT_TESTING_TestMessage message 
)
static

Wrapper around receiving data.

Calls client's rec function.

Parameters
clsour struct ConnectPairInfo *
messagemessage we received

Definition at line 298 of file transport-testing-main2.c.

300{
301 struct ConnectPairInfo *cpi = cls;
304
305 if (NULL != ccc->rec)
306 ccc->rec (ccc->cls,
307 ccc->p[ipi->off],
308 cpi->sender,
309 message);
310}
GNUNET_TRANSPORT_TESTING_ReceiveCallback rec
Receiver argument to give for peers we start.

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, ConnectPairInfo::ipi, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::rec, and ConnectPairInfo::sender.

◆ check_test2()

static int check_test2 ( void *  cls,
const struct GNUNET_TRANSPORT_TESTING_TestMessage message 
)
static

Wrapper around receiving data.

Calls client's rec function.

Parameters
clsour struct ConnectPairInfo *
messagemessage we received
Returns
GNUNET_OK (all messages are fine)

Definition at line 321 of file transport-testing-main2.c.

323{
324 return GNUNET_OK;
325}

References GNUNET_OK.

◆ handle_test2()

static void handle_test2 ( void *  cls,
const struct GNUNET_TRANSPORT_TESTING_TestMessage message 
)
static

Wrapper around receiving data.

Calls client's rec function.

Parameters
clsour struct ConnectPairInfo *
messagemessage we received

Definition at line 335 of file transport-testing-main2.c.

337{
338 struct ConnectPairInfo *cpi = cls;
341
342 if (NULL != ccc->rec)
343 ccc->rec (ccc->cls,
344 ccc->p[ipi->off],
345 cpi->sender,
346 message);
347}

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, ConnectPairInfo::ipi, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::rec, and ConnectPairInfo::sender.

◆ do_connect()

static void do_connect ( void *  cls)
static

Connect the peers as a clique.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext

Definition at line 356 of file transport-testing-main2.c.

357{
359
360 ccc->connect_task = NULL;
361 for (unsigned int i = 0; i < ccc->num_peers; i++)
362 for (unsigned int j = (ccc->bi_directional ? 0 : i + 1); j < ccc->num_peers;
363 j++)
364 {
366
367 if (i == j)
368 continue;
371 ccc->crl_tail,
372 crl);
373 crl->ccc = ccc;
374 crl->p1 = ccc->p[i];
375 crl->p2 = ccc->p[j];
376 {
377 char *sender_c = GNUNET_strdup (GNUNET_i2s (&ccc->p[0]->id));
378
380 "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
381 ccc->p[0]->no,
382 sender_c,
383 ccc->p[1]->no,
384 GNUNET_i2s (&ccc->p[1]->id));
385 GNUNET_free (sender_c);
386 }
388 ccc->p[j],
389 &connect_cb,
390 crl);
391 }
392}
static unsigned int num_peers
Number of peers.
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
int bi_directional
Should we try to create connections in both directions?
static void connect_cb(void *cls)
Function called when we connected two peers.
struct GNUNET_TRANSPORT_TESTING_ConnectRequest * GNUNET_TRANSPORT_TESTING_connect_peers(struct GNUNET_TRANSPORT_TESTING_PeerContext *p1, struct GNUNET_TRANSPORT_TESTING_PeerContext *p2, GNUNET_SCHEDULER_TaskCallback cb, void *cls)
Function called after the HELLO was passed to the transport service.

References GNUNET_TRANSPORT_TESTING_ConnectCheckContext::bi_directional, GNUNET_TRANSPORT_TESTING_ConnectRequestList::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, connect_cb(), GNUNET_TRANSPORT_TESTING_ConnectCheckContext::connect_task, GNUNET_TRANSPORT_TESTING_ConnectRequestList::cr, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_head, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::crl_tail, GNUNET_CONTAINER_DLL_insert, GNUNET_ERROR_TYPE_INFO, GNUNET_free, GNUNET_i2s(), GNUNET_log, GNUNET_new, GNUNET_strdup, GNUNET_TRANSPORT_TESTING_connect_peers(), GNUNET_TRANSPORT_TESTING_PeerContext::id, GNUNET_TRANSPORT_TESTING_PeerContext::no, num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectRequestList::p1, and GNUNET_TRANSPORT_TESTING_ConnectRequestList::p2.

Referenced by start_cb().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ start_cb()

static void start_cb ( void *  cls)
static

Function called once we have successfully launched a peer.

Once all peers have been launched, we connect all of them in a clique.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_InternalPeerContext *

Definition at line 403 of file transport-testing-main2.c.

404{
407 struct GNUNET_TRANSPORT_TESTING_PeerContext *p = ccc->p[ipi->off];
408
409 ccc->started++;
411 "Peer %u (`%s') started\n",
412 p->no,
413 GNUNET_i2s (&p->id));
414 if (ccc->started != ccc->num_peers)
415 return;
416 if (NULL != ccc->pre_connect_task)
417 {
418 /* Run the custom per-connect job, then give it a second to
419 go into effect before we continue connecting peers. */
422 &do_connect,
423 ccc);
424 }
425 else
426 {
427 do_connect (ccc);
428 }
429}
static struct GNUNET_OS_Process * p
Helper process we started.
Definition: gnunet-uri.c:38
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed(struct GNUNET_TIME_Relative delay, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition: scheduler.c:1278
#define GNUNET_TIME_UNIT_SECONDS
One second.
void * pre_connect_task_cls
Closure for shutdown_task.
GNUNET_SCHEDULER_TaskCallback pre_connect_task
Custom task to run after peers were started but before we try to connect them.
unsigned int started
Number of peers that have been started.
static void do_connect(void *cls)
Connect the peers as a clique.

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::connect_task, do_connect(), GNUNET_ERROR_TYPE_INFO, GNUNET_i2s(), GNUNET_log, GNUNET_SCHEDULER_add_delayed(), GNUNET_TIME_UNIT_SECONDS, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::pre_connect_task, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::pre_connect_task_cls, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::started.

Referenced by connect_check_run(), and GNUNET_TRANSPORT_TESTING_start_peer().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ connect_check_run()

static void connect_check_run ( void *  cls,
char *const *  args,
const char *  cfgfile,
const struct GNUNET_CONFIGURATION_Handle cfg 
)
static

Function run from GNUNET_TRANSPORT_TESTING_connect_check once the scheduler is up.

Should launch the peers and then in the continuations try to connect them.

Parameters
clsour struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext *
argsignored
cfgfileignored
cfgconfiguration

Definition at line 443 of file transport-testing-main2.c.

447{
449 int ok;
450
451 ccc->cfg = cfg;
453 &do_timeout,
454 ccc);
456 ccc);
457 ok = GNUNET_OK;
458 for (unsigned int i = 0; i < ccc->num_peers; i++)
459 {
464 NULL),
468 NULL),
470 };
472 ccc->cfg_files[i],
473 i + 1,
474 handlers,
475 &my_nc,
476 &my_nd,
477 &ccc->ip[i],
478 &start_cb,
479 &ccc->ip[i]);
480 if (NULL == ccc->p[i])
481 ok = GNUNET_SYSERR;
482 }
483 if (GNUNET_OK != ok)
484 {
486 "Fail! Could not start peers!\n");
488 }
489}
struct GNUNET_MQ_MessageHandlers handlers[]
Definition: 003.c:1
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
@ GNUNET_ERROR_TYPE_ERROR
#define GNUNET_MQ_handler_end()
End-marker for the handlers array.
#define GNUNET_MQ_hd_var_size(name, code, str, ctx)
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition: scheduler.c:1340
Message handler for a specific message type.
const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration object for the testcase.
struct GNUNET_TRANSPORT_TESTING_InternalPeerContext * ip
Array with num_peers entries.
char ** cfg_files
Configuration files we have, array with num_peers entries.
struct GNUNET_TRANSPORT_TESTING_Handle * tth
Main testing handle.
struct GNUNET_TIME_Relative timeout
When should the testcase time out?
static void start_cb(void *cls)
Function called once we have successfully launched a peer.
static void do_timeout(void *cls)
Testcase hit timeout, shut it down with error.
static void * my_nc(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq)
Wrapper around peers connecting.
static void do_shutdown(void *cls)
Shutdown function for the test.
static void my_nd(void *cls, const struct GNUNET_PeerIdentity *peer, void *custom_cls)
Wrapper around peers disconnecting.
struct GNUNET_TRANSPORT_TESTING_PeerContext * GNUNET_TRANSPORT_TESTING_start_peer(struct GNUNET_TRANSPORT_TESTING_Handle *tth, const char *cfgname, int peer_id, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_TRANSPORT_NotifyConnect nc, GNUNET_TRANSPORT_NotifyDisconnect nd, void *cb_cls, GNUNET_SCHEDULER_TaskCallback start_cb, void *start_cb_cls)
Start a peer with the given configuration.
#define GNUNET_TRANSPORT_TESTING_SIMPLE_MTYPE
Message type used by GNUNET_TRANSPORT_TESTING_simple_send().
#define GNUNET_TRANSPORT_TESTING_SIMPLE_MTYPE2
Alternative message type for tests.

References cfg, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cfg, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cfg_files, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, do_shutdown(), do_timeout(), GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_MQ_handler_end, GNUNET_MQ_hd_var_size, GNUNET_OK, GNUNET_SCHEDULER_add_delayed(), GNUNET_SCHEDULER_add_shutdown(), GNUNET_SCHEDULER_shutdown(), GNUNET_SYSERR, GNUNET_TRANSPORT_TESTING_SIMPLE_MTYPE, GNUNET_TRANSPORT_TESTING_SIMPLE_MTYPE2, GNUNET_TRANSPORT_TESTING_start_peer(), handlers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::ip, my_nc(), my_nd(), GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, start_cb(), GNUNET_TRANSPORT_TESTING_ConnectCheckContext::timeout, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::timeout_task, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::tth.

Referenced by GNUNET_TRANSPORT_TESTING_connect_check().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_TESTING_connect_check()

int GNUNET_TRANSPORT_TESTING_connect_check ( void *  cls,
struct GNUNET_TRANSPORT_TESTING_Handle tth_,
const char *  test_plugin_,
const char *  test_name_,
unsigned int  num_peers,
char *  cfg_files[] 
)

Common implementation of the GNUNET_TRANSPORT_TESTING_CheckCallback.

Starts and connects the two peers, then invokes the connect_continuation from cls. Sets up a timeout to abort the test, and a shutdown handler to clean up properly on exit.

Parameters
clsclosure of type struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext
tth_initialized testing handle
test_plugin_name of the plugin
test_name_name of the test
num_peersnumber of entries in the cfg_file array
cfg_filesarray of names of configuration files for the peers
Returns
GNUNET_SYSERR on error

Definition at line 508 of file transport-testing-main2.c.

515{
516 static struct GNUNET_GETOPT_CommandLineOption options[] = {
518 };
522 char *argv[] = {
523 (char *) test_name_,
524 "-c",
525 (char *) ccc->config_file,
526 NULL
527 };
528
530 ccc->cfg_files = cfg_files;
531 ccc->test_plugin = test_plugin_;
532 ccc->test_name = test_name_;
533 ccc->tth = tth_;
535 ccc->p = p;
536 ccc->ip = ip;
537 for (unsigned int i = 0; i < num_peers; i++)
538 {
539 ip[i].off = i;
540 ip[i].ccc = ccc;
541 }
542 if (GNUNET_OK !=
543 GNUNET_PROGRAM_run ((sizeof(argv) / sizeof(char *)) - 1,
544 argv,
545 test_name_,
546 "nohelp",
547 options,
549 ccc))
550 return GNUNET_SYSERR;
551 return ccc->global_ret;
552}
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_OPTION_END
Definition: 002.c:13
struct GNUNET_GETOPT_CommandLineOption options[]
Definition: 002.c:5
enum GNUNET_GenericReturnValue GNUNET_PROGRAM_run(int argc, char *const *argv, const char *binaryName, const char *binaryHelp, const struct GNUNET_GETOPT_CommandLineOption *options, GNUNET_PROGRAM_Main task, void *task_cls)
Run a standard GNUnet command startup sequence (initialize loggers and configuration,...
Definition: program.c:400
Definition of a command line option.
const char * config_file
Which configuration file should we pass to the GNUNET_PROGRAM_run() of the testcase?
const char * test_name
Name of the testcase.
const char * test_plugin
Name of the plugin.
static void connect_check_run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Function run from GNUNET_TRANSPORT_TESTING_connect_check once the scheduler is up.

References GNUNET_TRANSPORT_TESTING_InternalPeerContext::ccc, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cfg_files, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::cls, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::config_file, connect_check_run(), GNUNET_TRANSPORT_TESTING_ConnectCheckContext::global_ret, GNUNET_GETOPT_OPTION_END, GNUNET_OK, GNUNET_PROGRAM_run(), GNUNET_SYSERR, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::ip, num_peers, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::num_peers, GNUNET_TRANSPORT_TESTING_InternalPeerContext::off, options, p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::p, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::test_name, GNUNET_TRANSPORT_TESTING_ConnectCheckContext::test_plugin, and GNUNET_TRANSPORT_TESTING_ConnectCheckContext::tth.

Here is the call graph for this function:

◆ GNUNET_TRANSPORT_TESTING_main_()

int GNUNET_TRANSPORT_TESTING_main_ ( const char *  argv0,
const char *  filename,
unsigned int  num_peers,
GNUNET_TRANSPORT_TESTING_CheckCallback  check,
void *  check_cls 
)

Setup testcase.

Calls check with the data the test needs.

Parameters
argv0binary name (argv[0])
filenamesource file name (FILE)
num_peersnumber of peers to start
checkmain function to run
check_clsclosure for check
Returns
GNUNET_OK on success

Definition at line 566 of file transport-testing-main2.c.

571{
573 char *test_name;
574 char *test_source;
575 char *test_plugin;
576 char *cfg_names[num_peers];
577 int ret;
578
579 ret = GNUNET_OK;
580 test_name = GNUNET_TRANSPORT_TESTING_get_test_name (argv0);
581 GNUNET_log_setup (test_name,
582 "WARNING",
583 NULL);
586 test_source);
587 for (unsigned int i = 0; i < num_peers; i++)
588 cfg_names[i] = GNUNET_TRANSPORT_TESTING_get_config_name (argv0,
589 i + 1);
591 if (NULL == tth)
592 {
594 }
595 else
596 {
597 ret = check (check_cls,
598 tth,
599 test_plugin,
600 test_name,
601 num_peers,
602 cfg_names);
604 }
605 for (unsigned int i = 0; i < num_peers; i++)
606 GNUNET_free (cfg_names[i]);
607 GNUNET_free (test_source);
608 GNUNET_free (test_plugin);
609 GNUNET_free (test_name);
610 return ret;
611}
static int ret
Final status code.
Definition: gnunet-arm.c:94
static char * filename
enum GNUNET_GenericReturnValue GNUNET_log_setup(const char *comp, const char *loglevel, const char *logfile)
Setup logging.
char * GNUNET_TRANSPORT_TESTING_get_test_plugin_name(const char *file, const char *test)
Extracts the plugin name from an absolute file name and the test name.
char * GNUNET_TRANSPORT_TESTING_get_test_source_name(const char *file)
Extracts the filename from an absolute file name and removes the extension.
char * GNUNET_TRANSPORT_TESTING_get_config_name(const char *file, int count)
This function takes the filename (e.g.
char * GNUNET_TRANSPORT_TESTING_get_test_name(const char *file)
Extracts the test filename from an absolute file name and removes the extension.
struct GNUNET_TRANSPORT_TESTING_Handle * GNUNET_TRANSPORT_TESTING_init()
Initialize the transport testing.
void GNUNET_TRANSPORT_TESTING_done(struct GNUNET_TRANSPORT_TESTING_Handle *tth)
Clean up the transport testing.

References filename, GNUNET_free, GNUNET_log_setup(), GNUNET_OK, GNUNET_SYSERR, GNUNET_TRANSPORT_TESTING_done(), GNUNET_TRANSPORT_TESTING_get_config_name(), GNUNET_TRANSPORT_TESTING_get_test_name(), GNUNET_TRANSPORT_TESTING_get_test_plugin_name(), GNUNET_TRANSPORT_TESTING_get_test_source_name(), GNUNET_TRANSPORT_TESTING_init(), num_peers, and ret.

Here is the call graph for this function: