summaryrefslogtreecommitdiff
path: root/integration-tests/test-ebics.py
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-05-26 14:02:13 +0200
committerMS <ms@taler.net>2020-05-26 14:02:13 +0200
commit16bc1ed7f9fe96d97f630a0213f654b37e212d03 (patch)
tree187888dce2d6d3b1923ec6b3fe4a04d7652a23ad /integration-tests/test-ebics.py
parentc05a2ff6bf6d9d8067aaec6a23f411972295eabf (diff)
downloadlibeufin-16bc1ed7f9fe96d97f630a0213f654b37e212d03.tar.gz
libeufin-16bc1ed7f9fe96d97f630a0213f654b37e212d03.tar.bz2
libeufin-16bc1ed7f9fe96d97f630a0213f654b37e212d03.zip
migrating other tests to use of custom DB.
Diffstat (limited to 'integration-tests/test-ebics.py')
-rwxr-xr-xintegration-tests/test-ebics.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index 7e4c409b..5c37a58e 100755
--- 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,
)