2024-11-11 02:01:46 +00:00
|
|
|
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();
|
2024-11-11 07:20:25 +00:00
|
|
|
builder.target(pretty_env_logger::env_logger::Target::Stdout);
|
2024-11-11 02:01:46 +00:00
|
|
|
builder.filter_level(log::LevelFilter::max());
|
|
|
|
builder.is_test(true);
|
|
|
|
|
|
|
|
if builder.try_init().is_ok() {
|
|
|
|
log::debug!("Initialized logging!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-09 15:18:46 +00:00
|
|
|
fn make_client() -> reqwest::Client {
|
2024-11-11 02:01:46 +00:00
|
|
|
let user_agent = format!("{CARGO_PKG_NAME}/{CARGO_PKG_VERSION} ({CARGO_PKG_REPOSITORY})");
|
2024-11-09 15:18:46 +00:00
|
|
|
|
|
|
|
reqwest::Client::builder()
|
|
|
|
.user_agent(user_agent)
|
|
|
|
.build()
|
|
|
|
.expect("reqwest client to build")
|
|
|
|
}
|
2024-11-09 12:33:08 +00:00
|
|
|
|
2024-11-11 07:20:25 +00:00
|
|
|
macro_rules! test_discover_hostmeta {
|
2024-11-09 15:18:46 +00:00
|
|
|
($id:ident, $url:literal) => {
|
2024-11-11 07:20:25 +00:00
|
|
|
test_discover_hostmeta!($id, $url,);
|
2024-11-09 15:18:46 +00:00
|
|
|
};
|
|
|
|
($id:ident, $url:literal, $($tag:meta),*) => {
|
|
|
|
mod $id {
|
2024-11-11 02:06:34 +00:00
|
|
|
use acrate_hostmeta::*;
|
2024-11-09 15:18:46 +00:00
|
|
|
use super::*;
|
2024-11-09 12:33:08 +00:00
|
|
|
|
2024-11-09 15:18:46 +00:00
|
|
|
#[tokio::test]
|
|
|
|
$(#[$tag])*
|
2024-11-11 07:20:25 +00:00
|
|
|
async fn test() {
|
2024-11-11 02:01:46 +00:00
|
|
|
init_log();
|
2024-11-09 15:18:46 +00:00
|
|
|
let client = make_client();
|
2024-11-09 12:33:08 +00:00
|
|
|
|
2024-11-09 15:18:46 +00:00
|
|
|
let base: reqwest::Url = $url.parse()
|
|
|
|
.expect("a valid URL");
|
2024-11-09 12:33:08 +00:00
|
|
|
|
2024-11-11 05:07:24 +00:00
|
|
|
let doc = ResourceDescriptor::discover_hostmeta(&client, base)
|
2024-11-09 15:18:46 +00:00
|
|
|
.await
|
|
|
|
.expect("host-meta discovery to succeed");
|
|
|
|
|
2024-11-11 02:01:46 +00:00
|
|
|
log::info!("Parsed host-meta document: {doc:#?}");
|
2024-11-09 15:18:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2024-11-09 12:33:08 +00:00
|
|
|
}
|
2024-11-09 15:18:46 +00:00
|
|
|
|
2024-11-11 07:20:25 +00:00
|
|
|
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");
|