summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-06-22 16:04:54 -0400
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:50:14 +0200
commite01bcbb2d4d7922829da20a75b4b18ffa8b1c374 (patch)
treeab06fae8b24e97ec9734addbca391c1842e0be1c /src/include
parentf2ec9c08b024dc1ee3dc2cd968d928e2672bc214 (diff)
downloadexchange-e01bcbb2d4d7922829da20a75b4b18ffa8b1c374.tar.gz
exchange-e01bcbb2d4d7922829da20a75b4b18ffa8b1c374.tar.bz2
exchange-e01bcbb2d4d7922829da20a75b4b18ffa8b1c374.zip
traits for int64_t and json_t
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_testing_lib.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index 3402b1ead..3f8346576 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -2388,6 +2388,31 @@ TALER_TESTING_get_trait_uint64 (const struct TALER_TESTING_Command *cmd,
/**
+ * Offer number trait, 64-bit signed version.
+ *
+ * @param index the number's index number.
+ * @param n number to offer.
+ */
+struct TALER_TESTING_Trait
+TALER_TESTING_make_trait_int64 (unsigned int index,
+ const int64_t *n);
+
+
+/**
+ * Obtain a "number" value from @a cmd, 64-bit signed 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_int64 (const struct TALER_TESTING_Command *cmd,
+ unsigned int index,
+ const int64_t **n);
+
+
+/**
* Offer a number.
*
* @param index the number's index number.
@@ -2537,6 +2562,33 @@ TALER_TESTING_make_trait_exchange_keys (unsigned int index,
/**
+ * Obtain json from @a cmd.
+ *
+ * @param cmd command to extract the json from.
+ * @param index index number associate with the json on offer.
+ * @param[out] json where to write the json.
+ * @return #GNUNET_OK on success.
+ */
+int
+TALER_TESTING_get_trait_json (const struct TALER_TESTING_Command *cmd,
+ unsigned int index,
+ const json_t **json);
+
+
+/**
+ * Offer json in a trait.
+ *
+ * @param index index number associate with the json
+ * on offer.
+ * @param json json to offer.
+ * @return the trait.
+ */
+struct TALER_TESTING_Trait
+TALER_TESTING_make_trait_json (unsigned int index,
+ const json_t *json);
+
+
+/**
* Obtain a private key from a "merchant". Used e.g. to obtain
* a merchant's priv to sign a /track request.
*