gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: trait for claim token


From: gnunet
Subject: [taler-exchange] branch master updated: trait for claim token
Date: Wed, 29 Jul 2020 07:26:46 +0200

This is an automated email from the git hooks/post-receive script.

jonathan-buchanan pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new efa567fb trait for claim token
efa567fb is described below

commit efa567fbb473ee60a74d18177ec79ff25683c3e2
Author: Jonathan Buchanan <jonathan.russ.buchanan@gmail.com>
AuthorDate: Wed Jul 29 01:26:36 2020 -0400

    trait for claim token
---
 src/include/taler_testing_lib.h      | 29 ++++++++++++++++++++++++
 src/testing/testing_api_trait_uuid.c | 44 ++++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)

diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index f13823fe..85ea5b01 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -2973,6 +2973,35 @@ TALER_TESTING_make_trait_uuid (unsigned int index,
                                const struct GNUNET_Uuid *uuid);
 
 
+/**
+ * Obtain a claim token from @a cmd.
+ *
+ * @param cmd command to extract the token from.
+ * @param index which amount to pick if @a cmd has multiple
+ *        on offer
+ * @param[out] ct where to write the token.
+ * @return #GNUNET_OK on success.
+ */
+int
+TALER_TESTING_get_trait_claim_token (const struct TALER_TESTING_Command *cmd,
+                                     unsigned int index,
+                                     const struct TALER_ClaimTokenP **ct);
+
+
+/**
+ * Offer a claim token in a trait.
+ *
+ * @param index which token to offer, in case there are
+ *        multiple available.
+ * @param ct the token to offer.
+ *
+ * @return the trait.
+ */
+struct TALER_TESTING_Trait
+TALER_TESTING_make_trait_claim_token (unsigned int index,
+                                      const struct TALER_ClaimTokenP *ct);
+
+
 /**
  * Obtain a absolute time from @a cmd.
  *
diff --git a/src/testing/testing_api_trait_uuid.c 
b/src/testing/testing_api_trait_uuid.c
index 6fc44973..1221be0a 100644
--- a/src/testing/testing_api_trait_uuid.c
+++ b/src/testing/testing_api_trait_uuid.c
@@ -28,6 +28,7 @@
 
 
 #define TALER_TESTING_TRAIT_UUID "uuid"
+#define TALER_TESTING_TRAIT_CLAIM_TOKEN "claim_token"
 
 
 /**
@@ -71,3 +72,46 @@ TALER_TESTING_make_trait_uuid (unsigned int index,
   };
   return ret;
 }
+
+
+/**
+ * Obtain a claim token from @a cmd.
+ *
+ * @param cmd command to extract the token from.
+ * @param index which amount to pick if @a cmd has multiple
+ *        on offer
+ * @param[out] ct where to write the token.
+ * @return #GNUNET_OK on success.
+ */
+int
+TALER_TESTING_get_trait_claim_token (const struct TALER_TESTING_Command *cmd,
+                                     unsigned int index,
+                                     const struct TALER_ClaimTokenP **ct)
+{
+  return cmd->traits (cmd->cls,
+                      (const void **) ct,
+                      TALER_TESTING_TRAIT_CLAIM_TOKEN,
+                      index);
+}
+
+
+/**
+ * Offer a claim token in a trait.
+ *
+ * @param index which token to offer, in case there are
+ *        multiple available.
+ * @param ct the token to offer.
+ *
+ * @return the trait.
+ */
+struct TALER_TESTING_Trait
+TALER_TESTING_make_trait_claim_token (unsigned int index,
+                                      const struct TALER_ClaimTokenP *ct)
+{
+  struct TALER_TESTING_Trait ret = {
+    .index = index,
+    .trait_name = TALER_TESTING_TRAIT_CLAIM_TOKEN,
+    .ptr = (const void *) ct
+  };
+  return ret;
+}

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]