diff options
Diffstat (limited to 'src/testing/testing_trait_truth.c')
-rw-r--r-- | src/testing/testing_trait_truth.c | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/testing/testing_trait_truth.c b/src/testing/testing_trait_truth.c new file mode 100644 index 0000000..51696e1 --- /dev/null +++ b/src/testing/testing_trait_truth.c | |||
@@ -0,0 +1,73 @@ | |||
1 | /* | ||
2 | This file is part of TALER | ||
3 | Copyright (C) 2020 Taler Systems SA | ||
4 | |||
5 | TALER is free software; you can redistribute it and/or modify it | ||
6 | under the terms of the GNU General Public License as published | ||
7 | by the Free Software Foundation; either version 3, or (at your | ||
8 | option) any later version. | ||
9 | |||
10 | TALER 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 | General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public | ||
16 | License along with TALER; see the file COPYING. If not, see | ||
17 | <http://www.gnu.org/licenses/> | ||
18 | */ | ||
19 | /** | ||
20 | * @file lib/testing_trait_truth.c | ||
21 | * @brief traits to offer a truth | ||
22 | * @author Christian Grothoff | ||
23 | * @author Dominik Meister | ||
24 | * @author Dennis Neufeld | ||
25 | */ | ||
26 | #include "platform.h" | ||
27 | #include "anastasis_testing_lib.h" | ||
28 | |||
29 | #define ANASTASIS_TESTING_TRAIT_TRUTH "anastasis-truth" | ||
30 | |||
31 | |||
32 | /** | ||
33 | * Obtain a truth from @a cmd. | ||
34 | * | ||
35 | * @param cmd command to extract the truth from. | ||
36 | * @param index the index of the truth | ||
37 | * @param t[out] set to the truth coming from @a cmd. | ||
38 | * @return #GNUNET_OK on success. | ||
39 | */ | ||
40 | int | ||
41 | ANASTASIS_TESTING_get_trait_truth (const struct TALER_TESTING_Command *cmd, | ||
42 | unsigned int index, | ||
43 | const struct ANASTASIS_Truth **t) | ||
44 | { | ||
45 | return cmd->traits (cmd->cls, | ||
46 | (const void **) t, | ||
47 | ANASTASIS_TESTING_TRAIT_TRUTH, | ||
48 | index); | ||
49 | } | ||
50 | |||
51 | |||
52 | /** | ||
53 | * Offer a truth. | ||
54 | * | ||
55 | * @param index the truth's index number. | ||
56 | * @param t the truth to offer. | ||
57 | * @return #GNUNET_OK on success. | ||
58 | */ | ||
59 | struct TALER_TESTING_Trait | ||
60 | ANASTASIS_TESTING_make_trait_truth | ||
61 | (unsigned int index, | ||
62 | const struct ANASTASIS_Truth *t) | ||
63 | { | ||
64 | struct TALER_TESTING_Trait ret = { | ||
65 | .index = index, | ||
66 | .trait_name = ANASTASIS_TESTING_TRAIT_TRUTH, | ||
67 | .ptr = (const void *) t | ||
68 | }; | ||
69 | return ret; | ||
70 | } | ||
71 | |||
72 | |||
73 | /* end of testing_trait_truth.c */ | ||