GNUnet  0.20.0
dht_test_lib.c File Reference

library for writing DHT tests More...

#include "platform.h"
#include "dht_test_lib.h"
Include dependency graph for dht_test_lib.c:

Go to the source code of this file.

Data Structures

struct  GNUNET_DHT_TEST_Context
 Test context for a DHT Test. More...
 

Functions

static void * dht_connect_adapter (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Adapter function called to establish a connection to the DHT service. More...
 
static void dht_disconnect_adapter (void *cls, void *op_result)
 Adapter function called to destroy a connection to the DHT service. More...
 
static void dht_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op, void *ca_result, const char *emsg)
 Callback to be called when a service connect operation is completed. More...
 
void GNUNET_DHT_TEST_cleanup (struct GNUNET_DHT_TEST_Context *ctx)
 Clean up the testbed. More...
 
static void dht_test_run (void *cls, struct GNUNET_TESTBED_RunHandle *h, unsigned int num_peers, struct GNUNET_TESTBED_Peer **peers, unsigned int links_succeeded, unsigned int links_failed)
 
void GNUNET_DHT_TEST_run (const char *testname, const char *cfgname, unsigned int num_peers, GNUNET_DHT_TEST_AppMain tmain, void *tmain_cls)
 Run a test using the given name, configuration file and number of peers. More...
 

Detailed Description

library for writing DHT tests

Author
Christian Grothoff

Definition in file dht_test_lib.c.

Function Documentation

◆ dht_connect_adapter()

static void* dht_connect_adapter ( void *  cls,
const struct GNUNET_CONFIGURATION_Handle cfg 
)
static

Adapter function called to establish a connection to the DHT service.

Parameters
clsclosure
cfgconfiguration of the peer to connect to; will be available until GNUNET_TESTBED_operation_done() is called on the operation returned from GNUNET_TESTBED_service_connect()
Returns
service handle to return in 'op_result', NULL on error

Definition at line 76 of file dht_test_lib.c.

78 {
79  return GNUNET_DHT_connect (cfg, 16);
80 }
static const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we are using.
Definition: gnunet-abd.c:36
struct GNUNET_DHT_Handle * GNUNET_DHT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned int ht_len)
Initialize the connection with the DHT service.
Definition: dht_api.c:1039

References cfg, and GNUNET_DHT_connect().

Referenced by dht_test_run().

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

◆ dht_disconnect_adapter()

static void dht_disconnect_adapter ( void *  cls,
void *  op_result 
)
static

Adapter function called to destroy a connection to the DHT service.

Parameters
clsclosure
op_resultservice handle returned from the connect adapter

Definition at line 91 of file dht_test_lib.c.

93 {
95 
97 }
static struct GNUNET_DHT_Handle * dht
Handle to the DHT.
void GNUNET_DHT_disconnect(struct GNUNET_DHT_Handle *handle)
Shutdown connection with the DHT service.
Definition: dht_api.c:1062
static int op_result(struct GNUNET_OP_Handle *h, uint64_t op_id, int64_t result_code, const void *data, uint16_t data_size, void **ctx, uint8_t cancel)
Remove an operation, and call its result callback (unless it was cancelled).
Definition: op.c:246
Connection to the DHT service.
Definition: dht_api.c:237

References dht, GNUNET_DHT_disconnect(), and op_result().

Referenced by dht_test_run().

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

◆ dht_connect_cb()

static void dht_connect_cb ( void *  cls,
struct GNUNET_TESTBED_Operation op,
void *  ca_result,
const char *  emsg 
)
static

Callback to be called when a service connect operation is completed.

Parameters
clsthe callback closure from functions generating an operation
opthe operation that has been finished
ca_resultthe service handle returned from GNUNET_TESTBED_ConnectAdapter()
emsgerror message in case the operation has failed; will be NULL if operation has executed successfully.

Definition at line 110 of file dht_test_lib.c.

114 {
115  struct GNUNET_DHT_TEST_Context *ctx = cls;
116 
117  if (NULL != emsg)
118  {
119  fprintf (stderr,
120  "Failed to connect to DHT service: %s\n",
121  emsg);
123  return;
124  }
125  for (unsigned int i = 0; i < ctx->num_peers; i++)
126  if (op == ctx->ops[i])
127  ctx->dhts[i] = ca_result;
128  for (unsigned int i = 0; i < ctx->num_peers; i++)
129  if (NULL == ctx->dhts[i])
130  return;
131  /* still some DHT connections missing */
132  /* all DHT connections ready! */
133  ctx->app_main (ctx->app_main_cls,
134  ctx,
135  ctx->num_peers,
136  ctx->peers,
137  ctx->dhts);
138 }
static struct GNUNET_ARM_Operation * op
Current operation.
Definition: gnunet-arm.c:144
static struct GNUNET_DNSSTUB_Context * ctx
Context for DNS resolution.
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:562
Test context for a DHT Test.
Definition: dht_test_lib.c:32

References ctx, GNUNET_SCHEDULER_shutdown(), and op.

Referenced by dht_test_run().

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

◆ GNUNET_DHT_TEST_cleanup()

void GNUNET_DHT_TEST_cleanup ( struct GNUNET_DHT_TEST_Context ctx)

Clean up the testbed.

Parameters
ctxhandle for the testbed

Definition at line 142 of file dht_test_lib.c.

143 {
144  for (unsigned int i = 0; i < ctx->num_peers; i++)
146  GNUNET_free (ctx->ops);
147  GNUNET_free (ctx->dhts);
148  GNUNET_free (ctx);
150 }
#define GNUNET_free(ptr)
Wrapper around free.
void GNUNET_TESTBED_operation_done(struct GNUNET_TESTBED_Operation *operation)
This function is used to signal that the event information (struct GNUNET_TESTBED_EventInformation) f...
Definition: testbed_api.c:2021

References ctx, GNUNET_free, GNUNET_SCHEDULER_shutdown(), and GNUNET_TESTBED_operation_done().

Here is the call graph for this function:

◆ dht_test_run()

static void dht_test_run ( void *  cls,
struct GNUNET_TESTBED_RunHandle h,
unsigned int  num_peers,
struct GNUNET_TESTBED_Peer **  peers,
unsigned int  links_succeeded,
unsigned int  links_failed 
)
static

Definition at line 154 of file dht_test_lib.c.

160 {
161  struct GNUNET_DHT_TEST_Context *ctx = cls;
162 
163  GNUNET_assert (num_peers == ctx->num_peers);
164  ctx->peers = peers;
165  for (unsigned int i = 0; i < num_peers; i++)
167  peers[i],
168  "dht",
170  ctx,
173  ctx);
174 }
static void * dht_connect_adapter(void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
Adapter function called to establish a connection to the DHT service.
Definition: dht_test_lib.c:76
static void dht_disconnect_adapter(void *cls, void *op_result)
Adapter function called to destroy a connection to the DHT service.
Definition: dht_test_lib.c:91
static void dht_connect_cb(void *cls, struct GNUNET_TESTBED_Operation *op, void *ca_result, const char *emsg)
Callback to be called when a service connect operation is completed.
Definition: dht_test_lib.c:110
static struct CadetPeer * peers
Operation to get peer ids.
static unsigned int num_peers
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
struct GNUNET_TESTBED_Operation * GNUNET_TESTBED_service_connect(void *op_cls, struct GNUNET_TESTBED_Peer *peer, const char *service_name, GNUNET_TESTBED_ServiceConnectCompletionCallback cb, void *cb_cls, GNUNET_TESTBED_ConnectAdapter ca, GNUNET_TESTBED_DisconnectAdapter da, void *cada_cls)
Connect to a service offered by the given peer.

References ctx, dht_connect_adapter(), dht_connect_cb(), dht_disconnect_adapter(), GNUNET_assert, GNUNET_TESTBED_service_connect(), num_peers, and peers.

Referenced by GNUNET_DHT_TEST_run().

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

◆ GNUNET_DHT_TEST_run()

void GNUNET_DHT_TEST_run ( const char *  testname,
const char *  cfgname,
unsigned int  num_peers,
GNUNET_DHT_TEST_AppMain  tmain,
void *  tmain_cls 
)

Run a test using the given name, configuration file and number of peers.

Parameters
testnamename of the test (for logging)
cfgnamename of the configuration file
num_peersnumber of peers to start
tmainmain function to run once the testbed is ready
tmain_clsclosure for 'tmain'

Definition at line 178 of file dht_test_lib.c.

183 {
185 
187  ctx->num_peers = num_peers;
189  struct GNUNET_TESTBED_Operation *);
190  ctx->dhts = GNUNET_new_array (num_peers,
191  struct GNUNET_DHT_Handle *);
192  ctx->app_main = tmain;
193  ctx->app_main_cls = tmain_cls;
194  (void) GNUNET_TESTBED_test_run (testname,
195  cfgname,
196  num_peers,
197  0LL, NULL, NULL,
198  &dht_test_run, ctx);
199 }
static void dht_test_run(void *cls, struct GNUNET_TESTBED_RunHandle *h, unsigned int num_peers, struct GNUNET_TESTBED_Peer **peers, unsigned int links_succeeded, unsigned int links_failed)
Definition: dht_test_lib.c:154
static void tmain(void *cls, struct GNUNET_CADET_TEST_Context *ctx, unsigned int num_peers, struct GNUNET_TESTBED_Peer **testbed_peers, struct GNUNET_CADET_Handle **cadetes)
test main: start test when all peers are connected
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_new_array(n, type)
Allocate a size n array with structs or unions of the given type.
int GNUNET_TESTBED_test_run(const char *testname, const char *cfg_filename, unsigned int num_peers, uint64_t event_mask, GNUNET_TESTBED_ControllerCallback cc, void *cc_cls, GNUNET_TESTBED_TestMaster test_master, void *test_master_cls)
Convenience method for running a "simple" test on the local system with a single call from 'main'.
Opaque handle to an abstract operation to be executed by the testing framework.

References ctx, dht_test_run(), GNUNET_new, GNUNET_new_array, GNUNET_TESTBED_test_run(), num_peers, and tmain().

Here is the call graph for this function: