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.
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
use futures::StreamExt;
|
|
|
|
use libp2p_identify as identify;
|
|
|
|
use libp2p_ping as ping;
|
2023-01-26 22:55:02 +11:00
|
|
|
use libp2p_swarm::{behaviour::FromSwarm, dummy, NetworkBehaviour, SwarmEvent, THandlerOutEvent};
|
2022-08-17 08:40:32 +02:00
|
|
|
use std::fmt::Debug;
|
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)]
|
2022-11-13 10:59:14 +11: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)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, unreachable_code, clippy::diverging_sub_expression)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
2022-08-08 07:18:32 +02:00
|
|
|
let _out_event: <Foo as NetworkBehaviour>::OutEvent = unimplemented!();
|
|
|
|
match _out_event {
|
2022-10-01 00:19:34 +10:00
|
|
|
FooEvent::Ping(ping::Event { .. }) => {}
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
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)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-10-04 01:17:31 +01:00
|
|
|
identify: identify::Behaviour,
|
2019-01-03 20:16:44 +01:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, unreachable_code, clippy::diverging_sub_expression)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
2022-08-08 07:18:32 +02:00
|
|
|
let _out_event: <Foo as NetworkBehaviour>::OutEvent = unimplemented!();
|
|
|
|
match _out_event {
|
2022-10-01 00:19:34 +10:00
|
|
|
FooEvent::Ping(ping::Event { .. }) => {}
|
2022-08-08 07:18:32 +02:00
|
|
|
FooEvent::Identify(event) => {
|
2022-10-04 01:17:31 +01:00
|
|
|
let _: identify::Event = event;
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
}
|
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)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-10-04 01:17:31 +01:00
|
|
|
identify: identify::Behaviour,
|
2022-11-13 10:59:14 +11:00
|
|
|
kad: libp2p_kad::Kademlia<libp2p_kad::record::store::MemoryStore>,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, unreachable_code, clippy::diverging_sub_expression)]
|
2020-02-07 16:29:30 +01:00
|
|
|
fn foo() {
|
2022-08-08 07:18:32 +02:00
|
|
|
let _out_event: <Foo as NetworkBehaviour>::OutEvent = unimplemented!();
|
|
|
|
match _out_event {
|
2022-10-01 00:19:34 +10:00
|
|
|
FooEvent::Ping(ping::Event { .. }) => {}
|
2022-08-08 07:18:32 +02:00
|
|
|
FooEvent::Identify(event) => {
|
2022-10-04 01:17:31 +01:00
|
|
|
let _: identify::Event = event;
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
FooEvent::Kad(event) => {
|
2022-11-13 10:59:14 +11:00
|
|
|
let _: libp2p_kad::KademliaEvent = event;
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
}
|
2018-11-29 18:01:16 +01:00
|
|
|
}
|
2018-11-12 17:12:47 +01:00
|
|
|
|
|
|
|
#[test]
|
2022-08-28 10:51:49 +02:00
|
|
|
fn custom_event() {
|
2018-11-12 17:12:47 +01:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(out_event = "MyEvent", prelude = "libp2p_swarm::derive_prelude")]
|
2020-02-07 16:29:30 +01:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-10-04 01:17:31 +01:00
|
|
|
identify: identify::Behaviour,
|
2018-11-12 17:12:47 +01:00
|
|
|
}
|
2018-11-27 16:10:34 +01:00
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2022-08-08 07:18:32 +02:00
|
|
|
enum MyEvent {
|
2022-10-01 00:19:34 +10:00
|
|
|
Ping(ping::Event),
|
2022-10-04 01:17:31 +01:00
|
|
|
Identify(identify::Event),
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
|
|
|
|
2022-10-01 00:19:34 +10:00
|
|
|
impl From<ping::Event> for MyEvent {
|
|
|
|
fn from(event: ping::Event) -> Self {
|
2022-08-08 07:18:32 +02:00
|
|
|
MyEvent::Ping(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
impl From<identify::Event> for MyEvent {
|
|
|
|
fn from(event: identify::Event) -> Self {
|
2022-08-08 07:18:32 +02:00
|
|
|
MyEvent::Identify(event)
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2022-08-08 07:18:32 +02:00
|
|
|
#[test]
|
|
|
|
fn custom_event_mismatching_field_names() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(out_event = "MyEvent", prelude = "libp2p_swarm::derive_prelude")]
|
2022-08-08 07:18:32 +02:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
a: ping::Behaviour,
|
2022-11-13 10:59:14 +11:00
|
|
|
b: identify::Behaviour,
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2022-08-08 07:18:32 +02:00
|
|
|
enum MyEvent {
|
2022-10-01 00:19:34 +10:00
|
|
|
Ping(ping::Event),
|
2022-11-13 10:59:14 +11:00
|
|
|
Identify(identify::Event),
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
|
2022-10-01 00:19:34 +10:00
|
|
|
impl From<ping::Event> for MyEvent {
|
|
|
|
fn from(event: ping::Event) -> Self {
|
2022-08-08 07:18:32 +02:00
|
|
|
MyEvent::Ping(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
impl From<identify::Event> for MyEvent {
|
|
|
|
fn from(event: identify::Event) -> Self {
|
2022-08-08 07:18:32 +02:00
|
|
|
MyEvent::Identify(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:00:56 +00:00
|
|
|
#[test]
|
2022-08-17 06:43:47 +02:00
|
|
|
fn bound() {
|
2019-01-15 16:00:56 +00:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2022-08-17 08:40:32 +02:00
|
|
|
struct Foo<T: Copy + NetworkBehaviour>
|
|
|
|
where
|
|
|
|
<T as NetworkBehaviour>::OutEvent: Debug,
|
|
|
|
{
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2020-02-07 16:29:30 +01:00
|
|
|
bar: T,
|
2019-01-15 16:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-10 00:01:26 +10:00
|
|
|
|
2022-08-17 06:43:47 +02:00
|
|
|
#[test]
|
|
|
|
fn where_clause() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2022-08-17 06:43:47 +02:00
|
|
|
struct Foo<T>
|
|
|
|
where
|
|
|
|
T: Copy + NetworkBehaviour,
|
2022-08-17 08:40:32 +02:00
|
|
|
<T as NetworkBehaviour>::OutEvent: Debug,
|
2022-08-17 06:43:47 +02:00
|
|
|
{
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-08-17 06:43:47 +02:00
|
|
|
bar: T,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 00:01:26 +10:00
|
|
|
#[test]
|
|
|
|
fn nested_derives_with_import() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2020-04-10 00:01:26 +10:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2020-04-10 00:01:26 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2020-04-10 00:01:26 +10:00
|
|
|
struct Bar {
|
|
|
|
foo: Foo,
|
|
|
|
}
|
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, unreachable_code, clippy::diverging_sub_expression)]
|
2022-08-08 07:18:32 +02:00
|
|
|
fn foo() {
|
|
|
|
let _out_event: <Bar as NetworkBehaviour>::OutEvent = unimplemented!();
|
|
|
|
match _out_event {
|
2022-10-01 00:19:34 +10:00
|
|
|
BarEvent::Foo(FooEvent::Ping(ping::Event { .. })) => {}
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
2020-04-10 00:01:26 +10:00
|
|
|
}
|
|
|
|
}
|
2020-07-08 19:32:47 +10:00
|
|
|
|
|
|
|
#[test]
|
2022-08-08 07:18:32 +02:00
|
|
|
fn custom_event_emit_event_through_poll() {
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2020-07-08 19:32:47 +10:00
|
|
|
enum BehaviourOutEvent {
|
2022-10-01 00:19:34 +10:00
|
|
|
Ping(ping::Event),
|
2022-10-04 01:17:31 +01:00
|
|
|
Identify(identify::Event),
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
|
|
|
|
2022-10-01 00:19:34 +10:00
|
|
|
impl From<ping::Event> for BehaviourOutEvent {
|
|
|
|
fn from(event: ping::Event) -> Self {
|
2020-07-08 19:32:47 +10:00
|
|
|
BehaviourOutEvent::Ping(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
impl From<identify::Event> for BehaviourOutEvent {
|
|
|
|
fn from(event: identify::Event) -> Self {
|
2020-07-08 19:32:47 +10:00
|
|
|
BehaviourOutEvent::Identify(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, clippy::large_enum_variant)]
|
2020-07-08 19:32:47 +10:00
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(
|
|
|
|
out_event = "BehaviourOutEvent",
|
|
|
|
prelude = "libp2p_swarm::derive_prelude"
|
|
|
|
)]
|
2020-07-08 19:32:47 +10:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-10-04 01:17:31 +01:00
|
|
|
identify: identify::Behaviour,
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:24:38 +11:00
|
|
|
#[allow(dead_code, unreachable_code, clippy::diverging_sub_expression)]
|
2022-12-17 13:01:45 +11:00
|
|
|
async fn bar() {
|
2020-07-08 19:32:47 +10:00
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
let mut _swarm: libp2p_swarm::Swarm<Foo> = unimplemented!();
|
2020-07-08 19:32:47 +10:00
|
|
|
|
|
|
|
// check that the event is bubbled up all the way to swarm
|
2022-12-17 13:01:45 +11:00
|
|
|
loop {
|
|
|
|
match _swarm.select_next_some().await {
|
|
|
|
SwarmEvent::Behaviour(BehaviourOutEvent::Ping(_)) => break,
|
|
|
|
SwarmEvent::Behaviour(BehaviourOutEvent::Identify(_)) => break,
|
|
|
|
_ => {}
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
2022-12-17 13:01:45 +11:00
|
|
|
}
|
2020-07-08 19:32:47 +10:00
|
|
|
}
|
|
|
|
}
|
2021-12-12 03:51:02 -08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_toggle() {
|
2022-11-13 10:59:14 +11:00
|
|
|
use libp2p_swarm::behaviour::toggle::Toggle;
|
2021-12-12 03:51:02 -08:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2021-12-12 03:51:02 -08:00
|
|
|
struct Foo {
|
2022-10-04 01:17:31 +01:00
|
|
|
identify: identify::Behaviour,
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: Toggle<ping::Behaviour>,
|
2021-12-12 03:51:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_either() {
|
|
|
|
use either::Either;
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2021-12-12 03:51:02 -08:00
|
|
|
struct Foo {
|
2022-11-13 10:59:14 +11:00
|
|
|
kad: libp2p_kad::Kademlia<libp2p_kad::record::store::MemoryStore>,
|
2022-10-04 01:17:31 +01:00
|
|
|
ping_or_identify: Either<ping::Behaviour, identify::Behaviour>,
|
2021-12-12 03:51:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-01 21:30:27 +00:00
|
|
|
#[test]
|
|
|
|
fn with_generics() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
|
|
|
struct Foo<A, B> {
|
|
|
|
a: A,
|
|
|
|
b: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<
|
|
|
|
Foo<
|
|
|
|
libp2p_kad::Kademlia<libp2p_kad::record::store::MemoryStore>,
|
|
|
|
libp2p_ping::Behaviour,
|
|
|
|
>,
|
|
|
|
>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn with_generics_mixed() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
|
|
|
struct Foo<A> {
|
|
|
|
a: A,
|
|
|
|
ping: libp2p_ping::Behaviour,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo<libp2p_kad::Kademlia<libp2p_kad::record::store::MemoryStore>>>(
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-12 03:51:02 -08:00
|
|
|
#[test]
|
2022-08-08 07:18:32 +02:00
|
|
|
fn custom_event_with_either() {
|
2021-12-12 03:51:02 -08:00
|
|
|
use either::Either;
|
|
|
|
|
2022-11-04 20:40:09 +11:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2021-12-12 03:51:02 -08:00
|
|
|
enum BehaviourOutEvent {
|
2022-11-13 10:59:14 +11:00
|
|
|
Kad(libp2p_kad::KademliaEvent),
|
2022-10-04 01:17:31 +01:00
|
|
|
PingOrIdentify(Either<ping::Event, identify::Event>),
|
2021-12-12 03:51:02 -08:00
|
|
|
}
|
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
impl From<libp2p_kad::KademliaEvent> for BehaviourOutEvent {
|
|
|
|
fn from(event: libp2p_kad::KademliaEvent) -> Self {
|
2021-12-12 03:51:02 -08:00
|
|
|
BehaviourOutEvent::Kad(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-04 01:17:31 +01:00
|
|
|
impl From<Either<ping::Event, identify::Event>> for BehaviourOutEvent {
|
|
|
|
fn from(event: Either<ping::Event, identify::Event>) -> Self {
|
2021-12-12 03:51:02 -08:00
|
|
|
BehaviourOutEvent::PingOrIdentify(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-08 07:18:32 +02:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(
|
|
|
|
out_event = "BehaviourOutEvent",
|
|
|
|
prelude = "libp2p_swarm::derive_prelude"
|
|
|
|
)]
|
2022-08-08 07:18:32 +02:00
|
|
|
struct Foo {
|
2022-11-13 10:59:14 +11:00
|
|
|
kad: libp2p_kad::Kademlia<libp2p_kad::record::store::MemoryStore>,
|
2022-10-04 01:17:31 +01:00
|
|
|
ping_or_identify: Either<ping::Behaviour, identify::Behaviour>,
|
2022-08-08 07:18:32 +02:00
|
|
|
}
|
|
|
|
|
2021-12-12 03:51:02 -08:00
|
|
|
#[allow(dead_code)]
|
|
|
|
fn foo() {
|
|
|
|
require_net_behaviour::<Foo>();
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 11:37:00 -04:00
|
|
|
|
2022-08-17 08:40:32 +02:00
|
|
|
#[test]
|
|
|
|
fn generated_out_event_derive_debug() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(prelude = "libp2p_swarm::derive_prelude")]
|
2022-08-17 08:40:32 +02:00
|
|
|
struct Foo {
|
2022-10-01 00:19:34 +10:00
|
|
|
ping: ping::Behaviour,
|
2022-08-17 08:40:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn require_debug<T>()
|
|
|
|
where
|
|
|
|
T: NetworkBehaviour,
|
|
|
|
<T as NetworkBehaviour>::OutEvent: Debug,
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
require_debug::<Foo>();
|
|
|
|
}
|
2022-09-17 00:57:41 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn custom_out_event_no_type_parameters() {
|
2022-11-13 10:59:14 +11:00
|
|
|
use libp2p_core::PeerId;
|
2023-01-26 22:55:02 +11:00
|
|
|
use libp2p_swarm::{ConnectionId, NetworkBehaviourAction, PollParameters};
|
2022-09-17 00:57:41 +10:00
|
|
|
use std::task::Context;
|
|
|
|
use std::task::Poll;
|
|
|
|
|
|
|
|
pub struct TemplatedBehaviour<T: 'static> {
|
|
|
|
_data: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> NetworkBehaviour for TemplatedBehaviour<T> {
|
2022-10-06 03:50:11 +11:00
|
|
|
type ConnectionHandler = dummy::ConnectionHandler;
|
2022-09-17 00:57:41 +10:00
|
|
|
type OutEvent = void::Void;
|
|
|
|
|
|
|
|
fn new_handler(&mut self) -> Self::ConnectionHandler {
|
2022-10-06 03:50:11 +11:00
|
|
|
dummy::ConnectionHandler
|
2022-09-17 00:57:41 +10:00
|
|
|
}
|
|
|
|
|
2022-11-17 09:28:40 +00:00
|
|
|
fn on_connection_handler_event(
|
2022-09-17 00:57:41 +10:00
|
|
|
&mut self,
|
|
|
|
_peer: PeerId,
|
|
|
|
_connection: ConnectionId,
|
2023-01-26 22:55:02 +11:00
|
|
|
message: THandlerOutEvent<Self>,
|
2022-09-17 00:57:41 +10:00
|
|
|
) {
|
|
|
|
void::unreachable(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll(
|
|
|
|
&mut self,
|
|
|
|
_ctx: &mut Context,
|
|
|
|
_: &mut impl PollParameters,
|
|
|
|
) -> Poll<NetworkBehaviourAction<Self::OutEvent, Self::ConnectionHandler>> {
|
|
|
|
Poll::Pending
|
|
|
|
}
|
2022-11-17 09:28:40 +00:00
|
|
|
|
|
|
|
fn on_swarm_event(&mut self, event: FromSwarm<Self::ConnectionHandler>) {
|
|
|
|
match event {
|
|
|
|
FromSwarm::ConnectionEstablished(_)
|
|
|
|
| FromSwarm::ConnectionClosed(_)
|
|
|
|
| FromSwarm::AddressChange(_)
|
|
|
|
| FromSwarm::DialFailure(_)
|
|
|
|
| FromSwarm::ListenFailure(_)
|
|
|
|
| FromSwarm::NewListener(_)
|
|
|
|
| FromSwarm::NewListenAddr(_)
|
|
|
|
| FromSwarm::ExpiredListenAddr(_)
|
|
|
|
| FromSwarm::ListenerError(_)
|
|
|
|
| FromSwarm::ListenerClosed(_)
|
|
|
|
| FromSwarm::NewExternalAddr(_)
|
|
|
|
| FromSwarm::ExpiredExternalAddr(_) => {}
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 00:57:41 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(NetworkBehaviour)]
|
2022-11-13 10:59:14 +11:00
|
|
|
#[behaviour(out_event = "OutEvent", prelude = "libp2p_swarm::derive_prelude")]
|
2022-09-17 00:57:41 +10:00
|
|
|
struct Behaviour<T: 'static + Send> {
|
|
|
|
custom: TemplatedBehaviour<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
enum OutEvent {
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<void::Void> for OutEvent {
|
|
|
|
fn from(_e: void::Void) -> Self {
|
|
|
|
Self::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
require_net_behaviour::<Behaviour<String>>();
|
|
|
|
require_net_behaviour::<Behaviour<()>>();
|
|
|
|
}
|