mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 12:11:09 +00:00
Add async test helper to timeout and provide a task_executor automatically (#6651)
* Initial commit Forked at:74655edebcParent branch: origin/master * Add async test helper to timeout and provide a task_executor automatically * simplify error message to avoid difference between CI and locally * forgot env var * Use runtime env var instead of build env var * Rename variable to SUBSTRATE_TEST_TIMEOUT * CLEANUP Forked at:74655edebcParent branch: origin/master * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Re-export from test-utils * Default value to 120 * fix wrong crate in ci * Revert "Default value to 120" This reverts commit 8e458717078b242ffce7d3c4f66241d76f075125. * Fix version * WIP Forked at:74655edebcParent branch: origin/master * WIP Forked at:74655edebcParent branch: origin/master * WIP Forked at:74655edebcParent branch: origin/master * remove feature flag * fix missing dependency * CLEANUP Forked at:74655edebcParent branch: origin/master * fix test * Removed autotests=false * Some doc... * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * WIP Forked at:74655edebcParent branch: origin/master * WIP Forked at:74655edebcParent branch: origin/master * Update test-utils/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
// This file is part of Substrate.
|
||||
|
||||
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use proc_macro::{Span, TokenStream};
|
||||
use proc_macro_crate::crate_name;
|
||||
use quote::quote;
|
||||
use std::env;
|
||||
|
||||
#[proc_macro_attribute]
|
||||
pub fn test(args: TokenStream, item: TokenStream) -> TokenStream {
|
||||
impl_test(args, item)
|
||||
}
|
||||
|
||||
fn impl_test(args: TokenStream, item: TokenStream) -> TokenStream {
|
||||
let input = syn::parse_macro_input!(item as syn::ItemFn);
|
||||
let args = syn::parse_macro_input!(args as syn::AttributeArgs);
|
||||
|
||||
parse_knobs(input, args).unwrap_or_else(|e| e.to_compile_error().into())
|
||||
}
|
||||
|
||||
fn parse_knobs(
|
||||
mut input: syn::ItemFn,
|
||||
args: syn::AttributeArgs,
|
||||
) -> Result<TokenStream, syn::Error> {
|
||||
let sig = &mut input.sig;
|
||||
let body = &input.block;
|
||||
let attrs = &input.attrs;
|
||||
let vis = input.vis;
|
||||
|
||||
if sig.inputs.len() != 1 {
|
||||
let msg = "the test function accepts only one argument of type sc_service::TaskExecutor";
|
||||
return Err(syn::Error::new_spanned(&sig, msg));
|
||||
}
|
||||
let (task_executor_name, task_executor_type) = match sig.inputs.pop().map(|x| x.into_value()) {
|
||||
Some(syn::FnArg::Typed(x)) => (x.pat, x.ty),
|
||||
_ => {
|
||||
let msg =
|
||||
"the test function accepts only one argument of type sc_service::TaskExecutor";
|
||||
return Err(syn::Error::new_spanned(&sig, msg));
|
||||
}
|
||||
};
|
||||
|
||||
let crate_name = if env::var("CARGO_PKG_NAME").unwrap() == "substrate-test-utils" {
|
||||
syn::Ident::new("substrate_test_utils", Span::call_site().into())
|
||||
} else {
|
||||
let crate_name = crate_name("substrate-test-utils")
|
||||
.map_err(|e| syn::Error::new_spanned(&sig, e))?;
|
||||
|
||||
syn::Ident::new(&crate_name, Span::call_site().into())
|
||||
};
|
||||
|
||||
let header = {
|
||||
quote! {
|
||||
#[#crate_name::tokio::test(#(#args)*)]
|
||||
}
|
||||
};
|
||||
|
||||
let result = quote! {
|
||||
#header
|
||||
#(#attrs)*
|
||||
#vis #sig {
|
||||
use #crate_name::futures::future::FutureExt;
|
||||
|
||||
let #task_executor_name: #task_executor_type = (|fut, _| {
|
||||
#crate_name::tokio::spawn(fut).map(drop)
|
||||
})
|
||||
.into();
|
||||
let timeout_task = #crate_name::tokio::time::delay_for(
|
||||
std::time::Duration::from_secs(
|
||||
std::env::var("SUBSTRATE_TEST_TIMEOUT")
|
||||
.ok()
|
||||
.and_then(|x| x.parse().ok())
|
||||
.unwrap_or(600))
|
||||
).fuse();
|
||||
let actual_test_task = async move {
|
||||
#body
|
||||
}
|
||||
.fuse();
|
||||
|
||||
#crate_name::futures::pin_mut!(timeout_task, actual_test_task);
|
||||
|
||||
#crate_name::futures::select! {
|
||||
_ = timeout_task => {
|
||||
panic!("The test took too long!");
|
||||
},
|
||||
_ = actual_test_task => {},
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Ok(result.into())
|
||||
}
|
||||
Reference in New Issue
Block a user