GNUnet  0.20.0
testing_api_traits.c
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet
3  Copyright (C) 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 
28 #include "platform.h"
29 #include "gnunet_testing_ng_lib.h"
30 #include "gnunet_testing_plugin.h"
31 #include "gnunet_testing_barrier.h"
33 
34 
36 
38 
40 
41 
47 {
48  struct GNUNET_TESTING_Trait end = {
49  .index = 0,
50  .trait_name = NULL,
51  .ptr = NULL
52  };
53 
54  return end;
55 }
56 
57 
69  const void **ret,
70  const char *trait,
71  unsigned int index)
72 {
73  for (unsigned int i = 0; NULL != traits[i].trait_name; i++)
74  {
75  if ( (0 == strcmp (trait, traits[i].trait_name)) &&
76  (index == traits[i].index) )
77  {
78  *ret = (void *) traits[i].ptr;
79  return GNUNET_OK;
80  }
81  }
83  "Trait %s/%u not found.\n",
84  trait, index);
85 
86  return GNUNET_SYSERR;
87 }
88 
89 
90 /* end of testing_api_traits.c */
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
static int end
Set if we are to shutdown all services (including ARM).
Definition: gnunet-arm.c:34
API to manage barriers.
#define GNUNET_TESTING_SIMPLE_NETJAIL_TRAITS(op)
Call op on all simple traits.
#define GNUNET_TESTING_INDEXED_TRAITS(op)
Call op on all indexed traits.
#define GNUNET_TESTING_SIMPLE_TRAITS(op)
Call op on all simple traits.
#define GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT(name, type)
Create C implementation for a trait with name name for statically allocated data of type type.
#define GNUNET_TESTING_MAKE_IMPL_INDEXED_TRAIT(name, type)
Create C implementation for a trait with name name for statically allocated data of type type.
#define GNUNET_log(kind,...)
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_OK
@ GNUNET_SYSERR
@ GNUNET_ERROR_TYPE_INFO
A struct GNUNET_TESTING_Trait can be used to exchange data between cmds.
const void * ptr
Pointer to the piece of data to offer.
unsigned int index
Index number associated with the trait.
const char * trait_name
Trait type, for example "reserve-pub" or "coin-priv".
enum GNUNET_GenericReturnValue GNUNET_TESTING_get_trait(const struct GNUNET_TESTING_Trait *traits, const void **ret, const char *trait, unsigned int index)
Pick the chosen trait from the traits array.
struct GNUNET_TESTING_Trait GNUNET_TESTING_trait_end()
End a trait array.