139 lines
4.4 KiB
C#
139 lines
4.4 KiB
C#
namespace ClaudeDo.Worker.Tests.Usage.TokenTracker;
|
|
|
|
public static class TokenTrackerFixtures
|
|
{
|
|
/// <summary>Session id whose hash is the fixture's first ClaudeDo session.</summary>
|
|
public const string ClaudeDoSessionIdA = "77470328-94f7-49d3-b378-a562d1501b5f";
|
|
|
|
/// <summary>Session id whose hash is the fixture's second ClaudeDo session.</summary>
|
|
public const string ClaudeDoSessionIdB = "20ebc1bc-3e6a-4c09-a4b3-19472dffa841";
|
|
|
|
/// <summary>Shape copied from a real `tokentracker sessions --format json` run
|
|
/// (v0.88.4, 2026-08-24), trimmed to four rows and stripped of everything we don't read.</summary>
|
|
public const string SessionsJson = """
|
|
{
|
|
"available": true,
|
|
"sessions": [
|
|
{
|
|
"version": 11,
|
|
"session_hash": "b24babcbf2b615730459773f",
|
|
"source": "claude",
|
|
"project_key": "ClaudeDo",
|
|
"model": "claude-opus-5",
|
|
"started_at": "2026-08-20T10:00:00.000Z",
|
|
"ended_at": "2026-08-20T10:10:00.000Z",
|
|
"turns": 4,
|
|
"edit_turns": 2,
|
|
"retry_turns": 1,
|
|
"tokens": {
|
|
"input_tokens": 100,
|
|
"cached_input_tokens": 900,
|
|
"cache_creation_input_tokens": 50,
|
|
"output_tokens": 400,
|
|
"reasoning_output_tokens": 0,
|
|
"total_tokens": 1450
|
|
},
|
|
"total_tokens": 1450,
|
|
"cost_usd": 2.5,
|
|
"productive": true,
|
|
"first_pass": true,
|
|
"one_shot": true
|
|
},
|
|
{
|
|
"version": 11,
|
|
"session_hash": "3e2a08fe8f2b941817fb554f",
|
|
"source": "claude",
|
|
"project_key": "02f6746f-d67b-4217-a581-f2f911f6ff0d",
|
|
"model": "claude-opus-5",
|
|
"started_at": "2026-08-20T12:00:00.000Z",
|
|
"ended_at": "2026-08-20T12:30:00.000Z",
|
|
"turns": 6,
|
|
"edit_turns": 0,
|
|
"retry_turns": 2,
|
|
"tokens": {
|
|
"input_tokens": 10,
|
|
"cached_input_tokens": 90,
|
|
"cache_creation_input_tokens": 5,
|
|
"output_tokens": 40,
|
|
"reasoning_output_tokens": 0,
|
|
"total_tokens": 145
|
|
},
|
|
"total_tokens": 145,
|
|
"cost_usd": 1.0,
|
|
"productive": false,
|
|
"first_pass": false,
|
|
"one_shot": false
|
|
},
|
|
{
|
|
"version": 11,
|
|
"session_hash": "ffffffffffffffffffffffff",
|
|
"source": "claude",
|
|
"project_key": "SomeOtherRepo",
|
|
"model": "claude-sonnet-5",
|
|
"started_at": "2026-08-20T14:00:00.000Z",
|
|
"ended_at": "2026-08-20T14:05:00.000Z",
|
|
"turns": 2,
|
|
"edit_turns": 1,
|
|
"retry_turns": 0,
|
|
"tokens": {
|
|
"input_tokens": 7,
|
|
"cached_input_tokens": 3,
|
|
"cache_creation_input_tokens": 1,
|
|
"output_tokens": 9,
|
|
"reasoning_output_tokens": 0,
|
|
"total_tokens": 20
|
|
},
|
|
"total_tokens": 20,
|
|
"cost_usd": 0.25,
|
|
"productive": true,
|
|
"first_pass": true,
|
|
"one_shot": true
|
|
},
|
|
{
|
|
"version": 11,
|
|
"session_hash": "aaaaaaaaaaaaaaaaaaaaaaaa",
|
|
"source": "claude",
|
|
"project_key": "ClaudeDo",
|
|
"model": "claude-opus-5",
|
|
"started_at": "2026-08-25T10:00:00.000Z",
|
|
"ended_at": "2026-08-25T10:20:00.000Z",
|
|
"turns": 3,
|
|
"edit_turns": 1,
|
|
"retry_turns": 0,
|
|
"tokens": {
|
|
"input_tokens": 1000,
|
|
"cached_input_tokens": 2000,
|
|
"cache_creation_input_tokens": 300,
|
|
"output_tokens": 4000,
|
|
"reasoning_output_tokens": 0,
|
|
"total_tokens": 7300
|
|
},
|
|
"total_tokens": 7300,
|
|
"cost_usd": 99.0,
|
|
"productive": true,
|
|
"first_pass": true,
|
|
"one_shot": true
|
|
}
|
|
]
|
|
}
|
|
""";
|
|
|
|
/// <summary>Same as <see cref="SessionsJson"/> but with a future format version.</summary>
|
|
public const string UnsupportedVersionJson = """
|
|
{
|
|
"available": true,
|
|
"sessions": [
|
|
{
|
|
"version": 99,
|
|
"session_hash": "b24babcbf2b615730459773f",
|
|
"source": "claude",
|
|
"model": "claude-opus-5",
|
|
"started_at": "2026-08-20T10:00:00.000Z",
|
|
"tokens": { "input_tokens": 1, "output_tokens": 2 },
|
|
"cost_usd": 0.1
|
|
}
|
|
]
|
|
}
|
|
""";
|
|
}
|