mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
merge bitcoin#16445: Skip flaky p2p_invalid_messages test on macOS
This commit is contained in:
parent
a5445a4584
commit
907101098d
@ -5,6 +5,7 @@
|
|||||||
"""Test node responses to invalid network messages."""
|
"""Test node responses to invalid network messages."""
|
||||||
import asyncio
|
import asyncio
|
||||||
import struct
|
import struct
|
||||||
|
import sys
|
||||||
|
|
||||||
from test_framework import messages
|
from test_framework import messages
|
||||||
from test_framework.mininode import P2PDataStore, NetworkThread
|
from test_framework.mininode import P2PDataStore, NetworkThread
|
||||||
@ -88,18 +89,25 @@ class InvalidMessagesTest(BitcoinTestFramework):
|
|||||||
#
|
#
|
||||||
# Send an oversized message, ensure we're disconnected.
|
# Send an oversized message, ensure we're disconnected.
|
||||||
#
|
#
|
||||||
msg_over_size = msg_unrecognized(str_data="b" * (valid_data_limit + 1))
|
# Under macOS this test is skipped due to an unexpected error code
|
||||||
assert len(msg_over_size.serialize()) == (msg_limit + 1)
|
# returned from the closing socket which python/asyncio does not
|
||||||
|
# yet know how to handle.
|
||||||
|
#
|
||||||
|
if sys.platform != 'darwin':
|
||||||
|
msg_over_size = msg_unrecognized(str_data="b" * (valid_data_limit + 1))
|
||||||
|
assert len(msg_over_size.serialize()) == (msg_limit + 1)
|
||||||
|
|
||||||
with node.assert_debug_log(["Oversized message from peer=4, disconnecting"]):
|
with node.assert_debug_log(["Oversized message from peer=4, disconnecting"]):
|
||||||
# An unknown message type (or *any* message type) over
|
# An unknown message type (or *any* message type) over
|
||||||
# MAX_PROTOCOL_MESSAGE_LENGTH should result in a disconnect.
|
# MAX_PROTOCOL_MESSAGE_LENGTH should result in a disconnect.
|
||||||
node.p2p.send_message(msg_over_size)
|
node.p2p.send_message(msg_over_size)
|
||||||
node.p2p.wait_for_disconnect(timeout=4)
|
node.p2p.wait_for_disconnect(timeout=4)
|
||||||
|
|
||||||
node.disconnect_p2ps()
|
node.disconnect_p2ps()
|
||||||
conn = node.add_p2p_connection(P2PDataStore())
|
conn = node.add_p2p_connection(P2PDataStore())
|
||||||
conn.wait_for_verack()
|
conn.wait_for_verack()
|
||||||
|
else:
|
||||||
|
self.log.info("Skipping test p2p_invalid_messages/1 (oversized message) under macOS")
|
||||||
|
|
||||||
#
|
#
|
||||||
# 2.
|
# 2.
|
||||||
|
Loading…
Reference in New Issue
Block a user