85 lines
2.1 KiB
Rust
85 lines
2.1 KiB
Rust
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 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 {
|
|
($id:ident, $url:literal) => {
|
|
test!($id, $url,);
|
|
};
|
|
($id:ident, $url:literal, $($tag:meta),*) => {
|
|
mod $id {
|
|
use acrate_nodeinfo::*;
|
|
use super::*;
|
|
|
|
#[tokio::test]
|
|
$(#[$tag])*
|
|
async fn test_hostmeta() {
|
|
init_log();
|
|
let client = make_client();
|
|
|
|
let base: reqwest::Url = $url.parse()
|
|
.expect("a valid URL");
|
|
|
|
let doc = HostMetaDocument::discover_hostmeta(&client, base)
|
|
.await
|
|
.expect("host-meta discovery to succeed");
|
|
|
|
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()
|
|
.expect("a valid URL");
|
|
|
|
let doc = HostMetaDocument::discover_nodeinfo(&client, base)
|
|
.await
|
|
.expect("nodeinfo discovery to succeed");
|
|
|
|
log::info!("Parsed nodeinfo document: {doc:#?}");
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
test!(akkoma, "https://junimo.party");
|
|
|
|
test!(mastodon, "https://mastodon.social");
|
|
|
|
test!(misskey, "https://misskey.io");
|
|
|
|
test!(iceshrimpnet, "https://ice.frieren.quest");
|
|
|
|
test!(gotosocial, "https://alpha.polymaths.social");
|
|
|
|
test!(bridgyfed, "https://fed.brid.gy");
|
|
|
|
test!(threads, "https://threads.net", ignore = "Not implemented on their end");
|
|
|
|
test!(snac, "https://ngoa.giao.loan", ignore = "Does not support host-meta");
|
|
|
|
test!(hollo, "https://hollo.social", ignore = "Does not support host-meta");
|