test: production ingest E2E test suite with enhanced logging #55

Open
poimen wants to merge 34 commits from feat/production-ingest-test-logging into main
3 changed files with 10 additions and 2 deletions
Showing only changes of commit b514c43d6b - Show all commits
Generated
+4
View File
@@ -2599,11 +2599,15 @@ dependencies = [
"mem-llm",
"mem-store",
"regex",
"reqwest",
"serde_json",
"sqlx",
"time",
"tokio",
"toml",
"tracing",
"tracing-subscriber",
"uuid",
"wiremock",
]
+4
View File
@@ -66,6 +66,10 @@ chrono = { version = "0.4", features = ["serde"] }
regex = { workspace = true }
sqlx = { workspace = true }
base64 = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
reqwest = { workspace = true }
uuid = { workspace = true }
[profile.release]
opt-level = 3
+2 -2
View File
@@ -274,8 +274,8 @@ mod tests {
"Linux entity should be extracted from at least one record"
);
assert!(
all_extracted_entities.iter().any(|name| name.contains("Go") || name.contains("go")),
"Go entity should be extracted from at least one record"
all_extracted_entities.iter().any(|name| name.contains("Concurrency") || name.contains("concurrency")),
"Concurrency entity should be extracted from at least one record (via [[Concurrency]] wiki link)"
);
}