2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2021-07-28 07:57:16 -04:00
|
|
|
# Copyright (c) 2014-2021 The Bitcoin Core developers
|
2014-12-06 19:14:25 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03:00
|
|
|
"""Test the RPC HTTP basics."""
|
2014-12-06 19:14:25 -03:00
|
|
|
|
2015-05-02 07:53:35 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-07-06 18:10:35 -04:00
|
|
|
from test_framework.util import assert_equal, str_to_b64str
|
2014-12-06 19:14:25 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
import http.client
|
|
|
|
import urllib.parse
|
2014-12-06 19:14:25 -03:00
|
|
|
|
2015-05-19 05:20:31 -03:00
|
|
|
class HTTPBasicsTest (BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.num_nodes = 3
|
2019-12-06 11:37:49 -03:00
|
|
|
self.supports_cli = False
|
2016-05-14 08:01:31 -03:00
|
|
|
|
|
|
|
def setup_network(self):
|
2017-04-03 10:34:04 -03:00
|
|
|
self.setup_nodes()
|
2015-01-14 08:45:11 -03:00
|
|
|
|
2015-05-19 05:20:31 -03:00
|
|
|
def run_test(self):
|
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
#################################################
|
|
|
|
# lowlevel check for http persistent connection #
|
|
|
|
#################################################
|
2016-03-19 16:58:06 -03:00
|
|
|
url = urllib.parse.urlparse(self.nodes[0].url)
|
2021-06-12 02:26:31 -04:00
|
|
|
authpair = f'{url.username}:{url.password}'
|
|
|
|
headers = {"Authorization": f"Basic {str_to_b64str(authpair)}"}
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(url.hostname, url.port)
|
2014-12-06 19:14:25 -03:00
|
|
|
conn.connect()
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
2015-12-02 14:12:23 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1
|
|
|
|
assert conn.sock is not None #according to http/1.1 connection must still be open!
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
#send 2nd request without closing connection
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
2016-04-03 15:35:57 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1 #must also response with a correct json-rpc message
|
|
|
|
assert conn.sock is not None #according to http/1.1 connection must still be open!
|
2014-12-06 19:14:25 -03:00
|
|
|
conn.close()
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
#same should be if we add keep-alive because this should be the std. behaviour
|
2021-06-12 02:26:31 -04:00
|
|
|
headers = {"Authorization": f"Basic {str_to_b64str(authpair)}", "Connection": "keep-alive"}
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(url.hostname, url.port)
|
2014-12-06 19:14:25 -03:00
|
|
|
conn.connect()
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
2015-12-02 14:12:23 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1
|
|
|
|
assert conn.sock is not None #according to http/1.1 connection must still be open!
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
#send 2nd request without closing connection
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
2016-04-03 15:35:57 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1 #must also response with a correct json-rpc message
|
|
|
|
assert conn.sock is not None #according to http/1.1 connection must still be open!
|
2014-12-06 19:14:25 -03:00
|
|
|
conn.close()
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
#now do the same with "Connection: close"
|
2021-06-12 02:26:31 -04:00
|
|
|
headers = {"Authorization": f"Basic {str_to_b64str(authpair)}", "Connection":"close"}
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(url.hostname, url.port)
|
2014-12-06 19:14:25 -03:00
|
|
|
conn.connect()
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
2015-12-02 14:12:23 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1
|
|
|
|
assert conn.sock is None #now the connection must be closed after the response
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2015-01-14 12:36:48 -03:00
|
|
|
#node1 (2nd node) is running with disabled keep-alive option
|
2016-03-19 16:58:06 -03:00
|
|
|
urlNode1 = urllib.parse.urlparse(self.nodes[1].url)
|
2021-06-12 02:26:31 -04:00
|
|
|
authpair = f'{urlNode1.username}:{urlNode1.password}'
|
|
|
|
headers = {"Authorization": f"Basic {str_to_b64str(authpair)}"}
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(urlNode1.hostname, urlNode1.port)
|
2015-01-14 12:36:48 -03:00
|
|
|
conn.connect()
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
2015-12-02 14:12:23 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2015-01-23 03:54:27 -03:00
|
|
|
#node2 (third node) is running with standard keep-alive parameters which means keep-alive is on
|
2016-03-19 16:58:06 -03:00
|
|
|
urlNode2 = urllib.parse.urlparse(self.nodes[2].url)
|
2021-06-12 02:26:31 -04:00
|
|
|
authpair = f'{urlNode2.username}:{urlNode2.password}'
|
|
|
|
headers = {"Authorization": f"Basic {str_to_b64str(authpair)}"}
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(urlNode2.hostname, urlNode2.port)
|
2015-01-14 12:36:48 -03:00
|
|
|
conn.connect()
|
2015-01-17 12:34:27 -03:00
|
|
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
2015-12-02 14:12:23 -03:00
|
|
|
out1 = conn.getresponse().read()
|
2019-02-19 19:43:44 -03:00
|
|
|
assert b'"error":null' in out1
|
|
|
|
assert conn.sock is not None #connection must be closed because bitcoind should use keep-alive by default
|
2015-05-19 05:20:31 -03:00
|
|
|
|
2015-10-20 06:35:10 -03:00
|
|
|
# Check excessive request size
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(urlNode2.hostname, urlNode2.port)
|
2015-10-20 06:35:10 -03:00
|
|
|
conn.connect()
|
2021-06-12 02:26:31 -04:00
|
|
|
conn.request('GET', f'/{"x"*1000}', '', headers)
|
2015-10-20 06:35:10 -03:00
|
|
|
out1 = conn.getresponse()
|
2016-03-19 16:58:06 -03:00
|
|
|
assert_equal(out1.status, http.client.NOT_FOUND)
|
2015-10-20 06:35:10 -03:00
|
|
|
|
2016-03-19 16:58:06 -03:00
|
|
|
conn = http.client.HTTPConnection(urlNode2.hostname, urlNode2.port)
|
2015-10-20 06:35:10 -03:00
|
|
|
conn.connect()
|
2021-06-12 02:26:31 -04:00
|
|
|
conn.request('GET', f'/{"x"*10000}', '', headers)
|
2015-10-20 06:35:10 -03:00
|
|
|
out1 = conn.getresponse()
|
2016-03-19 16:58:06 -03:00
|
|
|
assert_equal(out1.status, http.client.BAD_REQUEST)
|
2015-10-20 06:35:10 -03:00
|
|
|
|
|
|
|
|
2014-12-06 19:14:25 -03:00
|
|
|
if __name__ == '__main__':
|
2024-07-16 17:05:14 -04:00
|
|
|
HTTPBasicsTest(__file__).main()
|