So much has changed since I originally got the RPC tests working many years ago, most notably modern Linux distros don't even have a way to install python2 via packages, you have to install from source. Continuing with python2 does not seem like a good idea, so we begin migrating thigns to Python 3. Currently running ./test.sh will successfully spin up a test chain but then the test suite crashes when attempting to send an RPC request, which looks to be caused by the test suite internals still expecting python2.
173 lines
6.6 KiB
Python
173 lines
6.6 KiB
Python
#!/usr/bin/env python2
|
|
# Copyright (c) 2016-2024 The Hush developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
|
|
"""
|
|
Copyright 2011 Jeff Garzik
|
|
|
|
AuthServiceProxy has the following improvements over python-jsonrpc's
|
|
ServiceProxy class:
|
|
|
|
- HTTP connections persist for the life of the AuthServiceProxy object
|
|
(if server supports HTTP/1.1)
|
|
- sends protocol 'version', per JSON-RPC 1.1
|
|
- sends proper, incrementing 'id'
|
|
- sends Basic HTTP authentication headers
|
|
- parses all JSON numbers that look like floats as Decimal
|
|
- uses standard Python json lib
|
|
|
|
Previous copyright, from python-jsonrpc/jsonrpc/proxy.py:
|
|
|
|
Copyright (c) 2007 Jan-Klaas Kollhof
|
|
|
|
This file is part of jsonrpc.
|
|
|
|
jsonrpc is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This software is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this software; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
"""
|
|
|
|
try:
|
|
import http.client as httplib
|
|
except ImportError:
|
|
import httplib
|
|
import base64
|
|
import decimal
|
|
import json
|
|
import logging
|
|
try:
|
|
import urllib.parse as urlparse
|
|
except ImportError:
|
|
import urlparse
|
|
|
|
USER_AGENT = "FUCKjl777LULZ"
|
|
HTTP_TIMEOUT = 600
|
|
log = logging.getLogger("BitcoinRPC")
|
|
|
|
class JSONRPCException(Exception):
|
|
def __init__(self, rpc_error):
|
|
Exception.__init__(self)
|
|
self.error = rpc_error
|
|
|
|
|
|
def EncodeDecimal(o):
|
|
if isinstance(o, decimal.Decimal):
|
|
return round(o, 8)
|
|
raise TypeError(repr(o) + " is not JSON serializable")
|
|
|
|
class AuthServiceProxy(object):
|
|
__id_count = 0
|
|
|
|
def __init__(self, service_url, service_name=None, timeout=HTTP_TIMEOUT, connection=None):
|
|
self.__service_url = service_url
|
|
self.__service_name = service_name
|
|
self.__url = urlparse.urlparse(service_url)
|
|
if self.__url.port is None:
|
|
port = 80
|
|
else:
|
|
port = self.__url.port
|
|
(user, passwd) = (self.__url.username, self.__url.password)
|
|
try:
|
|
user = user.encode('utf8')
|
|
except AttributeError:
|
|
pass
|
|
try:
|
|
passwd = passwd.encode('utf8')
|
|
except AttributeError:
|
|
pass
|
|
authpair = user + b':' + passwd
|
|
self.__auth_header = b'Basic ' + base64.b64encode(authpair)
|
|
|
|
if connection:
|
|
# Callables re-use the connection of the original proxy
|
|
self.__conn = connection
|
|
elif self.__url.scheme == 'https':
|
|
self.__conn = httplib.HTTPSConnection(self.__url.hostname, port,
|
|
None, None, False,
|
|
timeout)
|
|
else:
|
|
self.__conn = httplib.HTTPConnection(self.__url.hostname, port,
|
|
False, timeout)
|
|
|
|
def __getattr__(self, name):
|
|
if name.startswith('__') and name.endswith('__'):
|
|
# Python internal stuff
|
|
raise AttributeError
|
|
if self.__service_name is not None:
|
|
name = "%s.%s" % (self.__service_name, name)
|
|
return AuthServiceProxy(self.__service_url, name, connection=self.__conn)
|
|
|
|
def _request(self, method, path, postdata):
|
|
'''
|
|
Do a HTTP request, with retry if we get disconnected (e.g. due to a timeout).
|
|
This is a workaround for https://bugs.python.org/issue3566 which is fixed in Python 3.5.
|
|
'''
|
|
headers = {'Host': self.__url.hostname,
|
|
'User-Agent': USER_AGENT,
|
|
'Authorization': self.__auth_header,
|
|
'Content-type': 'application/json'}
|
|
try:
|
|
self.__conn.request(method, path, postdata, headers)
|
|
return self._get_response()
|
|
except Exception as e:
|
|
# If connection was closed, try again.
|
|
# Python 3.5+ raises BrokenPipeError instead of BadStatusLine when the connection was reset.
|
|
# ConnectionResetError happens on FreeBSD with Python 3.4.
|
|
# These classes don't exist in Python 2.x, so we can't refer to them directly.
|
|
if ((isinstance(e, httplib.BadStatusLine) and e.line == "''")
|
|
or e.__class__.__name__ in ('BrokenPipeError', 'ConnectionResetError')):
|
|
self.__conn.close()
|
|
self.__conn.request(method, path, postdata, headers)
|
|
return self._get_response()
|
|
else:
|
|
raise
|
|
|
|
def __call__(self, *args):
|
|
AuthServiceProxy.__id_count += 1
|
|
|
|
log.debug("-%s-> %s %s"%(AuthServiceProxy.__id_count, self.__service_name,
|
|
json.dumps(args, default=EncodeDecimal)))
|
|
postdata = json.dumps({'version': '1.1',
|
|
'method': self.__service_name,
|
|
'params': args,
|
|
'id': AuthServiceProxy.__id_count}, default=EncodeDecimal)
|
|
print("self.__url.path=" + self.__url.path)
|
|
response = self._request('POST', self.__url.path, postdata)
|
|
if response['error'] is not None:
|
|
raise JSONRPCException(response['error'])
|
|
elif 'result' not in response:
|
|
raise JSONRPCException({
|
|
'code': -343, 'message': 'missing JSON-RPC result'})
|
|
else:
|
|
return response['result']
|
|
|
|
def _batch(self, rpc_call_list):
|
|
postdata = json.dumps(list(rpc_call_list), default=EncodeDecimal)
|
|
log.debug("--> "+postdata)
|
|
return self._request('POST', self.__url.path, postdata)
|
|
|
|
def _get_response(self):
|
|
http_response = self.__conn.getresponse()
|
|
if http_response is None:
|
|
raise JSONRPCException({
|
|
'code': -342, 'message': 'missing HTTP response from server'})
|
|
|
|
responsedata = http_response.read().decode('utf8')
|
|
response = json.loads(responsedata, parse_float=decimal.Decimal)
|
|
if "error" in response and response["error"] is None:
|
|
log.debug("<-%s- %s"%(response["id"], json.dumps(response["result"], default=EncodeDecimal)))
|
|
else:
|
|
log.debug("<-- "+responsedata)
|
|
return response
|