zed/crates/project/tests/integration/agent_registry_store.rs
Ben Brandt a0dc9fd13b
acp: Validate registry agent checksums (#61334)
The registry now has optional checksums that we can use.

Release Notes:

- N/A
2026-07-20 13:21:18 +00:00

175 lines
6.3 KiB
Rust

use std::{future, sync::Arc, time::Duration};
use fs::FakeFs;
use gpui::TestAppContext;
use http_client::{AsyncBody, FakeHttpClient, HttpClient, Response};
use project::{AgentRegistryStore, RegistryAgent};
use serde_json::json;
use crate::init_test;
#[gpui::test]
async fn registry_refresh_times_out_when_fetch_never_completes(cx: &mut TestAppContext) {
init_test(cx);
let fs = FakeFs::new(cx.executor());
let http_client =
FakeHttpClient::create(|_| future::pending::<anyhow::Result<Response<AsyncBody>>>())
as Arc<dyn HttpClient>;
let registry_store =
cx.update(|cx| AgentRegistryStore::init_global(cx, fs.clone(), http_client));
cx.run_until_parked();
cx.executor().advance_clock(Duration::from_secs(31));
cx.run_until_parked();
registry_store.update(cx, |store, _| {
assert!(!store.is_fetching());
assert!(
store
.fetch_error()
.is_some_and(|error| error.contains("timed out after 30s")),
"expected registry fetch timeout error, got {:?}",
store.fetch_error()
);
});
}
#[gpui::test]
async fn registry_refresh_does_not_block_sequentially_on_hung_icon_downloads(
cx: &mut TestAppContext,
) {
init_test(cx);
let fs = FakeFs::new(cx.executor());
let http_client = FakeHttpClient::create(|request| async move {
if request.uri().to_string().contains("registry.json") {
Ok(Response::builder()
.status(200)
.body(AsyncBody::from(
serde_json::to_string(&json!({
"version": "1",
"agents": [
{
"id": "slow-icon-a",
"name": "Slow Icon A",
"version": "1.0.0",
"description": "An agent with a slow icon.",
"icon": "https://example.test/slow-icon-a.svg",
"distribution": {
"npx": {
"package": "slow-icon-a"
}
}
},
{
"id": "slow-icon-b",
"name": "Slow Icon B",
"version": "1.0.0",
"description": "Another agent with a slow icon.",
"icon": "https://example.test/slow-icon-b.svg",
"distribution": {
"npx": {
"package": "slow-icon-b"
}
}
},
{
"id": "slow-icon-c",
"name": "Slow Icon C",
"version": "1.0.0",
"description": "A third agent with a slow icon.",
"icon": "https://example.test/slow-icon-c.svg",
"distribution": {
"npx": {
"package": "slow-icon-c"
}
}
}
]
}))
.unwrap(),
))
.unwrap())
} else {
future::pending::<anyhow::Result<Response<AsyncBody>>>().await
}
}) as Arc<dyn HttpClient>;
let registry_store =
cx.update(|cx| AgentRegistryStore::init_global(cx, fs.clone(), http_client));
cx.run_until_parked();
cx.executor().advance_clock(Duration::from_secs(11));
cx.run_until_parked();
registry_store.update(cx, |store, _| {
assert!(!store.is_fetching());
assert_eq!(store.agents().len(), 3);
assert_eq!(store.agents()[0].id().as_ref(), "slow-icon-a");
assert_eq!(store.agents()[1].id().as_ref(), "slow-icon-b");
assert_eq!(store.agents()[2].id().as_ref(), "slow-icon-c");
assert_eq!(store.fetch_error(), None);
});
}
#[gpui::test]
async fn registry_refresh_preserves_optional_binary_checksums(cx: &mut TestAppContext) {
init_test(cx);
let checksum = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
let fs = FakeFs::new(cx.executor());
let http_client = FakeHttpClient::create(move |_| async move {
let body = serde_json::to_vec(&json!({
"version": "1",
"agents": [{
"id": "binary-agent",
"name": "Binary Agent",
"version": "1.0.0",
"description": "A binary agent.",
"distribution": {
"binary": {
"darwin-aarch64": {
"archive": "https://example.test/agent.zip",
"sha256": checksum,
"cmd": "./agent"
},
"linux-x86_64": {
"archive": "https://example.test/agent.zip",
"cmd": "./agent"
}
}
}
}]
}))?;
Ok(Response::builder()
.status(200)
.body(AsyncBody::from(body))?)
}) as Arc<dyn HttpClient>;
let registry_store =
cx.update(|cx| AgentRegistryStore::init_global(cx, fs.clone(), http_client));
cx.run_until_parked();
registry_store.read_with(cx, |store, _| {
let Some(RegistryAgent::Binary(agent)) = store.agents().first() else {
panic!("expected a binary registry agent");
};
assert_eq!(
agent
.targets
.get("darwin-aarch64")
.and_then(|target| target.sha256.as_deref()),
Some(checksum)
);
assert!(
agent
.targets
.get("linux-x86_64")
.is_some_and(|target| target.sha256.is_none())
);
assert_eq!(store.fetch_error(), None);
});
}