aboutsummaryrefslogtreecommitdiff
path: root/src/lib/testing/testing_api_traits.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/testing/testing_api_traits.c')
-rw-r--r--src/lib/testing/testing_api_traits.c84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/lib/testing/testing_api_traits.c b/src/lib/testing/testing_api_traits.c
new file mode 100644
index 000000000..0726a7576
--- /dev/null
+++ b/src/lib/testing/testing_api_traits.c
@@ -0,0 +1,84 @@
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_lib.h"
30
31
32GNUNET_TESTING_SIMPLE_TRAITS (GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT,
33 GNUNET_TESTING)
34
35/**
36 * End a trait array. Usually, commands offer several traits,
37 * and put them in arrays.
38 */
39struct GNUNET_TESTING_Trait
40GNUNET_TESTING_trait_end ()
41{
42 struct GNUNET_TESTING_Trait end = {
43 .index = 0,
44 .trait_name = NULL,
45 .ptr = NULL
46 };
47
48 return end;
49}
50
51
52/**
53 * Pick the chosen trait from the traits array.
54 *
55 * @param traits the traits array.
56 * @param ret where to store the result.
57 * @param trait type of the trait to extract.
58 * @param index index number of the object to extract.
59 * @return #GNUNET_OK if no error occurred, #GNUNET_SYSERR otherwise.
60 */
61enum GNUNET_GenericReturnValue
62GNUNET_TESTING_get_trait (const struct GNUNET_TESTING_Trait *traits,
63 const void **ret,
64 const char *trait,
65 unsigned int index)
66{
67 for (unsigned int i = 0; NULL != traits[i].trait_name; i++)
68 {
69 if ( (0 == strcmp (trait, traits[i].trait_name)) &&
70 (index == traits[i].index) )
71 {
72 *ret = (void *) traits[i].ptr;
73 return GNUNET_OK;
74 }
75 }
76 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
77 "Trait %s/%u not found.\n",
78 trait, index);
79
80 return GNUNET_SYSERR;
81}
82
83
84/* end of testing_api_traits.c */