2018-11-12 17:12:47 +01:00
|
|
|
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2021-06-14 20:41:44 +02:00
|
|
|
use futures::prelude::*;
|
2021-08-31 17:00:51 +02:00
|
|
|
use libp2p::swarm::{NetworkBehaviour, SwarmEvent};
|
2021-01-26 22:49:08 +01:00
|
|
|
use libp2p_swarm_derive::*;
|
2018-12-20 15:21:13 +01:00
|
|
|
|
2018-11-27 16:10:34 +01:00
|
|
|
/// Small utility to check that a type implements `NetworkBehaviour`.
|
|
|
|
#[allow(dead_code)]
|
2019-07-04 14:47:59 +02:00
|
|
|
fn require_net_behaviour<T: libp2p::swarm::NetworkBehaviour>() {}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2018-11-12 17:12:47 +01:00
|
|
|
// TODO: doesn't compile
|
|
|
|
/*#[test]
|
|
|
|
fn empty() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
struct Foo {}
|
|
|
|
}*/
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn one_field() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_fields() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
2019-01-03 20:16:44 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-12-20 15:21:13 +01:00
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn three_fields() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
|
|
|
kad: libp2p::kad::Kademlia<libp2p::kad::record::store::MemoryStore>,
|
2018-11-12 17:12:47 +01:00
|
|
|
#[behaviour(ignore)]
|
|
|
|
foo: String,
|
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::kad::KademliaEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::kad::KademliaEvent) {}
|
2019-01-03 20:16:44 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-29 18:01:16 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
|
2020-04-28 11:38:25 +02:00
|
|
|
#[test]
|
|
|
|
fn three_fields_non_last_ignored() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-04-28 11:38:25 +02:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
#[behaviour(ignore)]
|
|
|
|
identify: String,
|
|
|
|
kad: libp2p::kad::Kademlia<libp2p::kad::record::store::MemoryStore>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2020-04-28 11:38:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::kad::KademliaEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::kad::KademliaEvent) {}
|
2020-04-28 11:38:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-12 17:12:47 +01:00
|
|
|
#[test]
|
|
|
|
fn custom_polling() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(poll_method = "foo", event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl Foo {
|
2021-08-31 17:00:51 +02:00
|
|
|
fn foo(
|
2021-08-11 13:12:12 +02:00
|
|
|
&mut self,
|
|
|
|
_: &mut std::task::Context,
|
|
|
|
_: &mut impl libp2p::swarm::PollParameters,
|
2021-08-31 17:00:51 +02:00
|
|
|
) -> std::task::Poll<
|
|
|
|
libp2p::swarm::NetworkBehaviourAction<
|
|
|
|
<Self as NetworkBehaviour>::OutEvent,
|
2022-02-21 13:32:24 +01:00
|
|
|
<Self as NetworkBehaviour>::ConnectionHandler,
|
2021-08-31 17:00:51 +02:00
|
|
|
>,
|
|
|
|
> {
|
2021-08-11 13:12:12 +02:00
|
|
|
std::task::Poll::Pending
|
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn custom_event_no_polling() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(out_event = "Vec<String>", event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn custom_event_and_polling() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(poll_method = "foo", out_event = "String", event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl Foo {
|
2021-08-31 17:00:51 +02:00
|
|
|
fn foo(
|
2021-08-11 13:12:12 +02:00
|
|
|
&mut self,
|
|
|
|
_: &mut std::task::Context,
|
|
|
|
_: &mut impl libp2p::swarm::PollParameters,
|
2021-08-31 17:00:51 +02:00
|
|
|
) -> std::task::Poll<
|
|
|
|
libp2p::swarm::NetworkBehaviourAction<
|
|
|
|
<Self as NetworkBehaviour>::OutEvent,
|
2022-02-21 13:32:24 +01:00
|
|
|
<Self as NetworkBehaviour>::ConnectionHandler,
|
2021-08-31 17:00:51 +02:00
|
|
|
>,
|
|
|
|
> {
|
2021-08-11 13:12:12 +02:00
|
|
|
std::task::Poll::Pending
|
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2019-01-30 15:41:54 +01:00
|
|
|
#[allow(dead_code)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2019-01-15 16:00:56 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn where_clause() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo<T: Copy> {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
bar: T,
|
2019-01-15 16:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-10 00:01:26 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn nested_derives_with_import() {
|
|
|
|
use libp2p::swarm::NetworkBehaviourEventProcess;
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-04-10 00:01:26 +10:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(event_process = true)]
|
2020-04-10 00:01:26 +10:00
|
|
|
struct Bar {
|
|
|
|
foo: Foo,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
2020-04-10 00:01:26 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
impl NetworkBehaviourEventProcess<()> for Bar {
|
2021-08-11 13:12:12 +02:00
|
|
|
fn inject_event(&mut self, _: ()) {}
|
2020-04-10 00:01:26 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn bar() {
|
|
|
|
require_net_behaviour::<Bar>();
|
|
|
|
}
|
|
|
|
}
|
2020-07-08 19:32:47 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn event_process_false() {
|
|
|
|
enum BehaviourOutEvent {
|
|
|
|
Ping(libp2p::ping::PingEvent),
|
2021-08-11 13:12:12 +02:00
|
|
|
Identify(libp2p::identify::IdentifyEvent),
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<libp2p::ping::PingEvent> for BehaviourOutEvent {
|
|
|
|
fn from(event: libp2p::ping::PingEvent) -> Self {
|
|
|
|
BehaviourOutEvent::Ping(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<libp2p::identify::IdentifyEvent> for BehaviourOutEvent {
|
|
|
|
fn from(event: libp2p::identify::IdentifyEvent) -> Self {
|
|
|
|
BehaviourOutEvent::Identify(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2021-09-14 23:28:08 +10:00
|
|
|
#[behaviour(out_event = "BehaviourOutEvent")]
|
2020-07-08 19:32:47 +10:00
|
|
|
struct Foo {
|
|
|
|
ping: libp2p::ping::Ping,
|
|
|
|
identify: libp2p::identify::Identify,
|
|
|
|
}
|
|
|
|
|
2021-01-26 22:49:08 +01:00
|
|
|
#[allow(dead_code, unreachable_code)]
|
2020-07-08 19:32:47 +10:00
|
|
|
fn bar() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
|
2021-01-26 22:49:08 +01:00
|
|
|
let mut _swarm: libp2p::Swarm<Foo> = unimplemented!();
|
2020-07-08 19:32:47 +10:00
|
|
|
|
|
|
|
// check that the event is bubbled up all the way to swarm
|
|
|
|
let _ = async {
|
2021-06-14 20:41:44 +02:00
|
|
|
loop {
|
2021-08-11 13:12:12 +02:00
|
|
|
match _swarm.select_next_some().await {
|
2021-06-14 20:41:44 +02:00
|
|
|
SwarmEvent::Behaviour(BehaviourOutEvent::Ping(_)) => break,
|
|
|
|
SwarmEvent::Behaviour(BehaviourOutEvent::Identify(_)) => break,
|
|
|
|
_ => {}
|
|
|
|
}
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-12-12 03:51:02 -08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_toggle() {
|
|
|
|
use libp2p::swarm::behaviour::toggle::Toggle;
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(event_process = true)]
|
|
|
|
struct Foo {
|
|
|
|
identify: libp2p::identify::Identify,
|
|
|
|
ping: Toggle<libp2p::ping::Ping>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::identify::IdentifyEvent> for Foo {
|
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::ping::PingEvent> for Foo {
|
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_either() {
|
|
|
|
use either::Either;
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(event_process = true)]
|
|
|
|
struct Foo {
|
|
|
|
kad: libp2p::kad::Kademlia<libp2p::kad::record::store::MemoryStore>,
|
|
|
|
ping_or_identify: Either<libp2p::ping::Ping, libp2p::identify::Identify>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl libp2p::swarm::NetworkBehaviourEventProcess<libp2p::kad::KademliaEvent> for Foo {
|
|
|
|
fn inject_event(&mut self, _: libp2p::kad::KademliaEvent) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl
|
|
|
|
libp2p::swarm::NetworkBehaviourEventProcess<
|
|
|
|
Either<libp2p::ping::PingEvent, libp2p::identify::IdentifyEvent>,
|
|
|
|
> for Foo
|
|
|
|
{
|
|
|
|
fn inject_event(
|
|
|
|
&mut self,
|
|
|
|
_: Either<libp2p::ping::PingEvent, libp2p::identify::IdentifyEvent>,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_event_with_either() {
|
|
|
|
use either::Either;
|
|
|
|
|
|
|
|
enum BehaviourOutEvent {
|
|
|
|
Kad(libp2p::kad::KademliaEvent),
|
|
|
|
PingOrIdentify(Either<libp2p::ping::PingEvent, libp2p::identify::IdentifyEvent>),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(out_event = "BehaviourOutEvent", event_process = false)]
|
|
|
|
struct Foo {
|
|
|
|
kad: libp2p::kad::Kademlia<libp2p::kad::record::store::MemoryStore>,
|
|
|
|
ping_or_identify: Either<libp2p::ping::Ping, libp2p::identify::Identify>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<libp2p::kad::KademliaEvent> for BehaviourOutEvent {
|
|
|
|
fn from(event: libp2p::kad::KademliaEvent) -> Self {
|
|
|
|
BehaviourOutEvent::Kad(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Either<libp2p::ping::PingEvent, libp2p::identify::IdentifyEvent>> for BehaviourOutEvent {
|
|
|
|
fn from(event: Either<libp2p::ping::PingEvent, libp2p::identify::IdentifyEvent>) -> Self {
|
|
|
|
BehaviourOutEvent::PingOrIdentify(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 11:37:00 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mixed_field_order() {
|
|
|
|
struct Foo {}
|
|
|
|
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(event_process = true)]
|
|
|
|
pub struct Behaviour {
|
|
|
|
#[behaviour(ignore)]
|
|
|
|
_foo: Foo,
|
|
|
|
_ping: libp2p::ping::Ping,
|
|
|
|
#[behaviour(ignore)]
|
|
|
|
_foo2: Foo,
|
|
|
|
_identify: libp2p::identify::Identify,
|
|
|
|
#[behaviour(ignore)]
|
|
|
|
_foo3: Foo,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> libp2p::swarm::NetworkBehaviourEventProcess<T> for Behaviour {
|
|
|
|
fn inject_event(&mut self, _evt: T) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn behaviour() {
|
|
|
|
require_net_behaviour::<Behaviour>();
|
|
|
|
}
|
|
|
|
}
|