From 7f14b23914e43c3062facfd82f4430be218a9b2a Mon Sep 17 00:00:00 2001 From: MS Date: Mon, 1 Jun 2020 14:17:05 +0200 Subject: 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. --- contrib/taler-nexus-prepare | 57 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100755 contrib/taler-nexus-prepare (limited to 'contrib/taler-nexus-prepare') diff --git a/contrib/taler-nexus-prepare b/contrib/taler-nexus-prepare new file mode 100755 index 000000000..3e30d3930 --- /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), + ) +) -- cgit v1.2.3