File size: 7,060 Bytes
afa0cbf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | use super::*;
use codex_http_client::HttpClientFactory;
use codex_http_client::OutboundProxyPolicy;
use pretty_assertions::assert_eq;
use serde_json::json;
use wiremock::Mock;
use wiremock::MockServer;
use wiremock::ResponseTemplate;
use wiremock::matchers::body_json;
use wiremock::matchers::method;
use wiremock::matchers::path;
#[test]
fn thread_usage_contract_uses_expected_paths_and_payload() {
let factory = HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault);
assert_eq!(
Client::new("https://example.test", factory.clone()).thread_usage_url(),
"https://example.test/api/codex/usage/thread_usage/query"
);
assert_eq!(
Client::new("https://chatgpt.com/backend-api", factory).thread_usage_url(),
"https://chatgpt.com/backend-api/wham/usage/thread_usage/query"
);
assert_eq!(
serde_json::to_value(ThreadUsageQueryRequest {
thread_ids: &["thread-123"],
})
.expect("serialize thread usage request"),
json!({ "thread_ids": ["thread-123"] })
);
}
#[tokio::test]
async fn get_thread_usage_returns_requested_thread_totals() {
let server = MockServer::start().await;
Mock::given(method("POST"))
.and(path("/api/codex/usage/thread_usage/query"))
.and(body_json(json!({ "thread_ids": ["thread-123"] })))
.respond_with(ResponseTemplate::new(/*s*/ 200).set_body_json(json!({
"threads": [{
"thread_id": "thread-123",
"estimated_usage_credits_micros": 46_000_000,
"estimated_usage_usd_micros": 1_820_000,
"groups": [{
"model": "gpt-5.4",
"reasoning_effort": "high",
"speed": "fast",
"estimated_usage_credits_micros": 46_000_000,
"net_new_input_tokens": 80,
"cached_input_tokens": 20,
"input_tokens": 100,
"output_tokens": 40,
"total_tokens": 140
}]
}]
})))
.expect(/*r*/ 1)
.mount(&server)
.await;
let client = Client::new(
server.uri(),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
);
assert_eq!(
client
.get_thread_usage("thread-123")
.await
.expect("read thread usage"),
ThreadUsage {
thread_id: "thread-123".to_string(),
estimated_usage_credits_micros: 46_000_000,
estimated_usage_usd_micros: Some(1_820_000),
groups: vec![ThreadUsageBreakdownGroup {
model: Some("gpt-5.4".to_string()),
reasoning_effort: Some("high".to_string()),
speed: Some("fast".to_string()),
estimated_usage_credits_micros: 46_000_000,
net_new_input_tokens: Some(80),
cached_input_tokens: Some(20),
input_tokens: Some(100),
output_tokens: Some(40),
total_tokens: Some(140),
}],
}
);
}
#[tokio::test]
async fn get_thread_usage_accepts_credits_without_usd_estimate() {
let server = MockServer::start().await;
Mock::given(method("POST"))
.and(path("/api/codex/usage/thread_usage/query"))
.respond_with(ResponseTemplate::new(/*s*/ 200).set_body_json(json!({
"threads": [{
"thread_id": "thread-123",
"estimated_usage_credits_micros": 46_000_000,
"estimated_usage_usd_micros": null
}]
})))
.expect(/*r*/ 1)
.mount(&server)
.await;
let client = Client::new(
server.uri(),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
);
assert_eq!(
client
.get_thread_usage("thread-123")
.await
.expect("read credits without a dollar estimate"),
ThreadUsage {
thread_id: "thread-123".to_string(),
estimated_usage_credits_micros: 46_000_000,
estimated_usage_usd_micros: None,
groups: Vec::new(),
}
);
}
#[tokio::test]
async fn get_thread_usage_rejects_totals_for_another_thread() {
let server = MockServer::start().await;
Mock::given(method("POST"))
.respond_with(ResponseTemplate::new(/*s*/ 200).set_body_json(json!({
"threads": [{
"thread_id": "another-thread",
"estimated_usage_credits_micros": 1,
"estimated_usage_usd_micros": 1
}]
})))
.mount(&server)
.await;
let client = Client::new(
server.uri(),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
);
let error = client
.get_thread_usage("thread-123")
.await
.expect_err("reject usage for a different thread");
assert!(error.to_string().contains("unexpected threads"));
}
#[tokio::test]
async fn batch_usage_rejects_invalid_requests_before_http() {
let server = MockServer::start().await;
Mock::given(method("POST"))
.respond_with(ResponseTemplate::new(/*s*/ 500))
.expect(/*r*/ 0)
.mount(&server)
.await;
let client = Client::new(
server.uri(),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
);
let too_many = (0..101)
.map(|id| format!("thread-{id}"))
.collect::<Vec<_>>();
for ids in [
Vec::new(),
vec!["duplicate", "duplicate"],
too_many.iter().map(String::as_str).collect(),
] {
let error = client.get_threads_usage(&ids).await.unwrap_err();
assert!(error.to_string().contains("1–100 distinct thread IDs"));
}
}
#[tokio::test]
async fn batch_usage_rejects_duplicate_and_unrequested_response_rows() {
for returned in [["first", "first"], ["first", "unexpected"]] {
for second_amount in [Some(1), None] {
let server = MockServer::start().await;
Mock::given(method("POST"))
.and(body_json(json!({"thread_ids": ["first", "second"]})))
.respond_with(ResponseTemplate::new(/*s*/ 200).set_body_json(json!({
"threads": returned.iter().enumerate().map(|(index, thread_id)| json!({
"thread_id": thread_id,
"estimated_usage_credits_micros": if index == 0 { Some(1) } else { second_amount }
})).collect::<Vec<_>>()
})))
.expect(/*r*/ 1)
.mount(&server)
.await;
let client = Client::new(
server.uri(),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
);
let error = client
.get_threads_usage(&["first", "second"])
.await
.unwrap_err();
assert!(error.to_string().contains("unexpected threads"));
}
}
}
|