1
Fork 0

nodeinfo: Setup test logging, sort of

This commit is contained in:
Steffo 2024-11-11 03:01:46 +01:00
parent dba9a93e2e
commit 3cfc86a8fd
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,8 +1,20 @@
const CARGO_PKG_NAME: &str = env!("CARGO_PKG_NAME");
const CARGO_PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
const CARGO_PKG_REPOSITORY: &str = env!("CARGO_PKG_REPOSITORY");
fn init_log() {
let mut builder = pretty_env_logger::formatted_builder();
builder.filter_level(log::LevelFilter::max());
builder.is_test(true);
if builder.try_init().is_ok() {
log::debug!("Initialized logging!");
}
}
fn make_client() -> reqwest::Client {
let crate_name = env!("CARGO_PKG_NAME");
let crate_version = env!("CARGO_PKG_VERSION");
let crate_repository = env!("CARGO_PKG_REPOSITORY");
let user_agent = format!("{crate_name}/{crate_version} ({crate_repository})");
let user_agent = format!("{CARGO_PKG_NAME}/{CARGO_PKG_VERSION} ({CARGO_PKG_REPOSITORY})");
reqwest::Client::builder()
.user_agent(user_agent)
@ -22,6 +34,7 @@ macro_rules! test {
#[tokio::test]
$(#[$tag])*
async fn test_hostmeta() {
init_log();
let client = make_client();
let base: reqwest::Url = $url.parse()
@ -31,12 +44,13 @@ macro_rules! test {
.await
.expect("host-meta discovery to succeed");
println!("{doc:#?}");
log::info!("Parsed host-meta document: {doc:#?}");
}
#[tokio::test]
$(#[$tag])*
async fn test_nodeinfo() {
init_log();
let client = make_client();
let base: reqwest::Url = $url.parse()
@ -46,7 +60,7 @@ macro_rules! test {
.await
.expect("nodeinfo discovery to succeed");
println!("{doc:#?}");
log::info!("Parsed nodeinfo document: {doc:#?}");
}
}
};