gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin-tests] branch master updated: comments


From: gnunet
Subject: [libeufin-tests] branch master updated: comments
Date: Mon, 07 Dec 2020 16:47:52 +0100

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

ms pushed a commit to branch master
in repository libeufin-tests.

The following commit(s) were added to refs/heads/master by this push:
     new e7092cc  comments
e7092cc is described below

commit e7092cc3a09e649181cc631a06133530e22f0afa
Author: MS <ms@taler.net>
AuthorDate: Mon Dec 7 16:47:47 2020 +0100

    comments
---
 checks.py | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/checks.py b/checks.py
index 7c99718..2fa3481 100755
--- a/checks.py
+++ b/checks.py
@@ -34,10 +34,13 @@ def assert_json_equal(json1, json2):
     assert len(diff.keys()) == 0
 
 def test_camt53_example1():
-    # This document has non-singleton money movements.
+    # This document has non-singleton money movements.  It is then
+    # not acceptable by the Nexus parser.
     parsed = call_parser("./samples/camt53_example1.xml")
     entries = parsed["reports"][0]["entries"]
     assert(len(entries) == 2)
+    # This check ensures that the non-singleton money movements didn't
+    # end in the ingested Camt report.
     assert(len(entries[0]["batches"][0]["batchTransactions"]) == 0)
 
     # Although this money movement is a singleton, it lacks important
@@ -46,16 +49,23 @@ def test_camt53_example1():
     assert(len(entries[1]["batches"][0]["batchTransactions"]) == 1)
 
 def test_camt53_example2():
-    # This document is linked to a c54 report.
+    # This document is linked to a c54 report, and it doesn't
+    # mention any money movement.  It is then not acceptable by
+    # the Nexus parser.
     parsed = call_parser("./samples/camt53_example2.xml")
     entries = parsed["reports"][0]["entries"]
     assert(len(entries) == 1)
+
+    # This check ensures that *zero* sub-transactions got included
+    # in the parsed report.
     assert(len(entries[0]["batches"][0]["batchTransactions"]) == 0)
 
 def test_camt53_example3():
     # This document is acceptable.
     parsed = call_parser("./samples/camt53_example3.xml")
     entries = parsed["reports"][0]["entries"]
+
+    # The following checks ensure that each money movement is a singleton.
     assert(len(entries) == 4)
     assert(len(entries[0]["batches"][0]["batchTransactions"]) == 1)
     assert(len(entries[1]["batches"][0]["batchTransactions"]) == 1)

-- 
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]