Surfaced + fixed during the F3 attestation:
- executor-core/sdk/queue.rs: drop redundant .map(|()| ()) call sites;
enqueue_blocking discards QueueMessageId via .map(|_id| ()) (intentional)
- executor-core/sdk/retry.rs: hoist use std::collections::hash_map::DefaultHasher
+ use std::hash::Hasher to the top of the file (clippy::items_after_statements);
replace `as i64` casts with i64::try_from + clear comment about jitter
bound (clippy::cast_possible_wrap)
- executor-core/sdk/invoke.rs: move _LIMITS_IS_COPY const before #[cfg(test)]
mod tests (clippy::items_after_test_module)
- manager-core/dispatcher.rs: dispatch_one_queue gains #[allow(too_many_lines)]
(it's the queue tick's whole logic — split makes it less readable than
the lint); .map(...).unwrap_or(default) → .map_or(default, ...)
- picloud/lib.rs: Limits { trigger_depth_max, ..Limits::default() } via
struct-update instead of let-mut-assign (clippy::field_reassign_with_default)
- tests: r#"..."# → r"..." where there are no `"` inside (clippy::needless_raw_string_hashes);
combine InvokeTarget::Name | InvokeTarget::Path arms with identical bodies
in sdk_invoke.rs (clippy::match_same_arms)
cargo fmt --all -- --check 2>&1 | tail -3: no output (exit 0)
cargo clippy --workspace --all-targets --all-features -- -D warnings:
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.41s
Workspace lib smoke: 432 passing (306 manager-core + 74 executor-core + 34 shared + 18 orchestrator-core).
DB-gated E2E (against docker compose postgres on localhost:15432):
queue_e2e: 4 ok / invoke_e2e: 4 ok / retry_e2e: 3 ok / migration_queue_messages: 4 ok / schema_snapshot: 1 ok
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
171 lines
5.5 KiB
Rust
171 lines
5.5 KiB
Rust
//! v1.1.9 retry::* end-to-end test against a real engine inside the
|
|
//! all-in-one binary. Smaller surface than queue/invoke (no async
|
|
//! plumbing) — covers policy clamping, success-on-Nth-attempt, and
|
|
//! on_codes filtering through the admin bypass POST /api/v1/execute/{id}
|
|
//! (sidesteps the per-app domain matcher).
|
|
//!
|
|
//! Skips when DATABASE_URL is unset.
|
|
|
|
#![allow(clippy::needless_pass_by_value)]
|
|
|
|
use axum_test::TestServer;
|
|
use serde_json::{json, Value};
|
|
use sqlx::postgres::PgPoolOptions;
|
|
use sqlx::PgPool;
|
|
use uuid::Uuid;
|
|
|
|
async fn pool_or_skip() -> Option<PgPool> {
|
|
let Ok(url) = std::env::var("DATABASE_URL") else {
|
|
eprintln!("retry_e2e: DATABASE_URL unset — skipping");
|
|
return None;
|
|
};
|
|
let pool = PgPoolOptions::new()
|
|
.max_connections(2)
|
|
.connect(&url)
|
|
.await
|
|
.expect("connect");
|
|
sqlx::migrate!("../manager-core/migrations")
|
|
.run(&pool)
|
|
.await
|
|
.expect("migrate");
|
|
Some(pool)
|
|
}
|
|
|
|
async fn server_for(pool: PgPool, suffix: &str) -> (TestServer, String) {
|
|
use picloud_manager_core::auth::hash_password;
|
|
use picloud_shared::InstanceRole;
|
|
|
|
let unique = format!("{suffix}-{}", Uuid::new_v4().simple());
|
|
let auth = picloud::AuthDeps::from_pool(pool.clone());
|
|
let username = format!("e2e-{unique}");
|
|
let hash = hash_password("pw").expect("hash");
|
|
auth.users
|
|
.create(&username, &hash, InstanceRole::Owner, None)
|
|
.await
|
|
.expect("seed admin");
|
|
|
|
let app = picloud::build_app(
|
|
pool,
|
|
auth,
|
|
picloud_shared::MasterKey::from_bytes([0x42u8; 32]),
|
|
)
|
|
.await
|
|
.expect("build_app");
|
|
let mut server = TestServer::new(app).expect("TestServer");
|
|
let resp = server
|
|
.post("/api/v1/admin/auth/login")
|
|
.json(&json!({ "username": username, "password": "pw" }))
|
|
.await;
|
|
resp.assert_status_ok();
|
|
let token = resp.json::<Value>()["token"]
|
|
.as_str()
|
|
.expect("token")
|
|
.to_string();
|
|
server.add_header("authorization", format!("Bearer {token}"));
|
|
|
|
let slug = format!("e2e-{unique}");
|
|
let created: Value = server
|
|
.post("/api/v1/admin/apps")
|
|
.json(&json!({ "slug": slug, "name": slug }))
|
|
.await
|
|
.json();
|
|
let app_id = created["id"].as_str().expect("app id").to_string();
|
|
(server, app_id)
|
|
}
|
|
|
|
async fn create_script(server: &TestServer, app_id: &str, name: &str, source: &str) -> String {
|
|
let created: Value = server
|
|
.post("/api/v1/admin/scripts")
|
|
.json(&json!({ "app_id": app_id, "name": name, "source": source }))
|
|
.await
|
|
.json();
|
|
created["id"].as_str().expect("script id").to_string()
|
|
}
|
|
|
|
/// Execute via the admin bypass (same pattern as dispatcher_e2e).
|
|
async fn execute(server: &TestServer, script_id: &str) -> Value {
|
|
server
|
|
.post(&format!("/api/v1/execute/{script_id}"))
|
|
.json(&json!({}))
|
|
.await
|
|
.json()
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn retry_run_eventually_succeeds_inside_http_handler() {
|
|
let Some(pool) = pool_or_skip().await else {
|
|
return;
|
|
};
|
|
let (server, app_id) = server_for(pool, "retry-succ").await;
|
|
|
|
// attempt counter mutates across retries; the 3rd attempt returns
|
|
// the count.
|
|
let src = r#"
|
|
let attempts = 0;
|
|
let p = retry::policy(#{ max_attempts: 5, base_ms: 1, jitter_pct: 0 });
|
|
let v = retry::run(p, || {
|
|
attempts += 1;
|
|
if attempts < 3 { throw "transient" } else { attempts }
|
|
});
|
|
#{ statusCode: 200, body: v }
|
|
"#;
|
|
let script_id = create_script(&server, &app_id, "succ", src).await;
|
|
let body = execute(&server, &script_id).await;
|
|
assert_eq!(body, json!(3));
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn retry_run_surfaces_last_error_after_max_attempts() {
|
|
let Some(pool) = pool_or_skip().await else {
|
|
return;
|
|
};
|
|
let (server, app_id) = server_for(pool, "retry-surf").await;
|
|
|
|
let src = r#"
|
|
let p = retry::policy(#{ max_attempts: 2, base_ms: 1, jitter_pct: 0 });
|
|
let out = "did not throw";
|
|
try {
|
|
retry::run(p, || { throw "boom" });
|
|
} catch(e) {
|
|
out = e;
|
|
}
|
|
#{ statusCode: 200, body: out }
|
|
"#;
|
|
let script_id = create_script(&server, &app_id, "surf", src).await;
|
|
let body = execute(&server, &script_id).await;
|
|
let s = body.as_str().unwrap_or_default();
|
|
assert!(s.contains("boom"), "expected 'boom' in error, got: {s}");
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn retry_on_codes_filters_unmatched_errors() {
|
|
let Some(pool) = pool_or_skip().await else {
|
|
return;
|
|
};
|
|
let (server, app_id) = server_for(pool, "retry-codes").await;
|
|
|
|
// attempts is mutated on every entry; we throw a non-matching code
|
|
// → must surface immediately (attempts == 1).
|
|
let src = r#"
|
|
let attempts = 0;
|
|
let p = retry::policy(#{ max_attempts: 5, base_ms: 1, jitter_pct: 0 });
|
|
let p2 = retry::on_codes(p, ["http: 503"]);
|
|
try {
|
|
retry::run(p2, || {
|
|
attempts += 1;
|
|
throw "other failure"
|
|
});
|
|
} catch(_e) {
|
|
// swallow — assert via attempts count.
|
|
}
|
|
#{ statusCode: 200, body: attempts }
|
|
"#;
|
|
let script_id = create_script(&server, &app_id, "codes", src).await;
|
|
let body = execute(&server, &script_id).await;
|
|
assert_eq!(
|
|
body,
|
|
json!(1),
|
|
"non-matching error should surface immediately"
|
|
);
|
|
}
|