aboutsummaryrefslogtreecommitdiff
path: root/src/auditor
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-01-17 20:27:25 +0100
committerChristian Grothoff <christian@grothoff.org>2024-01-17 20:27:25 +0100
commit3c484c71a2924cb20e7468a325ca7e230068febb (patch)
tree892a1162b694aad4a07a23f8e92fbe69865b66fa /src/auditor
parent3db8ffe54274ee94cc6204463b6c425ba7bcebf7 (diff)
remove auditor tests for now, auditor is temporarily not working due to major refactoring in progress
Diffstat (limited to 'src/auditor')
-rw-r--r--src/auditor/taler-helper-auditor-deposits.c41
1 files changed, 33 insertions, 8 deletions
diff --git a/src/auditor/taler-helper-auditor-deposits.c b/src/auditor/taler-helper-auditor-deposits.c
index ac5fe6861..271f1c363 100644
--- a/src/auditor/taler-helper-auditor-deposits.c
+++ b/src/auditor/taler-helper-auditor-deposits.c
@@ -60,6 +60,14 @@
static int global_ret;
/**
+ * Run in test mode. Exit when idle instead of
+ * going to sleep and waiting for more work.
+ *
+ * FIXME: not yet implemented!
+ */
+static int test_mode;
+
+/**
* Array of reports about missing deposit confirmations.
*/
static json_t *report_deposit_confirmation_inconsistencies;
@@ -322,13 +330,6 @@ db_notify (void *cls,
(void) extra;
(void) extra_size;
- if (GNUNET_OK !=
- TALER_ARL_init (cfg))
- {
- global_ret = EXIT_FAILURE;
- return;
- }
-
if (NULL ==
(db_plugin = TALER_AUDITORDB_plugin_load (cfg)))
{
@@ -348,7 +349,8 @@ db_notify (void *cls,
return;
}
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deposit audit complete\n");
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+ "Deposit audit complete\n");
TALER_ARL_done (
GNUNET_JSON_PACK (
GNUNET_JSON_pack_array_steal ("deposit_confirmation_inconsistencies",
@@ -365,6 +367,22 @@ db_notify (void *cls,
/**
+ * Function called on shutdown.
+ */
+static void
+do_shutdown (void *cls)
+{
+ (void) cls;
+
+ db_plugin->event_listen_cancel (eh);
+ eh = NULL;
+ TALER_AUDITORDB_plugin_unload (db_plugin);
+ db_plugin = NULL;
+ TALER_ARL_done (NULL);
+}
+
+
+/**
* Main function that will be run.
*
* @param cls closure
@@ -382,6 +400,9 @@ run (void *cls,
(void) args;
(void) cfgfile;
cfg = c;
+
+ GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
+ NULL);
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Launching deposit auditor\n");
if (GNUNET_OK !=
@@ -467,6 +488,10 @@ main (int argc,
"KEY",
"public key of the exchange (Crockford base32 encoded)",
&TALER_ARL_master_pub),
+ GNUNET_GETOPT_option_flag ('t',
+ "test",
+ "run in test mode and exit when idle",
+ &test_mode),
GNUNET_GETOPT_option_timetravel ('T',
"timetravel"),
GNUNET_GETOPT_OPTION_END