libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 16bc1ed7f9fe96d97f630a0213f654b37e212d03
parent c05a2ff6bf6d9d8067aaec6a23f411972295eabf
Author: MS <ms@taler.net>
Date:   Tue, 26 May 2020 14:02:13 +0200

migrating other tests to use of custom DB.

Diffstat:
Mintegration-tests/test-ebics-backup.py | 8+++++---
Mintegration-tests/test-ebics.py | 8+++++---
2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/integration-tests/test-ebics-backup.py b/integration-tests/test-ebics-backup.py @@ -47,6 +47,8 @@ SUBSCRIBER_BIC = "BUKBGB22" SUBSCRIBER_NAME = "Oliver Smith" BANK_ACCOUNT_LABEL = "savings" +# Databases +NEXUS_DB="test-nexus.sqlite3" def fail(msg): print(msg) @@ -82,17 +84,17 @@ def assertResponse(response): # -1 Clean databases and start services. os.chdir("..") assert 0 == call(["rm", "-f", "sandbox/libeufin-sandbox.sqlite3"]) -assert 0 == call(["rm", "-f", "nexus/libeufin-nexus.sqlite3"]) +assert 0 == call(["rm", "-f", "nexus/{}".format(NEXUS_DB)]) DEVNULL = open(os.devnull, "w") assert 0 == call( - ["./gradlew", "nexus:run", "--console=plain", "--args=superuser admin --password x"] + ["./gradlew", "nexus:run", "--console=plain", "--args=superuser admin --password x --db-name={}".format(NEXUS_DB)] ) # Start nexus checkPorts([5001]) nexus = Popen( - ["./gradlew", "nexus:run", "--console=plain", "--args=serve"], + ["./gradlew", "nexus:run", "--console=plain", "--args=serve --db-name={}".format(NEXUS_DB)], stdout=PIPE, stderr=PIPE, ) diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py @@ -58,6 +58,8 @@ SUBSCRIBER_BIC = "BUKBGB22" SUBSCRIBER_NAME = "Oliver Smith" BANK_ACCOUNT_LABEL = "savings" +# Databases +NEXUS_DB="test-nexus.sqlite3" def fail(msg): print(msg) @@ -93,17 +95,17 @@ def assertResponse(response): # -1 Clean databases and start services. os.chdir("..") assert 0 == call(["rm", "-f", "sandbox/libeufin-sandbox.sqlite3"]) -assert 0 == call(["rm", "-f", "nexus/libeufin-nexus.sqlite3"]) +assert 0 == call(["rm", "-f", "nexus/{}".format(NEXUS_DB)]) DEVNULL = open(os.devnull, "w") assert 0 == call( - ["./gradlew", "nexus:run", "--console=plain", "--args=superuser admin --password x"] + ["./gradlew", "nexus:run", "--console=plain", "--args=superuser admin --password x --db-name={}".format(NEXUS_DB)] ) # Start nexus checkPorts([5001]) nexus = Popen( - ["./gradlew", "nexus:run", "--console=plain", "--args=serve"], + ["./gradlew", "nexus:run", "--console=plain", "--args=serve --db-name={}".format(NEXUS_DB)], stdout=PIPE, stderr=PIPE, )