summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_trait_number.c
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-06-22 03:13:10 -0400
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:50:14 +0200
commitf2ec9c08b024dc1ee3dc2cd968d928e2672bc214 (patch)
tree833f652a01442e1ecb5685d3f5cba73ad9f8fb42 /src/testing/testing_api_trait_number.c
parent25ecc97717490a0ee149cc0af5cec07e764d1acb (diff)
downloadexchange-f2ec9c08b024dc1ee3dc2cd968d928e2672bc214.tar.gz
exchange-f2ec9c08b024dc1ee3dc2cd968d928e2672bc214.tar.bz2
exchange-f2ec9c08b024dc1ee3dc2cd968d928e2672bc214.zip
testing traits for uint32_t and GNUNET_TIME_Relative
Diffstat (limited to 'src/testing/testing_api_trait_number.c')
-rw-r--r--src/testing/testing_api_trait_number.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/testing/testing_api_trait_number.c b/src/testing/testing_api_trait_number.c
index 50ce6d8c7..bf8cd3c2b 100644
--- a/src/testing/testing_api_trait_number.c
+++ b/src/testing/testing_api_trait_number.c
@@ -28,6 +28,7 @@
#include "taler_testing_lib.h"
#define TALER_TESTING_TRAIT_UINT "uint"
+#define TALER_TESTING_TRAIT_UINT32 "uint-32"
#define TALER_TESTING_TRAIT_UINT64 "uint-64"
#define TALER_TESTING_TRAIT_BANK_ROW "bank-transaction-row"
@@ -73,6 +74,45 @@ TALER_TESTING_make_trait_uint (unsigned int index,
/**
+ * Obtain a "number" value from @a cmd, 32-bit version.
+ *
+ * @param cmd command to extract the number from.
+ * @param index the number's index number.
+ * @param[out] n set to the number coming from @a cmd.
+ * @return #GNUNET_OK on success.
+ */
+int
+TALER_TESTING_get_trait_uint32 (const struct TALER_TESTING_Command *cmd,
+ unsigned int index,
+ const uint32_t **n)
+{
+ return cmd->traits (cmd->cls,
+ (const void **) n,
+ TALER_TESTING_TRAIT_UINT32,
+ index);
+}
+
+
+/**
+ * Offer number trait, 32-bit version.
+ *
+ * @param index the number's index number.
+ * @param n number to offer.
+ */
+struct TALER_TESTING_Trait
+TALER_TESTING_make_trait_uint32 (unsigned int index,
+ const uint32_t *n)
+{
+ struct TALER_TESTING_Trait ret = {
+ .index = index,
+ .trait_name = TALER_TESTING_TRAIT_UINT32,
+ .ptr = (const void *) n
+ };
+ return ret;
+}
+
+
+/**
* Obtain a "number" value from @a cmd, 64-bit version.
*
* @param cmd command to extract the number from.