| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| use crate::behaviour::{ |
| ConnectionClosed, ConnectionEstablished, DialFailure, ExpiredListenAddr, ExternalAddrExpired, |
| FromSwarm, ListenerClosed, ListenerError, NewExternalAddrCandidate, NewListenAddr, NewListener, |
| }; |
| use crate::{ |
| ConnectionDenied, ConnectionHandler, ConnectionId, NetworkBehaviour, THandler, THandlerInEvent, |
| THandlerOutEvent, ToSwarm, |
| }; |
| use libp2p_core::transport::PortUse; |
| use libp2p_core::{multiaddr::Multiaddr, transport::ListenerId, ConnectedPoint, Endpoint}; |
| use libp2p_identity::PeerId; |
| use std::collections::HashMap; |
| use std::task::{Context, Poll}; |
|
|
| |
| |
| |
| pub(crate) struct MockBehaviour<THandler, TOutEvent> |
| where |
| THandler: ConnectionHandler + Clone, |
| THandler::ToBehaviour: Clone, |
| TOutEvent: Send + 'static, |
| { |
| |
| |
| pub(crate) handler_proto: THandler, |
| |
| pub(crate) addresses: HashMap<PeerId, Vec<Multiaddr>>, |
| |
| |
| |
| pub(crate) next_action: Option<ToSwarm<TOutEvent, THandler::FromBehaviour>>, |
| } |
|
|
| impl<THandler, TOutEvent> MockBehaviour<THandler, TOutEvent> |
| where |
| THandler: ConnectionHandler + Clone, |
| THandler::ToBehaviour: Clone, |
| TOutEvent: Send + 'static, |
| { |
| pub(crate) fn new(handler_proto: THandler) -> Self { |
| MockBehaviour { |
| handler_proto, |
| addresses: HashMap::new(), |
| next_action: None, |
| } |
| } |
| } |
|
|
| impl<THandler, TOutEvent> NetworkBehaviour for MockBehaviour<THandler, TOutEvent> |
| where |
| THandler: ConnectionHandler + Clone, |
| THandler::ToBehaviour: Clone, |
| TOutEvent: Send + 'static, |
| { |
| type ConnectionHandler = THandler; |
| type ToSwarm = TOutEvent; |
|
|
| fn handle_established_inbound_connection( |
| &mut self, |
| _: ConnectionId, |
| _: PeerId, |
| _: &Multiaddr, |
| _: &Multiaddr, |
| ) -> Result<THandler, ConnectionDenied> { |
| Ok(self.handler_proto.clone()) |
| } |
|
|
| fn handle_established_outbound_connection( |
| &mut self, |
| _: ConnectionId, |
| _: PeerId, |
| _: &Multiaddr, |
| _: Endpoint, |
| _: PortUse, |
| ) -> Result<THandler, ConnectionDenied> { |
| Ok(self.handler_proto.clone()) |
| } |
|
|
| fn handle_pending_outbound_connection( |
| &mut self, |
| _connection_id: ConnectionId, |
| maybe_peer: Option<PeerId>, |
| _addresses: &[Multiaddr], |
| _effective_role: Endpoint, |
| ) -> Result<Vec<Multiaddr>, ConnectionDenied> { |
| let p = match maybe_peer { |
| None => return Ok(vec![]), |
| Some(peer) => peer, |
| }; |
|
|
| Ok(self.addresses.get(&p).map_or(Vec::new(), |v| v.clone())) |
| } |
|
|
| fn poll(&mut self, _: &mut Context<'_>) -> Poll<ToSwarm<Self::ToSwarm, THandlerInEvent<Self>>> { |
| self.next_action.take().map_or(Poll::Pending, Poll::Ready) |
| } |
|
|
| fn on_swarm_event(&mut self, _event: FromSwarm) {} |
|
|
| fn on_connection_handler_event( |
| &mut self, |
| _peer_id: PeerId, |
| _connection_id: ConnectionId, |
| _event: THandlerOutEvent<Self>, |
| ) { |
| } |
| } |
|
|
| |
| |
| |
| pub(crate) struct CallTraceBehaviour<TInner> |
| where |
| TInner: NetworkBehaviour, |
| { |
| inner: TInner, |
|
|
| pub(crate) handle_pending_inbound_connection: Vec<(ConnectionId, Multiaddr, Multiaddr)>, |
| pub(crate) handle_pending_outbound_connection: |
| Vec<(Option<PeerId>, Vec<Multiaddr>, Endpoint, ConnectionId)>, |
| pub(crate) handle_established_inbound_connection: |
| Vec<(PeerId, ConnectionId, Multiaddr, Multiaddr)>, |
| pub(crate) handle_established_outbound_connection: |
| Vec<(PeerId, Multiaddr, Endpoint, ConnectionId)>, |
| pub(crate) on_connection_established: Vec<(PeerId, ConnectionId, ConnectedPoint, usize)>, |
| pub(crate) on_connection_closed: Vec<(PeerId, ConnectionId, ConnectedPoint, usize)>, |
| pub(crate) on_connection_handler_event: Vec<(PeerId, ConnectionId, THandlerOutEvent<TInner>)>, |
| pub(crate) on_dial_failure: Vec<Option<PeerId>>, |
| pub(crate) on_new_listener: Vec<ListenerId>, |
| pub(crate) on_new_listen_addr: Vec<(ListenerId, Multiaddr)>, |
| pub(crate) on_new_external_addr: Vec<Multiaddr>, |
| pub(crate) on_expired_listen_addr: Vec<(ListenerId, Multiaddr)>, |
| pub(crate) on_expired_external_addr: Vec<Multiaddr>, |
| pub(crate) on_listener_error: Vec<ListenerId>, |
| pub(crate) on_listener_closed: Vec<(ListenerId, bool)>, |
| pub(crate) poll: usize, |
| } |
|
|
| impl<TInner> CallTraceBehaviour<TInner> |
| where |
| TInner: NetworkBehaviour, |
| THandlerOutEvent<TInner>: Clone, |
| { |
| pub(crate) fn new(inner: TInner) -> Self { |
| Self { |
| inner, |
| handle_pending_inbound_connection: Vec::new(), |
| handle_pending_outbound_connection: Vec::new(), |
| handle_established_inbound_connection: Vec::new(), |
| handle_established_outbound_connection: Vec::new(), |
| on_connection_established: Vec::new(), |
| on_connection_closed: Vec::new(), |
| on_connection_handler_event: Vec::new(), |
| on_dial_failure: Vec::new(), |
| on_new_listener: Vec::new(), |
| on_new_listen_addr: Vec::new(), |
| on_new_external_addr: Vec::new(), |
| on_expired_listen_addr: Vec::new(), |
| on_expired_external_addr: Vec::new(), |
| on_listener_error: Vec::new(), |
| on_listener_closed: Vec::new(), |
| poll: 0, |
| } |
| } |
|
|
| #[allow(dead_code)] |
| pub(crate) fn reset(&mut self) { |
| self.handle_pending_inbound_connection = Vec::new(); |
| self.handle_pending_outbound_connection = Vec::new(); |
| self.handle_established_inbound_connection = Vec::new(); |
| self.handle_established_outbound_connection = Vec::new(); |
| self.on_connection_established = Vec::new(); |
| self.on_connection_closed = Vec::new(); |
| self.on_connection_handler_event = Vec::new(); |
| self.on_dial_failure = Vec::new(); |
| self.on_new_listen_addr = Vec::new(); |
| self.on_new_external_addr = Vec::new(); |
| self.on_expired_listen_addr = Vec::new(); |
| self.on_listener_error = Vec::new(); |
| self.on_listener_closed = Vec::new(); |
| self.poll = 0; |
| } |
|
|
| pub(crate) fn inner(&mut self) -> &mut TInner { |
| &mut self.inner |
| } |
|
|
| pub(crate) fn num_connections_to_peer(&self, peer: PeerId) -> usize { |
| self.on_connection_established |
| .iter() |
| .filter(|(peer_id, _, _, _)| *peer_id == peer) |
| .count() |
| - self |
| .on_connection_closed |
| .iter() |
| .filter(|(peer_id, _, _, _)| *peer_id == peer) |
| .count() |
| } |
|
|
| |
| |
| |
| |
| pub(crate) fn assert_connected( |
| &self, |
| expected_established_connections: usize, |
| expected_connections: usize, |
| ) -> bool { |
| if self.on_connection_established.len() == expected_established_connections { |
| assert_eq!( |
| self.on_connection_established |
| .iter() |
| .filter(|(.., reported_aditional_connections)| { |
| *reported_aditional_connections == 0 |
| }) |
| .count(), |
| expected_connections |
| ); |
| return true; |
| } |
|
|
| false |
| } |
|
|
| fn on_connection_established( |
| &mut self, |
| ConnectionEstablished { |
| peer_id, |
| connection_id, |
| endpoint, |
| failed_addresses, |
| other_established, |
| }: ConnectionEstablished, |
| ) { |
| let mut other_peer_connections = self |
| .on_connection_established |
| .iter() |
| .rev() |
| .filter_map(|(peer, .., other_established)| { |
| if &peer_id == peer { |
| Some(other_established) |
| } else { |
| None |
| } |
| }) |
| .take(other_established); |
|
|
| |
| |
| if let Some(&prev) = other_peer_connections.next() { |
| if prev < other_established { |
| assert_eq!( |
| prev, |
| other_established - 1, |
| "Inconsistent connection reporting" |
| ) |
| } |
| assert_eq!(other_peer_connections.count(), other_established - 1); |
| } else { |
| assert_eq!(other_established, 0) |
| } |
| self.on_connection_established.push(( |
| peer_id, |
| connection_id, |
| endpoint.clone(), |
| other_established, |
| )); |
| self.inner |
| .on_swarm_event(FromSwarm::ConnectionEstablished(ConnectionEstablished { |
| peer_id, |
| connection_id, |
| endpoint, |
| failed_addresses, |
| other_established, |
| })); |
| } |
|
|
| fn on_connection_closed( |
| &mut self, |
| ConnectionClosed { |
| peer_id, |
| connection_id, |
| endpoint, |
| remaining_established, |
| cause, |
| }: ConnectionClosed, |
| ) { |
| let mut other_closed_connections = self |
| .on_connection_established |
| .iter() |
| .rev() |
| .filter_map(|(peer, .., remaining_established)| { |
| if &peer_id == peer { |
| Some(remaining_established) |
| } else { |
| None |
| } |
| }) |
| .take(remaining_established); |
|
|
| |
| |
| if let Some(&prev) = other_closed_connections.next() { |
| if prev < remaining_established { |
| assert_eq!( |
| prev, |
| remaining_established - 1, |
| "Inconsistent closed connection reporting" |
| ) |
| } |
| assert_eq!(other_closed_connections.count(), remaining_established - 1); |
| } else { |
| assert_eq!(remaining_established, 0) |
| } |
| assert!( |
| self.on_connection_established |
| .iter() |
| .any(|(peer, conn_id, endpoint, _)| (peer, conn_id, endpoint) |
| == (&peer_id, &connection_id, endpoint)), |
| "`on_swarm_event` with `FromSwarm::ConnectionClosed is called only for connections for\ |
| which `on_swarm_event` with `FromSwarm::ConnectionEstablished` was called first." |
| ); |
| self.on_connection_closed.push(( |
| peer_id, |
| connection_id, |
| endpoint.clone(), |
| remaining_established, |
| )); |
| self.inner |
| .on_swarm_event(FromSwarm::ConnectionClosed(ConnectionClosed { |
| peer_id, |
| connection_id, |
| endpoint, |
| remaining_established, |
| cause, |
| })); |
| } |
| } |
|
|
| impl<TInner> NetworkBehaviour for CallTraceBehaviour<TInner> |
| where |
| TInner: NetworkBehaviour, |
| THandlerOutEvent<TInner>: Clone, |
| { |
| type ConnectionHandler = TInner::ConnectionHandler; |
| type ToSwarm = TInner::ToSwarm; |
|
|
| fn handle_pending_inbound_connection( |
| &mut self, |
| connection_id: ConnectionId, |
| local_addr: &Multiaddr, |
| remote_addr: &Multiaddr, |
| ) -> Result<(), ConnectionDenied> { |
| self.handle_pending_inbound_connection.push(( |
| connection_id, |
| local_addr.clone(), |
| remote_addr.clone(), |
| )); |
| self.inner |
| .handle_pending_inbound_connection(connection_id, local_addr, remote_addr) |
| } |
|
|
| fn handle_established_inbound_connection( |
| &mut self, |
| connection_id: ConnectionId, |
| peer: PeerId, |
| local_addr: &Multiaddr, |
| remote_addr: &Multiaddr, |
| ) -> Result<THandler<Self>, ConnectionDenied> { |
| self.handle_established_inbound_connection.push(( |
| peer, |
| connection_id, |
| local_addr.clone(), |
| remote_addr.clone(), |
| )); |
| self.inner.handle_established_inbound_connection( |
| connection_id, |
| peer, |
| local_addr, |
| remote_addr, |
| ) |
| } |
|
|
| fn handle_pending_outbound_connection( |
| &mut self, |
| connection_id: ConnectionId, |
| maybe_peer: Option<PeerId>, |
| addresses: &[Multiaddr], |
| effective_role: Endpoint, |
| ) -> Result<Vec<Multiaddr>, ConnectionDenied> { |
| self.handle_pending_outbound_connection.push(( |
| maybe_peer, |
| addresses.to_vec(), |
| effective_role, |
| connection_id, |
| )); |
| self.inner.handle_pending_outbound_connection( |
| connection_id, |
| maybe_peer, |
| addresses, |
| effective_role, |
| ) |
| } |
|
|
| fn handle_established_outbound_connection( |
| &mut self, |
| connection_id: ConnectionId, |
| peer: PeerId, |
| addr: &Multiaddr, |
| role_override: Endpoint, |
| port_use: PortUse, |
| ) -> Result<THandler<Self>, ConnectionDenied> { |
| self.handle_established_outbound_connection.push(( |
| peer, |
| addr.clone(), |
| role_override, |
| connection_id, |
| )); |
| self.inner.handle_established_outbound_connection( |
| connection_id, |
| peer, |
| addr, |
| role_override, |
| port_use, |
| ) |
| } |
|
|
| fn on_swarm_event(&mut self, event: FromSwarm) { |
| self.inner.on_swarm_event(event); |
|
|
| match event { |
| FromSwarm::ConnectionEstablished(connection_established) => { |
| self.on_connection_established(connection_established) |
| } |
| FromSwarm::ConnectionClosed(connection_closed) => { |
| self.on_connection_closed(connection_closed) |
| } |
| FromSwarm::DialFailure(DialFailure { peer_id, .. }) => { |
| self.on_dial_failure.push(peer_id); |
| } |
| FromSwarm::NewListener(NewListener { listener_id }) => { |
| self.on_new_listener.push(listener_id); |
| } |
| FromSwarm::NewListenAddr(NewListenAddr { listener_id, addr }) => { |
| self.on_new_listen_addr.push((listener_id, addr.clone())); |
| } |
| FromSwarm::ExpiredListenAddr(ExpiredListenAddr { listener_id, addr }) => { |
| self.on_expired_listen_addr |
| .push((listener_id, addr.clone())); |
| } |
| FromSwarm::NewExternalAddrCandidate(NewExternalAddrCandidate { addr }) => { |
| self.on_new_external_addr.push(addr.clone()); |
| } |
| FromSwarm::ExternalAddrExpired(ExternalAddrExpired { addr }) => { |
| self.on_expired_external_addr.push(addr.clone()); |
| } |
| FromSwarm::ListenerError(ListenerError { listener_id, .. }) => { |
| self.on_listener_error.push(listener_id); |
| } |
| FromSwarm::ListenerClosed(ListenerClosed { |
| listener_id, |
| reason, |
| }) => { |
| self.on_listener_closed.push((listener_id, reason.is_ok())); |
| } |
| _ => {} |
| } |
| } |
|
|
| fn on_connection_handler_event( |
| &mut self, |
| p: PeerId, |
| c: ConnectionId, |
| e: THandlerOutEvent<Self>, |
| ) { |
| assert!( |
| self.on_connection_established |
| .iter() |
| .any(|(peer_id, conn_id, ..)| *peer_id == p && c == *conn_id), |
| "`on_connection_handler_event` is called for reported connections." |
| ); |
| assert!( |
| !self |
| .on_connection_closed |
| .iter() |
| .any(|(peer_id, conn_id, ..)| *peer_id == p && c == *conn_id), |
| "`on_connection_handler_event` is never called for closed connections." |
| ); |
|
|
| self.on_connection_handler_event.push((p, c, e.clone())); |
| self.inner.on_connection_handler_event(p, c, e); |
| } |
|
|
| fn poll( |
| &mut self, |
| cx: &mut Context<'_>, |
| ) -> Poll<ToSwarm<Self::ToSwarm, THandlerInEvent<Self>>> { |
| self.poll += 1; |
| self.inner.poll(cx) |
| } |
| } |
|
|