aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_api_traits.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 14:01:07 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 14:01:07 +0200
commitcc90a65e1a562889778d748c129bff2920e3dd21 (patch)
treee7571f96719cebf325e5490a85c865c10efbe536 /src/testing/testing_api_traits.c
parent00407f6a36880fda570604cf4e64858bb08a025b (diff)
downloadgnunet-cc90a65e1a562889778d748c129bff2920e3dd21.tar.gz
gnunet-cc90a65e1a562889778d748c129bff2920e3dd21.zip
BUILD: Move testing to lib
Diffstat (limited to 'src/testing/testing_api_traits.c')
-rw-r--r--src/testing/testing_api_traits.c90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/testing/testing_api_traits.c b/src/testing/testing_api_traits.c
deleted file mode 100644
index ee3edbed0..000000000
--- a/src/testing/testing_api_traits.c
+++ /dev/null
@@ -1,90 +0,0 @@
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
21/**
22 * @file testing/testing_api_traits.c
23 * @brief loop for trait resolution
24 * @author Christian Grothoff (GNU Taler testing)
25 * @author Marcello Stanisci (GNU Taler testing)
26 * @author t3sserakt
27 */
28#include "platform.h"
29#include "gnunet_testing_ng_lib.h"
30#include "gnunet_testing_plugin.h"
31#include "gnunet_testing_barrier.h"
32#include "gnunet_testing_netjail_lib.h"
33
34
35GNUNET_TESTING_SIMPLE_TRAITS (GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT)
36
37GNUNET_TESTING_INDEXED_TRAITS (GNUNET_TESTING_MAKE_IMPL_INDEXED_TRAIT)
38
39GNUNET_TESTING_SIMPLE_NETJAIL_TRAITS (GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT)
40
41/**
42 * End a trait array. Usually, commands offer several traits,
43 * and put them in arrays.
44 */
45struct GNUNET_TESTING_Trait
46GNUNET_TESTING_trait_end ()
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
58/**
59 * Pick the chosen trait from the traits array.
60 *
61 * @param traits the traits array.
62 * @param ret where to store the result.
63 * @param trait type of the trait to extract.
64 * @param index index number of the object to extract.
65 * @return #GNUNET_OK if no error occurred, #GNUNET_SYSERR otherwise.
66 */
67enum GNUNET_GenericReturnValue
68GNUNET_TESTING_get_trait (const struct GNUNET_TESTING_Trait *traits,
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 }
82 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
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 */