summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-09-15 19:17:06 +0200
committerChristian Grothoff <christian@grothoff.org>2018-09-15 19:17:06 +0200
commit46e4ea696cdba772ad5d6f8d79cf2e6586ef9979 (patch)
tree110893292e76c7f05ec5b04fce0845e29fe9bcff /src
parent2cbe471d5e836092089d5108730de5f14a2adf37 (diff)
downloadexchange-46e4ea696cdba772ad5d6f8d79cf2e6586ef9979.tar.gz
exchange-46e4ea696cdba772ad5d6f8d79cf2e6586ef9979.tar.bz2
exchange-46e4ea696cdba772ad5d6f8d79cf2e6586ef9979.zip
add sleep command
Diffstat (limited to 'src')
-rw-r--r--src/exchange-lib/testing_api_cmd_sleep.c101
-rw-r--r--src/include/taler_testing_lib.h19
2 files changed, 120 insertions, 0 deletions
diff --git a/src/exchange-lib/testing_api_cmd_sleep.c b/src/exchange-lib/testing_api_cmd_sleep.c
new file mode 100644
index 000000000..91198a28a
--- /dev/null
+++ b/src/exchange-lib/testing_api_cmd_sleep.c
@@ -0,0 +1,101 @@
+/*
+ This file is part of TALER
+ (C) 2018 Taler Systems SA
+
+ TALER is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 3, or
+ (at your option) any later version.
+
+ TALER is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public
+ License along with TALER; see the file COPYING. If not, see
+ <http://www.gnu.org/licenses/>
+*/
+/**
+ * @file exchange-lib/testing_api_cmd_sleep.c
+ * @brief command(s) to sleep for a bit
+ * @author Christian Grothoff
+ */
+#include "platform.h"
+#include "taler_json_lib.h"
+#include <gnunet/gnunet_curl_lib.h>
+#include "exchange_api_handle.h"
+#include "taler_testing_lib.h"
+
+
+/**
+ * State for a "sleep" CMD.
+ */
+struct SleepState
+{
+
+ /**
+ * How long should we sleep?
+ */
+ unsigned int duration;
+};
+
+
+/**
+ * Run the command.
+ *
+ * @param cls closure.
+ * @param cmd the command to execute.
+ * @param is the interpreter state.
+ */
+static void
+sleep_run (void *cls,
+ const struct TALER_TESTING_Command *cmd,
+ struct TALER_TESTING_Interpreter *is)
+{
+ struct SleepState *ss = cls;
+
+ sleep (ss->duration);
+ TALER_TESTING_interpreter_next (is);
+}
+
+
+/**
+ * Cleanup the state from a "sleep" CMD.
+ *
+ * @param cls closure.
+ * @param cmd the command which is being cleaned up.
+ */
+static void
+sleep_cleanup (void *cls,
+ const struct TALER_TESTING_Command *cmd)
+{
+ struct SleepState *ss = cls;
+
+ GNUNET_free (ss);
+}
+
+
+/**
+ * Sleep for @a duration_s seconds.
+ *
+ * @param label command label.
+ * @param duration_s number of seconds to sleep
+ * @return the command.
+ */
+struct TALER_TESTING_Command
+TALER_TESTING_cmd_sleep (const char *label,
+ unsigned int duration_s)
+{
+ struct SleepState *ss;
+ struct TALER_TESTING_Command cmd;
+
+ ss = GNUNET_new (struct SleepState);
+ ss->duration = duration_s;
+ cmd.cls = ss;
+ cmd.label = label;
+ cmd.run = &sleep_run;
+ cmd.cleanup = &sleep_cleanup;
+
+ return cmd;
+}
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index 83523dfc4..97189a55e 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -1094,6 +1094,7 @@ TALER_TESTING_cmd_check_bank_transfer_with_ref
(const char *label,
const char *deposit_reference);
+
/**
* Checks wheter all the wire transfers got "checked"
* by the "bank check" CMD.
@@ -1105,6 +1106,7 @@ TALER_TESTING_cmd_check_bank_transfer_with_ref
struct TALER_TESTING_Command
TALER_TESTING_cmd_check_bank_empty (const char *label);
+
/**
* Create a "refund" command, allow to specify refund transaction
* id. Mainly used to create conflicting requests.
@@ -1129,6 +1131,7 @@ TALER_TESTING_cmd_refund_with_id
const char *deposit_reference,
uint64_t refund_transaction_id);
+
/**
* Create a "refund" command.
*
@@ -1184,6 +1187,7 @@ TALER_TESTING_cmd_revoke (const char *label,
const char *coin_reference,
const char *config_filename);
+
/**
* Create a "signal" CMD.
*
@@ -1198,6 +1202,19 @@ TALER_TESTING_cmd_signal (const char *label,
struct GNUNET_OS_Process *process,
int signal);
+
+/**
+ * Sleep for @a duration_s seconds.
+ *
+ * @param label command label.
+ * @param duration_s number of seconds to sleep
+ * @return the command.
+ */
+struct TALER_TESTING_Command
+TALER_TESTING_cmd_sleep (const char *label,
+ unsigned int duration_s);
+
+
/**
* Make a "check keys" command. This type of command
* checks whether the number of denomination keys from
@@ -1218,6 +1235,7 @@ TALER_TESTING_cmd_check_keys
unsigned int num_denom_keys,
struct TALER_EXCHANGE_Handle *exchange);
+
/**
* Create a "batch" command. Such command takes a
* end_CMD-terminated array of CMDs and executed them.
@@ -1235,6 +1253,7 @@ TALER_TESTING_cmd_batch (const char *label,
struct TALER_TESTING_Command *batch);
+
/* *** Generic trait logic for implementing traits ********* */
/**