gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: Progress with aggregator tests.


From: gnunet
Subject: [taler-exchange] branch master updated: Progress with aggregator tests.
Date: Thu, 16 Jan 2020 19:12:10 +0100

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

marcello pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new d4958b08 Progress with aggregator tests.
d4958b08 is described below

commit d4958b0887bb42a3ac279fea8d52c68ae30f2c38
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Jan 16 19:10:45 2020 +0100

    Progress with aggregator tests.
---
 src/lib/test_taler_exchange_aggregator.c | 82 ++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)

diff --git a/src/lib/test_taler_exchange_aggregator.c 
b/src/lib/test_taler_exchange_aggregator.c
index 2b3634c7..bfb3b75e 100644
--- a/src/lib/test_taler_exchange_aggregator.c
+++ b/src/lib/test_taler_exchange_aggregator.c
@@ -906,9 +906,14 @@ run (void *cls,
      struct TALER_TESTING_Interpreter *is)
 {
   struct TALER_TESTING_Command all[] = {
+
+    // check no aggregation happens on a empty database
     TALER_TESTING_cmd_exec_aggregator ("run-aggregator-on-empty-db",
                                       config_filename),
     TALER_TESTING_cmd_check_bank_empty ("expect-empty-transactions-on-start"),
+
+    // check aggregation happens on the simplest case:
+    // one deposit into the database.
     TALER_TESTING_cmd_insert_deposit ("do-deposit-1",
                                      &dbc,
                                      "bob",
@@ -924,6 +929,83 @@ run (void *cls,
                                           "EUR:0.89",
                                           bc.exchange_payto,
                                           bc.user42_payto),
+    TALER_TESTING_cmd_check_bank_empty ("expect-empty-transactions-after-1"),
+
+    // check aggregation accumulates well.
+    TALER_TESTING_cmd_insert_deposit ("do-deposit-2a",
+                                     &dbc,
+                                     "bob",
+                                     USER42_ACCOUNT,
+                                     GNUNET_TIME_UNIT_ZERO,
+                                     "EUR:1",
+                                     "EUR:0.1"),
+
+    TALER_TESTING_cmd_insert_deposit ("do-deposit-2b",
+                                     &dbc,
+                                     "bob",
+                                     USER42_ACCOUNT,
+                                     GNUNET_TIME_UNIT_ZERO,
+                                     "EUR:1",
+                                     "EUR:0.1"),
+
+    TALER_TESTING_cmd_exec_aggregator ("run-aggregator-deposit-2",
+                                      config_filename),
+
+    TALER_TESTING_cmd_check_bank_transfer ("expect-deposit-2",
+                                          ec.exchange_url,
+                                          "EUR:1.79",
+                                          bc.exchange_payto,
+                                          bc.user42_payto),
+    TALER_TESTING_cmd_check_bank_empty ("expect-empty-transactions-after-2"),
+    
+    // check that different merchants stem different aggregations.
+    
+    TALER_TESTING_cmd_insert_deposit ("do-deposit-3a",
+                                     &dbc,
+                                     "bob",
+                                     "4",
+                                     GNUNET_TIME_UNIT_ZERO,
+                                     "EUR:1",
+                                     "EUR:0.1"),
+
+    TALER_TESTING_cmd_insert_deposit ("do-deposit-3b",
+                                     &dbc,
+                                     "bob",
+                                     "5",
+                                     GNUNET_TIME_UNIT_ZERO,
+                                     "EUR:1",
+                                     "EUR:0.1"),
+
+    TALER_TESTING_cmd_insert_deposit ("do-deposit-3c",
+                                     &dbc,
+                                     "alice",
+                                     "4",
+                                     GNUNET_TIME_UNIT_ZERO,
+                                     "EUR:1",
+                                     "EUR:0.1"),
+    
+    TALER_TESTING_cmd_exec_aggregator ("run-aggregator-deposit-3",
+                                      config_filename),
+
+
+    TALER_TESTING_cmd_check_bank_transfer ("expect-deposit-3a",
+                                          ec.exchange_url,
+                                          "EUR:0.89",
+                                          bc.exchange_payto,
+                                          TALER_payto_xtalerbank_make 
(bc.bank_url, "4")),
+
+    TALER_TESTING_cmd_check_bank_transfer ("expect-deposit-3b",
+                                          ec.exchange_url,
+                                          "EUR:0.89",
+                                          bc.exchange_payto,
+                                          TALER_payto_xtalerbank_make 
(bc.bank_url, "4")),
+
+    TALER_TESTING_cmd_check_bank_transfer ("expect-deposit-3c",
+                                          ec.exchange_url,
+                                          "EUR:0.89",
+                                          bc.exchange_payto,
+                                          TALER_payto_xtalerbank_make 
(bc.bank_url, "5")),
+    TALER_TESTING_cmd_check_bank_empty ("expect-empty-transactions-after-3"),
     TALER_TESTING_cmd_end ()  
   };
   

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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