summaryrefslogtreecommitdiff
path: root/integration-tests/test-ebics.py
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-06-24 16:51:42 +0200
committerMS <ms@taler.net>2020-06-24 16:51:42 +0200
commit71434b0e766f06f5ad6a6fe10008ba10f28f0a50 (patch)
tree28513df16772613fd9182107a77ac3a7777acf46 /integration-tests/test-ebics.py
parent530c8b9394abff9023d2885736003b886a5f5714 (diff)
downloadlibeufin-71434b0e766f06f5ad6a6fe10008ba10f28f0a50.tar.gz
libeufin-71434b0e766f06f5ad6a6fe10008ba10f28f0a50.tar.bz2
libeufin-71434b0e766f06f5ad6a6fe10008ba10f28f0a50.zip
Organizing the code related to account import.
Move operations that are not specific to one particular bank connection out of the "../ebics" URL part.
Diffstat (limited to 'integration-tests/test-ebics.py')
-rwxr-xr-xintegration-tests/test-ebics.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index c81a1cee..5b5c2563 100755
--- a/integration-tests/test-ebics.py
+++ b/integration-tests/test-ebics.py
@@ -144,7 +144,7 @@ print("sending ini & hia")
# 2.a, upload keys to the bank (INI & HIA)
assertResponse(
post(
- "http://localhost:5001/bank-connections/my-ebics/send-ini",
+ "http://localhost:5001/bank-connections/my-ebics/ebics/send-ini",
json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
@@ -152,7 +152,7 @@ assertResponse(
assertResponse(
post(
- "http://localhost:5001/bank-connections/my-ebics/send-hia",
+ "http://localhost:5001/bank-connections/my-ebics/ebics/send-hia",
json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
@@ -161,7 +161,7 @@ assertResponse(
# 2.b, download keys from the bank (HPB)
assertResponse(
post(
- "http://localhost:5001/bank-connections/my-ebics/send-hpb",
+ "http://localhost:5001/bank-connections/my-ebics/ebics/send-hpb",
json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
@@ -170,7 +170,7 @@ assertResponse(
# Test download transaction (TSD, LibEuFin-specific test order type)
assertResponse(
post(
- "http://localhost:5001/bank-connections/my-ebics/download/tsd",
+ "http://localhost:5001/bank-connections/my-ebics/ebics/download/tsd",
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
)
@@ -178,7 +178,7 @@ assertResponse(
# 2.c, fetch bank account information
assertResponse(
post(
- "http://localhost:5001/bank-connections/my-ebics/import-accounts",
+ "http://localhost:5001/bank-connections/my-ebics/ebics/import-accounts",
json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)