Browse Source

[tests] [wallet] Add wallet endpoint support to authproxy

0.15
John Newbery 7 years ago committed by Jonas Schnelli
parent
commit
979d0b8a65
No known key found for this signature in database
GPG Key ID: 1EB776BB03C7922D
  1. 3
      test/functional/test_framework/authproxy.py
  2. 2
      test/functional/test_framework/coverage.py

3
test/functional/test_framework/authproxy.py

@ -191,3 +191,6 @@ class AuthServiceProxy(object): @@ -191,3 +191,6 @@ class AuthServiceProxy(object):
else:
log.debug("<-- [%.6f] %s"%(elapsed,responsedata))
return response
def __truediv__(self, relative_uri):
return AuthServiceProxy("{}/{}".format(self.__service_url, relative_uri), self._service_name, connection=self.__conn)

2
test/functional/test_framework/coverage.py

@ -56,6 +56,8 @@ class AuthServiceProxyWrapper(object): @@ -56,6 +56,8 @@ class AuthServiceProxyWrapper(object):
def url(self):
return self.auth_service_proxy_instance.url
def __truediv__(self, relative_uri):
return AuthServiceProxyWrapper(self.auth_service_proxy_instance / relative_uri)
def get_filename(dirname, n_node):
"""

Loading…
Cancel
Save