[wip] cli capability parity
Some checks failed
CI / Rustfmt (push) Successful in 23s
CI / Cargo Audit & Deny (push) Successful in 30s
CI / Web Blocking Checks (push) Successful in 48s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Failing after 1m55s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Successful in 8m5s
Some checks failed
CI / Rustfmt (push) Successful in 23s
CI / Cargo Audit & Deny (push) Successful in 30s
CI / Web Blocking Checks (push) Successful in 48s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Failing after 1m55s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Successful in 8m5s
This commit is contained in:
@@ -117,6 +117,7 @@ async fn setup_db() -> PgPool {
|
||||
// ============================================================================
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_create_runtime() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("create_runtime");
|
||||
@@ -139,6 +140,7 @@ async fn test_create_runtime() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_create_runtime_minimal() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("create_runtime_minimal");
|
||||
@@ -157,6 +159,7 @@ async fn test_create_runtime_minimal() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_runtime_by_id() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("find_by_id");
|
||||
@@ -176,6 +179,7 @@ async fn test_find_runtime_by_id() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_runtime_by_id_not_found() {
|
||||
let pool = setup_db().await;
|
||||
|
||||
@@ -187,6 +191,7 @@ async fn test_find_runtime_by_id_not_found() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_runtime_by_ref() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("find_by_ref");
|
||||
@@ -206,6 +211,7 @@ async fn test_find_runtime_by_ref() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_runtime_by_ref_not_found() {
|
||||
let pool = setup_db().await;
|
||||
|
||||
@@ -217,6 +223,7 @@ async fn test_find_runtime_by_ref_not_found() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_list_runtimes() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("list_runtimes");
|
||||
@@ -241,6 +248,7 @@ async fn test_list_runtimes() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_update_runtime() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("update_runtime");
|
||||
@@ -275,6 +283,7 @@ async fn test_update_runtime() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_update_runtime_partial() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("update_partial");
|
||||
@@ -303,6 +312,7 @@ async fn test_update_runtime_partial() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_update_runtime_empty() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("update_empty");
|
||||
@@ -325,6 +335,7 @@ async fn test_update_runtime_empty() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_delete_runtime() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("delete_runtime");
|
||||
@@ -348,6 +359,7 @@ async fn test_delete_runtime() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_delete_runtime_not_found() {
|
||||
let pool = setup_db().await;
|
||||
|
||||
@@ -373,6 +385,7 @@ async fn test_delete_runtime_not_found() {
|
||||
// }
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_by_pack() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("find_by_pack");
|
||||
@@ -434,6 +447,7 @@ async fn test_find_by_pack() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_find_by_pack_empty() {
|
||||
let pool = setup_db().await;
|
||||
|
||||
@@ -445,6 +459,7 @@ async fn test_find_by_pack_empty() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_runtime_created_successfully() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("created_test");
|
||||
@@ -467,6 +482,7 @@ async fn test_runtime_created_successfully() {
|
||||
// ============================================================================
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_duplicate_ref_fails() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("duplicate_ref");
|
||||
@@ -482,6 +498,7 @@ async fn test_duplicate_ref_fails() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_json_fields() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("json_fields");
|
||||
@@ -500,6 +517,7 @@ async fn test_json_fields() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_empty_json_distributions() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("empty_json");
|
||||
@@ -516,6 +534,7 @@ async fn test_empty_json_distributions() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_list_ordering() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("list_ordering");
|
||||
@@ -558,6 +577,7 @@ async fn test_list_ordering() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_timestamps() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("timestamps");
|
||||
@@ -577,6 +597,7 @@ async fn test_timestamps() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_update_changes_timestamp() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("timestamp_update");
|
||||
@@ -602,6 +623,7 @@ async fn test_update_changes_timestamp() {
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "integration test — requires database"]
|
||||
async fn test_pack_ref_without_pack_id() {
|
||||
let pool = setup_db().await;
|
||||
let fixture = RuntimeFixture::new("pack_ref_only");
|
||||
|
||||
Reference in New Issue
Block a user