[tests] [wallet] Add wallet endpoint support to authproxy
This commit is contained in:
parent
76603b1325
commit
979d0b8a65
2 changed files with 5 additions and 0 deletions
|
@ -191,3 +191,6 @@ class AuthServiceProxy(object):
|
||||||
else:
|
else:
|
||||||
log.debug("<-- [%.6f] %s"%(elapsed,responsedata))
|
log.debug("<-- [%.6f] %s"%(elapsed,responsedata))
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
def __truediv__(self, relative_uri):
|
||||||
|
return AuthServiceProxy("{}/{}".format(self.__service_url, relative_uri), self._service_name, connection=self.__conn)
|
||||||
|
|
|
@ -56,6 +56,8 @@ class AuthServiceProxyWrapper(object):
|
||||||
def url(self):
|
def url(self):
|
||||||
return self.auth_service_proxy_instance.url
|
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):
|
def get_filename(dirname, n_node):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue