Files
EJClaw/src/provider-retry.test.ts
2026-03-31 04:00:39 +09:00

124 lines
3.3 KiB
TypeScript

import { beforeEach, describe, expect, it, vi } from 'vitest';
vi.mock('./logger.js', () => ({
logger: {
debug: vi.fn(),
info: vi.fn(),
warn: vi.fn(),
error: vi.fn(),
},
}));
vi.mock('./token-rotation.js', () => ({
rotateToken: vi.fn(() => false),
getTokenCount: vi.fn(() => 1),
markTokenHealthy: vi.fn(),
}));
import { runClaudeRotationLoop } from './provider-retry.js';
import {
getTokenCount,
markTokenHealthy,
rotateToken,
} from './token-rotation.js';
describe('runClaudeRotationLoop', () => {
beforeEach(() => {
vi.clearAllMocks();
vi.mocked(getTokenCount).mockReturnValue(1);
vi.mocked(rotateToken).mockReturnValue(false);
});
it('rotates and succeeds after an org-access-denied trigger', async () => {
vi.mocked(getTokenCount).mockReturnValue(2);
vi.mocked(rotateToken).mockReturnValueOnce(true);
const outcome = await runClaudeRotationLoop(
{ reason: 'org-access-denied' },
async () => ({
output: { status: 'success', result: 'ok' },
sawOutput: true,
}),
{ runId: 'rotate-org-access' },
);
expect(outcome).toEqual({ type: 'success', sawOutput: true });
expect(rotateToken).toHaveBeenCalledTimes(1);
expect(markTokenHealthy).toHaveBeenCalledTimes(1);
});
it('returns error when all Claude tokens are exhausted', async () => {
vi.mocked(getTokenCount).mockReturnValue(2);
const outcome = await runClaudeRotationLoop(
{ reason: 'org-access-denied' },
async () => ({
output: { status: 'success', result: 'should not run' },
sawOutput: true,
}),
{ runId: 'no-fallback-org-access' },
);
expect(outcome).toEqual({
type: 'error',
trigger: { reason: 'org-access-denied' },
});
});
it('returns error with success-null-result trigger after rotation', async () => {
vi.mocked(getTokenCount).mockReturnValue(2);
vi.mocked(rotateToken).mockReturnValueOnce(true);
const outcome = await runClaudeRotationLoop(
{ reason: '429' },
async () => ({
output: { status: 'success', result: null },
sawOutput: false,
sawSuccessNullResult: true,
}),
{ runId: 'success-null-result' },
);
expect(outcome).toEqual({
type: 'error',
trigger: { reason: 'success-null-result' },
});
});
it('uses structured public output text as the next rotation message', async () => {
vi.mocked(getTokenCount).mockReturnValue(2);
vi.mocked(rotateToken).mockReturnValueOnce(true).mockReturnValueOnce(false);
let attempts = 0;
const outcome = await runClaudeRotationLoop(
{ reason: '429' },
async () => {
attempts += 1;
if (attempts === 1) {
return {
output: {
status: 'success',
result: null,
output: { visibility: 'public', text: 'retry with next token' },
},
sawOutput: false,
streamedTriggerReason: { reason: 'usage-exhausted' },
};
}
return {
output: { status: 'success', result: 'ok' },
sawOutput: true,
};
},
{ runId: 'structured-rotation-message' },
);
expect(outcome).toEqual({
type: 'error',
trigger: { reason: 'usage-exhausted' },
});
expect(rotateToken).toHaveBeenNthCalledWith(2, 'retry with next token');
});
});