Skip to content

Commit

Permalink
add runtime_tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Sep 9, 2023
1 parent 2734b53 commit 07560d0
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/runner/examples/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,8 @@ mod net {
fn test_ignored_with_non_existing_host() {
panic!("should be ignored with non existing host")
}
#[test_with::runtime_tcp(8.8.8.8:53)]
fn test_works_with_domain_name_server() {
assert!(true);
}
}
66 changes: 66 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,72 @@ fn check_tcp_condition(attr_str: String) -> (bool, String) {
(missing_sockets.is_empty(), ignore_msg)
}

/// Run test case when socket connected
///```rust
/// // write as example in exmaples/*rs
/// test_with::runner!(tcp);
/// #[test_with::module]
/// mod tcp {
/// // Google DNS is online
/// #[test_with::runtime_tcp(8.8.8.8:53)]
/// fn test_works_with_DNS_server() {
/// assert!(true);
/// }
/// }
#[cfg(not(feature = "runtime"))]
#[proc_macro_attribute]
#[proc_macro_error]
pub fn runtime_tcp(_attr: TokenStream, _stream: TokenStream) -> TokenStream {
panic!("should be used with runtime feature")
}

#[cfg(all(feature = "runtime"))]
#[proc_macro_attribute]
#[proc_macro_error]
pub fn runtime_tcp(attr: TokenStream, stream: TokenStream) -> TokenStream {
let attr_str = attr.to_string().replace(' ', "");
let sockets: Vec<&str> = attr_str.split(',').collect();
let ItemFn {
attrs,
vis,
sig,
block,
} = parse_macro_input!(stream as ItemFn);
let syn::Signature { ident, .. } = sig.clone();
let check_ident = syn::Ident::new(
&format!("_check_{}", ident.to_string()),
proc_macro2::Span::call_site(),
);
quote::quote! {
fn #check_ident() -> Result<(), libtest_with::Failed> {

let mut missing_sockets = vec![];
let client = libtest_with::reqwest::blocking::Client::new();
#(
if client.head(&format!("https://{}", #sockets)).send().is_err() {
missing_sockets.push(format!("https://{}", #sockets));
}
)*
match missing_sockets.len() {
0 => #ident(),
1 => return Err(
format!("{}because {} not response",
libtest_with::RUNTIME_IGNORE_PREFIX, missing_sockets[0]
).into()),
_ => return Err(
format!("{}because following sockets not response: \n{}\n",
libtest_with::RUNTIME_IGNORE_PREFIX, missing_sockets.join(", ")
).into()),
}
Ok(())
}

#(#attrs)*
#vis #sig #block
}
.into()
}

/// Run test case when runner is root
///
/// ```
Expand Down

0 comments on commit 07560d0

Please sign in to comment.