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.target(pretty_env_logger::env_logger::Target::Stdout); 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 user_agent = format!("{CARGO_PKG_NAME}/{CARGO_PKG_VERSION} ({CARGO_PKG_REPOSITORY})"); reqwest::Client::builder() .user_agent(user_agent) .build() .expect("reqwest client to build") } macro_rules! test_discover_hostmeta { ($id:ident, $url:literal) => { test_discover_hostmeta!($id, $url,); }; ($id:ident, $url:literal, $($tag:meta),*) => { mod $id { use acrate_hostmeta::*; use super::*; #[tokio::test] $(#[$tag])* async fn test() { init_log(); let client = make_client(); let base: reqwest::Url = $url.parse() .expect("a valid URL"); let doc = ResourceDescriptor::discover_hostmeta(&client, base) .await .expect("host-meta discovery to succeed"); log::info!("Parsed host-meta document: {doc:#?}"); } } }; } test_discover_hostmeta!(akkoma, "https://junimo.party"); test_discover_hostmeta!(mastodon, "https://mastodon.social"); test_discover_hostmeta!(misskey, "https://misskey.io"); test_discover_hostmeta!(iceshrimpnet, "https://ice.frieren.quest"); test_discover_hostmeta!(gotosocial, "https://alpha.polymaths.social"); test_discover_hostmeta!(bridgyfed, "https://fed.brid.gy"); test_discover_hostmeta!(threads, "https://threads.net", ignore = "does not support host-meta"); test_discover_hostmeta!(snac, "https://ngoa.giao.loan", ignore = "does not support host-meta"); test_discover_hostmeta!(hollo, "https://hollo.social", ignore = "does not support host-meta");