aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_trait_policy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_trait_policy.c')
-rw-r--r--src/testing/testing_trait_policy.c73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/testing/testing_trait_policy.c b/src/testing/testing_trait_policy.c
new file mode 100644
index 0000000..45e773c
--- /dev/null
+++ b/src/testing/testing_trait_policy.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_policy.c
21 * @brief traits to offer a policy
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_POLICY "anastasis-policy"
30
31
32/**
33 * Obtain a policy from @a cmd.
34 *
35 * @param cmd command to extract the policy from.
36 * @param index the index of the policy
37 * @param t[out] set to the policy coming from @a cmd.
38 * @return #GNUNET_OK on success.
39 */
40int
41ANASTASIS_TESTING_get_trait_policy (const struct TALER_TESTING_Command *cmd,
42 unsigned int index,
43 const struct ANASTASIS_Policy **p)
44{
45 return cmd->traits (cmd->cls,
46 (const void **) p,
47 ANASTASIS_TESTING_TRAIT_POLICY,
48 index);
49}
50
51
52/**
53 * Offer a policy.
54 *
55 * @param index the policy's index number.
56 * @param t the policy to offer.
57 * @return #GNUNET_OK on success.
58 */
59struct TALER_TESTING_Trait
60ANASTASIS_TESTING_make_trait_policy
61 (unsigned int index,
62 const struct ANASTASIS_Policy *p)
63{
64 struct TALER_TESTING_Trait ret = {
65 .index = index,
66 .trait_name = ANASTASIS_TESTING_TRAIT_POLICY,
67 .ptr = (const void *) p
68 };
69 return ret;
70}
71
72
73/* end of testing_trait_policy.c */