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.
|
|
|
|
|
2019-02-11 14:58:15 +01:00
|
|
|
use libp2p_core_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)]
|
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 {
|
2019-01-03 20:16:44 +01: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)]
|
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 {
|
2019-01-03 20:16:44 +01: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 {
|
2019-01-03 20:16:44 +01: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)]
|
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 {
|
2019-01-03 20:16:44 +01:00
|
|
|
fn inject_event(&mut self, _: libp2p::ping::PingEvent) {
|
2018-12-20 15:21:13 +01:00
|
|
|
}
|
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 {
|
2018-12-20 15:21:13 +01: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 {
|
2019-07-03 16:16:25 +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
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn custom_polling() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
#[behaviour(poll_method = "foo")]
|
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 {
|
2019-01-03 20:16:44 +01: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 {
|
2018-12-20 15:21:13 +01:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl Foo {
|
2019-12-10 17:22:40 +01:00
|
|
|
fn foo<T>(&mut self, _: &mut std::task::Context) -> std::task::Poll<libp2p::swarm::NetworkBehaviourAction<T, ()>> { 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)]
|
2019-02-06 15:45:19 +01:00
|
|
|
#[behaviour(out_event = "Vec<String>")]
|
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 {
|
2019-01-03 20:16:44 +01: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 {
|
2018-12-20 15:21:13 +01:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)]
|
|
|
|
#[behaviour(poll_method = "foo", out_event = "String")]
|
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 {
|
2019-01-03 20:16:44 +01: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 {
|
2018-12-20 15:21:13 +01:00
|
|
|
fn inject_event(&mut self, _: libp2p::identify::IdentifyEvent) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 16:29:30 +01:00
|
|
|
impl Foo {
|
2019-12-10 17:22:40 +01:00
|
|
|
fn foo<T>(&mut self, _: &mut std::task::Context) -> std::task::Poll<libp2p::swarm::NetworkBehaviourAction<T, String>> { 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)]
|
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
|
|
|
}
|
|
|
|
}
|