fix rust tests

This commit is contained in:
Adil Hafeez 2025-02-05 17:25:30 -08:00
parent 8d59586dfb
commit d4eacb1f5f
No known key found for this signature in database
GPG key ID: 9B18EF7691369645

View file

@ -365,6 +365,7 @@ fn prompt_gateway_request_to_llm_gateway() {
metadata: None, metadata: None,
}; };
let expected_body = "{\"city\":\"seattle\"}";
let arch_fc_resp_str = serde_json::to_string(&arch_fc_resp).unwrap(); let arch_fc_resp_str = serde_json::to_string(&arch_fc_resp).unwrap();
module module
.call_proxy_on_http_call_response(http_context, 1, 0, arch_fc_resp_str.len() as i32, 0) .call_proxy_on_http_call_response(http_context, 1, 0, arch_fc_resp_str.len() as i32, 0)
@ -377,18 +378,17 @@ fn prompt_gateway_request_to_llm_gateway() {
.expect_log(Some(LogLevel::Debug), None) .expect_log(Some(LogLevel::Debug), None)
.expect_log(Some(LogLevel::Trace), None) .expect_log(Some(LogLevel::Trace), None)
.expect_log(Some(LogLevel::Trace), None) .expect_log(Some(LogLevel::Trace), None)
.expect_log(Some(LogLevel::Trace), None)
.expect_http_call( .expect_http_call(
Some("arch_internal"), Some("arch_internal"),
Some(vec![ Some(vec![
("x-arch-upstream", "api_server"),
(":method", "POST"), (":method", "POST"),
(":path", "/weather"),
(":authority", "api_server"),
("content-type", "application/json"), ("content-type", "application/json"),
("x-arch-upstream", "api_server"),
(":authority", "api_server"),
("x-envoy-max-retries", "3"), ("x-envoy-max-retries", "3"),
(":path", "/weather"),
]), ]),
None, Some(expected_body),
None, None,
None, None,
) )