use crate::cli::{print_value, DaemonClient};
use anyhow::Result;
pub async fn discovered(client: &DaemonClient, unfiltered: bool) -> Result<()> {
client.ensure_running().await?;
let resp = if unfiltered {
client
.get_query("/machines/discovered", &[("unfiltered", "true")])
.await?
} else {
client.get("/machines/discovered").await?
};
print_value(client.format(), &resp);
Ok(())
}
pub async fn get_discovered(client: &DaemonClient, machine_id: &str, wait: bool) -> Result<()> {
client.ensure_running().await?;
let path = format!("/machines/discovered/{machine_id}");
let resp = if wait {
client.get_query(&path, &[("wait", "true")]).await?
} else {
client.get(&path).await?
};
print_value(client.format(), &resp);
Ok(())
}
pub async fn by_user(client: &DaemonClient, user_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client.get(&format!("/users/{user_id}/machines")).await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn connect(client: &DaemonClient, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let body = serde_json::json!({ "machine_id": machine_id });
let resp = client.post("/machines/connect", &body).await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn list(client: &DaemonClient, agent_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.get(&format!("/contacts/{agent_id}/machines"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn add(client: &DaemonClient, agent_id: &str, machine_id: &str, pin: bool) -> Result<()> {
client.ensure_running().await?;
let body = serde_json::json!({
"machine_id": machine_id,
"pinned": pin,
});
let resp = client
.post(&format!("/contacts/{agent_id}/machines"), &body)
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn remove(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.delete(&format!("/contacts/{agent_id}/machines/{machine_id}"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn pin(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.post_empty(&format!("/contacts/{agent_id}/machines/{machine_id}/pin"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn unpin(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.delete(&format!("/contacts/{agent_id}/machines/{machine_id}/pin"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
#[cfg(test)]
mod tests {
#![allow(clippy::unwrap_used)]
use super::*;
use crate::cli::DaemonClient;
#[allow(dead_code)]
async fn start_mock_server(
response_json: serde_json::Value,
) -> (String, tokio::sync::oneshot::Sender<()>) {
use std::sync::Arc;
let json = Arc::new(response_json);
let app = axum::Router::new().fallback(move |_req: axum::extract::Request| {
let json = Arc::clone(&json);
async move {
let body = serde_json::to_vec(&*json).unwrap();
axum::response::Response::builder()
.status(200)
.header("content-type", "application/json")
.body(axum::body::Body::from(body))
.unwrap()
}
});
let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
let addr = listener.local_addr().unwrap();
let (tx, rx) = tokio::sync::oneshot::channel::<()>();
tokio::spawn(async move {
axum::serve(listener, app.into_make_service())
.with_graceful_shutdown(async {
rx.await.ok();
})
.await
.ok();
});
tokio::time::sleep(std::time::Duration::from_millis(50)).await;
(format!("http://{}", addr), tx)
}
#[tokio::test]
async fn discovered_returns_mock_response() {
let mock_resp = serde_json::json!({"machines": [{"machine_id": "abc123"}]});
let (url, _shutdown) = start_mock_server(mock_resp).await;
let client = DaemonClient::new(None, Some(&url), crate::cli::OutputFormat::Json).unwrap();
let result = discovered(&client, false).await;
assert!(result.is_ok(), "discovered should succeed: {:?}", result);
}
#[tokio::test]
async fn get_discovered_returns_mock_response() {
let mock_resp = serde_json::json!({"status": "ok"});
let (url, _shutdown) = start_mock_server(mock_resp).await;
let client = DaemonClient::new(None, Some(&url), crate::cli::OutputFormat::Json).unwrap();
let result = get_discovered(&client, "machine-1", false).await;
assert!(
result.is_ok(),
"get_discovered should succeed: {:?}",
result
);
}
#[tokio::test]
async fn by_user_returns_mock_response() {
let mock_resp = serde_json::json!({"status": "ok"});
let (url, _shutdown) = start_mock_server(mock_resp).await;
let client = DaemonClient::new(None, Some(&url), crate::cli::OutputFormat::Json).unwrap();
let result = by_user(&client, "user-1").await;
assert!(result.is_ok(), "by_user should succeed: {:?}", result);
}
#[tokio::test]
async fn list_returns_mock_response() {
let mock_resp = serde_json::json!({"status": "ok"});
let (url, _shutdown) = start_mock_server(mock_resp).await;
let client = DaemonClient::new(None, Some(&url), crate::cli::OutputFormat::Json).unwrap();
let result = list(&client, "agent-1").await;
assert!(result.is_ok(), "list should succeed: {:?}", result);
}
}