diff options
author | MS <ms@taler.net> | 2020-06-01 14:17:05 +0200 |
---|---|---|
committer | MS <ms@taler.net> | 2020-06-01 14:17:05 +0200 |
commit | 7f14b23914e43c3062facfd82f4430be218a9b2a (patch) | |
tree | 34055670d3bc0472971339852cdcd2d792de2917 /contrib/taler-nexus-prepare | |
parent | 45943c22c269384b70f33fe16e58ac5b0ed8c492 (diff) | |
download | exchange-7f14b23914e43c3062facfd82f4430be218a9b2a.tar.gz exchange-7f14b23914e43c3062facfd82f4430be218a9b2a.tar.bz2 exchange-7f14b23914e43c3062facfd82f4430be218a9b2a.zip |
Nexus testing.
Up to the point where Nexus gets launched and
the Exchange user & bank connection get created.
The test fails because the bank connection of
type "loopback" is not implemented in the nexus
yet.
Diffstat (limited to 'contrib/taler-nexus-prepare')
-rwxr-xr-x | contrib/taler-nexus-prepare | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/contrib/taler-nexus-prepare b/contrib/taler-nexus-prepare new file mode 100755 index 00000000..3e30d393 --- /dev/null +++ b/contrib/taler-nexus-prepare @@ -0,0 +1,57 @@ +#!/usr/bin/env python3 +# This file is in the public domain. + +from requests import get, post +from subprocess import call +import base64 + +USERNAME="Exchange" +USER_AUTHORIZATION_HEADER = "basic {}".format( + base64.b64encode(b"Exchange:x").decode("utf-8") +) + +def assertResponse(response): + if response.status_code != 200: + print("Test failed on URL: {}".format(response.url)) + # stdout/stderr from both services is A LOT of text. + # Confusing to dump all that to console. + print("Check nexus.log and sandbox.log, probably under /tmp") + exit(1) + # Allows for finer grained checks. + return response + +# Create a nexus (super-) user +call(["nexus", "superuser", "Exchange", "--password", "x"]) +# Create a loopback bank connection. +assertResponse( + post( + "http://localhost:5001/bank-connections", + json=dict( + name="my-local", + source="new", + type="local", + data=dict( + bankAccount="my-bank-account" + ) + ), + headers=dict(Authorization=USER_AUTHORIZATION_HEADER), + ) +) +# Create a facade +assertResponse( + post( + "http://localhost:5001/facades", + json=dict( + name="my-facade", + type="taler-wire-gateway", + creator=USERNAME, + config=dict( + bankAccount="my-bank-account", + bankConnection="my-local", + reserveTransferLevel="UNUSED", + intervalIncremental="UNUSED" + ) + ), + headers=dict(Authorization=USER_AUTHORIZATION_HEADER), + ) +) |