mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
[qa] httpbasics: Actually test second connection
Github-Pull: #7802
Rebased-From: fa24456d0c
This commit is contained in:
parent
afbc000b0b
commit
3036282c7a
@ -36,13 +36,13 @@ class HTTPBasicsTest (BitcoinTestFramework):
|
|||||||
conn.connect()
|
conn.connect()
|
||||||
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
||||||
out1 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1)
|
assert(b'"error":null' in out1)
|
||||||
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
||||||
|
|
||||||
#send 2nd request without closing connection
|
#send 2nd request without closing connection
|
||||||
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
||||||
out2 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1) #must also response with a correct json-rpc message
|
assert(b'"error":null' in out1) #must also response with a correct json-rpc message
|
||||||
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
@ -53,13 +53,13 @@ class HTTPBasicsTest (BitcoinTestFramework):
|
|||||||
conn.connect()
|
conn.connect()
|
||||||
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
||||||
out1 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1)
|
assert(b'"error":null' in out1)
|
||||||
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
||||||
|
|
||||||
#send 2nd request without closing connection
|
#send 2nd request without closing connection
|
||||||
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
conn.request('POST', '/', '{"method": "getchaintips"}', headers)
|
||||||
out2 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1) #must also response with a correct json-rpc message
|
assert(b'"error":null' in out1) #must also response with a correct json-rpc message
|
||||||
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
assert(conn.sock!=None) #according to http/1.1 connection must still be open!
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ class HTTPBasicsTest (BitcoinTestFramework):
|
|||||||
conn.connect()
|
conn.connect()
|
||||||
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
||||||
out1 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1)
|
assert(b'"error":null' in out1)
|
||||||
assert(conn.sock==None) #now the connection must be closed after the response
|
assert(conn.sock==None) #now the connection must be closed after the response
|
||||||
|
|
||||||
#node1 (2nd node) is running with disabled keep-alive option
|
#node1 (2nd node) is running with disabled keep-alive option
|
||||||
@ -82,7 +82,7 @@ class HTTPBasicsTest (BitcoinTestFramework):
|
|||||||
conn.connect()
|
conn.connect()
|
||||||
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
||||||
out1 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1)
|
assert(b'"error":null' in out1)
|
||||||
|
|
||||||
#node2 (third node) is running with standard keep-alive parameters which means keep-alive is on
|
#node2 (third node) is running with standard keep-alive parameters which means keep-alive is on
|
||||||
urlNode2 = urlparse.urlparse(self.nodes[2].url)
|
urlNode2 = urlparse.urlparse(self.nodes[2].url)
|
||||||
@ -93,7 +93,7 @@ class HTTPBasicsTest (BitcoinTestFramework):
|
|||||||
conn.connect()
|
conn.connect()
|
||||||
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
conn.request('POST', '/', '{"method": "getbestblockhash"}', headers)
|
||||||
out1 = conn.getresponse().read()
|
out1 = conn.getresponse().read()
|
||||||
assert('"error":null' in out1)
|
assert(b'"error":null' in out1)
|
||||||
assert(conn.sock!=None) #connection must be closed because bitcoind should use keep-alive by default
|
assert(conn.sock!=None) #connection must be closed because bitcoind should use keep-alive by default
|
||||||
|
|
||||||
# Check excessive request size
|
# Check excessive request size
|
||||||
|
Loading…
Reference in New Issue
Block a user