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

Open
poimen wants to merge 35 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-llm",
"mem-store", "mem-store",
"regex", "regex",
"reqwest",
"serde_json", "serde_json",
"sqlx", "sqlx",
"time", "time",
"tokio", "tokio",
"toml", "toml",
"tracing",
"tracing-subscriber",
"uuid",
"wiremock", "wiremock",
] ]
+4
View File
@@ -66,6 +66,10 @@ chrono = { version = "0.4", features = ["serde"] }
regex = { workspace = true } regex = { workspace = true }
sqlx = { workspace = true } sqlx = { workspace = true }
base64 = { workspace = true } base64 = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
reqwest = { workspace = true }
uuid = { workspace = true }
[profile.release] [profile.release]
opt-level = 3 opt-level = 3
+2 -2
View File
@@ -274,8 +274,8 @@ mod tests {
"Linux entity should be extracted from at least one record" "Linux entity should be extracted from at least one record"
); );
assert!( assert!(
all_extracted_entities.iter().any(|name| name.contains("Go") || name.contains("go")), all_extracted_entities.iter().any(|name| name.contains("Concurrency") || name.contains("concurrency")),
"Go entity should be extracted from at least one record" "Concurrency entity should be extracted from at least one record (via [[Concurrency]] wiki link)"
); );
} }