gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin-tests] branch master updated: Checks of incompatible samples g


From: gnunet
Subject: [libeufin-tests] branch master updated: Checks of incompatible samples gone.
Date: Mon, 07 Dec 2020 18:32:48 +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 a34d373  Checks of incompatible samples gone.
a34d373 is described below

commit a34d37333d3b82ceec87443555d1b8dd7e81f913
Author: MS <ms@taler.net>
AuthorDate: Mon Dec 7 18:31:30 2020 +0100

    Checks of incompatible samples gone.
    
    A sample is 'incompatible' when it doesn't comply
    with the parser policy.  Right now, every Camt.053
    must only contain singleton money movements.
---
 checks.py | 29 -----------------------------
 1 file changed, 29 deletions(-)

diff --git a/checks.py b/checks.py
index 2fa3481..6830813 100755
--- a/checks.py
+++ b/checks.py
@@ -33,38 +33,9 @@ def assert_json_equal(json1, json2):
     diff = DeepDiff(json1, json2, ignore_order=True, report_repetition=True)
     assert len(diff.keys()) == 0
 
-def test_camt53_example1():
-    # 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
-    # information like unstr. rem. and counterpart IBAN.  It should validate
-    # but not show up in a Taler facade (and not even get reimbursed)
-    assert(len(entries[1]["batches"][0]["batchTransactions"]) == 1)
-
-def test_camt53_example2():
-    # 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)

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