2019-04-30 15:09:05 +08:00
|
|
|
import asyncio
|
2019-08-03 13:36:19 +08:00
|
|
|
|
2019-08-16 07:26:59 +08:00
|
|
|
import pytest
|
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
from libp2p import new_node
|
2019-08-16 09:36:50 +08:00
|
|
|
from libp2p.crypto.rsa import create_new_key_pair
|
2019-08-03 09:36:58 +08:00
|
|
|
from libp2p.security.insecure.transport import InsecureSession, InsecureTransport
|
2019-08-19 13:04:11 +08:00
|
|
|
from tests.configs import LISTEN_MADDR
|
2019-09-09 23:09:33 +08:00
|
|
|
from tests.utils import connect
|
2019-08-01 00:09:09 +08:00
|
|
|
|
2019-04-30 06:05:49 +08:00
|
|
|
# TODO: Add tests for multiple streams being opened on different
|
|
|
|
# protocols through the same connection
|
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
def peer_id_for_node(node):
|
2019-08-19 13:04:11 +08:00
|
|
|
return node.get_id()
|
2019-04-30 15:09:05 +08:00
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
|
2019-08-16 09:36:50 +08:00
|
|
|
initiator_key_pair = create_new_key_pair()
|
2019-08-03 09:36:58 +08:00
|
|
|
|
2019-08-16 09:36:50 +08:00
|
|
|
noninitiator_key_pair = create_new_key_pair()
|
2019-08-03 09:36:58 +08:00
|
|
|
|
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
async def perform_simple_test(
|
|
|
|
assertion_func, transports_for_initiator, transports_for_noninitiator
|
|
|
|
):
|
2019-05-02 01:54:19 +08:00
|
|
|
|
2019-04-30 06:05:49 +08:00
|
|
|
# Create libp2p nodes and connect them, then secure the connection, then check
|
|
|
|
# the proper security was chosen
|
|
|
|
# TODO: implement -- note we need to introduce the notion of communicating over a raw connection
|
|
|
|
# for testing, we do NOT want to communicate over a stream so we can't just create two nodes
|
|
|
|
# and use their conn because our mplex will internally relay messages to a stream
|
|
|
|
|
2019-08-19 13:04:11 +08:00
|
|
|
node1 = await new_node(
|
|
|
|
key_pair=initiator_key_pair, sec_opt=transports_for_initiator
|
|
|
|
)
|
|
|
|
node2 = await new_node(
|
|
|
|
key_pair=noninitiator_key_pair, sec_opt=transports_for_noninitiator
|
|
|
|
)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-08-19 13:04:11 +08:00
|
|
|
await node1.get_network().listen(LISTEN_MADDR)
|
|
|
|
await node2.get_network().listen(LISTEN_MADDR)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
await connect(node1, node2)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-05-02 01:54:19 +08:00
|
|
|
# Wait a very short period to allow conns to be stored (since the functions
|
2019-04-30 15:27:06 +08:00
|
|
|
# storing the conns are async, they may happen at slightly different times
|
2019-05-02 01:54:19 +08:00
|
|
|
# on each node)
|
2019-04-30 15:27:06 +08:00
|
|
|
await asyncio.sleep(0.1)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
# Get conns
|
|
|
|
node1_conn = node1.get_network().connections[peer_id_for_node(node2)]
|
|
|
|
node2_conn = node2.get_network().connections[peer_id_for_node(node1)]
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
# Perform assertion
|
2019-09-12 14:34:17 +08:00
|
|
|
assertion_func(node1_conn.conn.secured_conn)
|
|
|
|
assertion_func(node2_conn.conn.secured_conn)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
# Success, terminate pending tasks.
|
2019-04-30 06:05:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
2019-04-30 15:27:06 +08:00
|
|
|
async def test_single_insecure_security_transport_succeeds():
|
2019-08-16 09:36:50 +08:00
|
|
|
transports_for_initiator = {"foo": InsecureTransport(initiator_key_pair)}
|
|
|
|
transports_for_noninitiator = {"foo": InsecureTransport(noninitiator_key_pair)}
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-08-03 09:36:58 +08:00
|
|
|
def assertion_func(conn):
|
|
|
|
assert isinstance(conn, InsecureSession)
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-08-14 05:36:42 +08:00
|
|
|
await perform_simple_test(
|
|
|
|
assertion_func, transports_for_initiator, transports_for_noninitiator
|
|
|
|
)
|
2019-08-01 06:00:12 +08:00
|
|
|
|
2019-04-30 06:05:49 +08:00
|
|
|
|
2019-05-02 05:13:01 +08:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_default_insecure_security():
|
|
|
|
transports_for_initiator = None
|
|
|
|
transports_for_noninitiator = None
|
|
|
|
|
2019-08-03 09:36:58 +08:00
|
|
|
conn1 = None
|
|
|
|
conn2 = None
|
2019-05-02 05:13:01 +08:00
|
|
|
|
2019-08-03 09:36:58 +08:00
|
|
|
def assertion_func(conn):
|
|
|
|
nonlocal conn1
|
|
|
|
nonlocal conn2
|
|
|
|
if not conn1:
|
|
|
|
conn1 = conn
|
|
|
|
elif not conn2:
|
|
|
|
conn2 = conn
|
2019-05-02 05:13:01 +08:00
|
|
|
else:
|
2019-08-03 09:36:58 +08:00
|
|
|
assert conn1 == conn2
|
2019-05-02 05:13:01 +08:00
|
|
|
|
2019-08-14 05:36:42 +08:00
|
|
|
await perform_simple_test(
|
|
|
|
assertion_func, transports_for_initiator, transports_for_noninitiator
|
|
|
|
)
|