-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathproviderModelFactory.test.ts
More file actions
1160 lines (1019 loc) · 35.9 KB
/
providerModelFactory.test.ts
File metadata and controls
1160 lines (1019 loc) · 35.9 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { describe, expect, it } from "bun:test";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
import { Config } from "@/node/config";
import { KNOWN_MODELS } from "@/common/constants/knownModels";
import { CODEX_ENDPOINT } from "@/common/constants/codexOAuth";
import { PROVIDER_REGISTRY } from "@/common/constants/providers";
import { resolveProviderOptionsNamespaceKey } from "@/common/utils/ai/providerOptions";
import { Ok } from "@/common/types/result";
import {
ProviderModelFactory,
buildAIProviderRequestHeaders,
classifyCopilotInitiator,
countAnthropicCacheBreakpoints,
modelCostsIncluded,
MUX_AI_PROVIDER_USER_AGENT,
normalizeCodexResponsesBody,
resolveAIProviderHeaderSource,
} from "./providerModelFactory";
import { CodexOauthService } from "./codexOauthService";
import { ProviderService } from "./providerService";
async function withTempConfig(
run: (config: Config, factory: ProviderModelFactory) => Promise<void> | void
): Promise<void> {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "mux-provider-model-factory-"));
try {
const config = new Config(tmpDir);
const providerService = new ProviderService(config);
const factory = new ProviderModelFactory(config, providerService);
await run(config, factory);
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
}
describe("normalizeCodexResponsesBody", () => {
it("enforces Codex-compatible fields, strips truncation, and lifts system prompts into instructions", () => {
const normalized = JSON.parse(
normalizeCodexResponsesBody(
JSON.stringify({
model: "gpt-5.3-codex",
input: [
{ role: "system", content: "Follow project rules." },
{
role: "developer",
content: [{ type: "text", text: "Use concise updates." }],
},
{ role: "user", content: "Ship the fix." },
{ type: "item_reference", id: "rs_123" },
],
store: true,
truncation: "server-default",
temperature: 0.2,
metadata: { ignored: true },
text: { format: { type: "json_schema", name: "result" } },
})
)
) as {
instructions: string;
input: Array<Record<string, unknown>>;
metadata?: unknown;
store: boolean;
temperature: number;
text: unknown;
truncation?: unknown;
};
expect(normalized.store).toBe(false);
expect(normalized.truncation).toBeUndefined();
expect(normalized.temperature).toBe(0.2);
expect(normalized.text).toEqual({ format: { type: "json_schema", name: "result" } });
expect(normalized.metadata).toBeUndefined();
expect(normalized.instructions).toBe("Follow project rules.\n\nUse concise updates.");
expect(normalized.input).toEqual([{ role: "user", content: "Ship the fix." }]);
});
it("strips explicit truncation because the Codex endpoint rejects it", () => {
const normalized = JSON.parse(
normalizeCodexResponsesBody(
JSON.stringify({
model: "gpt-5.3-codex",
input: [{ role: "user", content: "Hello" }],
truncation: "auto",
})
)
) as { truncation?: unknown; store: boolean };
expect(normalized.truncation).toBeUndefined();
expect(normalized.store).toBe(false);
});
});
describe("ProviderModelFactory.createModel", () => {
it("returns provider_disabled when a non-gateway provider is disabled", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
});
const result = await factory.createModel("openai:gpt-5");
expect(result.success).toBe(false);
if (!result.success) {
expect(result.error).toEqual({
type: "provider_disabled",
provider: "openai",
});
}
});
});
it("does not return provider_disabled when provider is enabled and credentials exist", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
},
});
const result = await factory.createModel("openai:gpt-5");
if (!result.success) {
expect(result.error.type).not.toBe("provider_disabled");
}
});
});
it("routes allowlisted models through gateway automatically", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["mux-gateway", "direct"],
});
const result = await factory.createModel("openai:gpt-5");
if (!result.success) {
expect(result.error.type).not.toBe("provider_disabled");
}
});
});
});
describe("ProviderModelFactory GitHub Copilot", () => {
it("creates routed gpt-5.4 models with the chat completions API mode", async () => {
await withTempConfig(async (config, factory) => {
const originalOpenAIRegistry = PROVIDER_REGISTRY.openai;
let capturedProviderName: string | undefined;
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: ["gpt-5.4"],
},
});
PROVIDER_REGISTRY.openai = async () => {
const module = await originalOpenAIRegistry();
return {
...module,
createOpenAI: (options) => {
capturedProviderName = options?.name;
return module.createOpenAI(options);
},
};
};
try {
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["github-copilot", "direct"],
});
const result = await factory.resolveAndCreateModel("openai:gpt-5.4", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(capturedProviderName).toBe(
resolveProviderOptionsNamespaceKey("openai", "github-copilot")
);
expect((result.data.model as { provider?: unknown }).provider).toBe("github-copilot.chat");
expect(result.data.routeProvider).toBe("github-copilot");
expect(result.data.effectiveModelString).toBe("github-copilot:gpt-5.4");
expect(result.data.model.constructor.name).toBe("OpenAIChatLanguageModel");
} finally {
PROVIDER_REGISTRY.openai = originalOpenAIRegistry;
}
});
});
it("rewrites Claude model ids back to Copilot's dot form before creating chat models", async () => {
await withTempConfig(async (config, factory) => {
const originalOpenAIRegistry = PROVIDER_REGISTRY.openai;
let capturedModelId: string | undefined;
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: ["claude-opus-4.6"],
},
});
PROVIDER_REGISTRY.openai = async () => {
const module = await originalOpenAIRegistry();
return {
...module,
createOpenAI: (options) => {
const provider = module.createOpenAI(options);
return Object.assign(
((requestedModelId: Parameters<typeof provider>[0]) =>
provider(requestedModelId)) as typeof provider,
provider,
{
chat(requestedModelId: Parameters<typeof provider.chat>[0]) {
capturedModelId = requestedModelId;
return provider.chat(requestedModelId);
},
}
);
},
};
};
try {
const result = await factory.createModel("github-copilot:claude-opus-4-6");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(capturedModelId).toBe("claude-opus-4.6");
expect((result.data as { provider?: unknown }).provider).toBe("github-copilot.chat");
} finally {
PROVIDER_REGISTRY.openai = originalOpenAIRegistry;
}
});
});
it("routes Codex models through the Copilot Responses API path", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: ["gpt-5.3-codex"],
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["github-copilot", "direct"],
});
const result = await factory.resolveAndCreateModel("openai:gpt-5.3-codex", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect((result.data.model as { provider?: unknown }).provider).toBe(
"github-copilot.responses"
);
expect(result.data.routeProvider).toBe("github-copilot");
expect(result.data.effectiveModelString).toBe("github-copilot:gpt-5.3-codex");
expect(result.data.model.constructor.name).toBe("CopilotResponsesLanguageModel");
});
});
it("normalizes Request bodies for the Codex OAuth responses endpoint", async () => {
await withTempConfig(async (config, factory) => {
const originalOpenAIRegistry = PROVIDER_REGISTRY.openai;
const requests: Array<{
input: Parameters<typeof fetch>[0];
init?: Parameters<typeof fetch>[1];
}> = [];
let capturedFetch: typeof fetch | undefined;
const auth = {
type: "oauth" as const,
access: "test-access-token",
refresh: "test-refresh-token",
expires: Date.now() + 60_000,
accountId: "test-account-id",
};
const baseFetch = (
input: Parameters<typeof fetch>[0],
init?: Parameters<typeof fetch>[1]
) => {
requests.push({ input, init });
return Promise.resolve(
new Response(
JSON.stringify({
id: "resp_test",
created_at: 0,
model: "gpt-5.3-codex",
output: [
{
type: "message",
role: "assistant",
id: "msg_test",
content: [{ type: "output_text", text: "ok", annotations: [] }],
},
],
usage: {
input_tokens: 1,
output_tokens: 1,
},
}),
{
headers: {
"Content-Type": "application/json",
},
}
)
);
};
config.loadProvidersConfig = () => ({
openai: {
codexOauth: auth,
fetch: baseFetch,
},
});
const codexOauthService = Object.create(CodexOauthService.prototype) as CodexOauthService;
codexOauthService.getValidAuth = () => Promise.resolve(Ok(auth));
factory.codexOauthService = codexOauthService;
PROVIDER_REGISTRY.openai = async () => {
const module = await originalOpenAIRegistry();
return {
...module,
createOpenAI: (options) => {
capturedFetch = options?.fetch;
return module.createOpenAI(options);
},
};
};
try {
const result = await factory.createModel("openai:gpt-5.3-codex");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
if (!capturedFetch) {
throw new Error("Expected OpenAI fetch wrapper to be captured");
}
const originalBody = JSON.stringify({
model: "gpt-5.3-codex",
input: [
{ role: "user", content: [{ type: "input_text", text: "Ship the fix." }] },
{ type: "item_reference", id: "rs_123" },
],
store: true,
truncation: "server-default",
metadata: { ignored: true },
});
const request = new Request("https://api.openai.com/v1/responses", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer sdk-key",
},
body: originalBody,
});
await capturedFetch(request.url, {
method: request.method,
headers: request.headers,
body: originalBody,
});
expect(requests).toHaveLength(1);
expect(requests[0]?.input).toBe(CODEX_ENDPOINT);
expect(requests[0]?.init?.body).toBe(normalizeCodexResponsesBody(originalBody));
const normalizedBody = JSON.parse(
(requests[0]?.init?.body as string | undefined) ?? "{}"
) as {
truncation?: unknown;
};
expect(normalizedBody.truncation).toBeUndefined();
const headers = new Headers(requests[0]?.init?.headers);
expect(headers.get("authorization")).toBe("Bearer test-access-token");
expect(headers.get("chatgpt-account-id")).toBe("test-account-id");
expect(headers.get("content-type")).toBe("application/json");
} finally {
PROVIDER_REGISTRY.openai = originalOpenAIRegistry;
}
});
});
it("does not force store=false for Copilot Responses requests", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: ["gpt-5.3-codex"],
},
});
const result = await factory.createModel("github-copilot:gpt-5.3-codex");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect((result.data as { provider?: unknown }).provider).toBe("github-copilot.responses");
expect(result.data.constructor.name).toBe("CopilotResponsesLanguageModel");
});
});
it("returns api_key_not_found before checking a stale Copilot model catalog", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
models: ["gpt-4.1"],
},
});
const result = await factory.createModel("github-copilot:gpt-5.4");
expect(result.success).toBe(false);
if (!result.success) {
expect(result.error).toEqual({
type: "api_key_not_found",
provider: "github-copilot",
});
}
});
});
it("fails when the requested model is missing from the stored Copilot model list", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: ["gpt-4.1"],
},
});
const result = await factory.createModel("github-copilot:gpt-5.4");
expect(result.success).toBe(false);
if (!result.success) {
expect(result.error).toEqual({
type: "model_not_available",
provider: "github-copilot",
modelId: "gpt-5.4",
});
}
});
});
it("allows Copilot model creation when the stored model list is malformed", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: "not-an-array",
},
} as unknown as Parameters<Config["saveProvidersConfig"]>[0]);
const result = await factory.createModel("github-copilot:gpt-5.4");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.constructor.name).toBe("OpenAIChatLanguageModel");
});
});
it("allows Copilot model creation when the stored model list contains malformed entries", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: [" ", null],
},
} as unknown as Parameters<Config["saveProvidersConfig"]>[0]);
const result = await factory.createModel("github-copilot:gpt-5.4");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.constructor.name).toBe("OpenAIChatLanguageModel");
});
});
it("allows Copilot model creation when no stored model list exists yet", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"github-copilot": {
apiKey: "copilot-token",
models: [],
},
});
const result = await factory.createModel("github-copilot:gpt-5.4");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.constructor.name).toBe("OpenAIChatLanguageModel");
});
});
});
describe("ProviderModelFactory modelCostsIncluded", () => {
it("marks gpt-5.3-codex as subscription-covered when routed through Codex OAuth", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
codexOauth: {
type: "oauth",
access: "test-access-token",
refresh: "test-refresh-token",
expires: Date.now() + 60_000,
accountId: "test-account-id",
},
},
});
const result = await factory.createModel(KNOWN_MODELS.GPT_53_CODEX.id);
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(modelCostsIncluded(result.data)).toBe(true);
});
});
it("does not mark gpt-5.3-codex as subscription-covered when routed through API key", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
},
});
const result = await factory.createModel(KNOWN_MODELS.GPT_53_CODEX.id);
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(modelCostsIncluded(result.data)).toBe(false);
});
});
});
describe("ProviderModelFactory routing", () => {
it("honors non-mux gateway routes end-to-end", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
openrouter: {
apiKey: "or-test",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["openrouter", "direct"],
});
const resolved = factory.resolveGatewayModelString("openai:gpt-5", "openai:gpt-5");
expect(resolved).toBe("openrouter:openai/gpt-5");
const created = await factory.createModel("openai:gpt-5");
expect(created.success).toBe(true);
const result = await factory.resolveAndCreateModel("openai:gpt-5", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openrouter:openai/gpt-5");
expect(result.data.routeProvider).toBe("openrouter");
expect(result.data.routedThroughGateway).toBe(false);
});
});
it("passes gateway model accessibility to routing by skipping inaccessible Copilot models", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
},
"github-copilot": {
apiKey: "copilot-token",
models: ["gpt-4.1"],
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["github-copilot", "direct"],
});
const result = await factory.resolveAndCreateModel("openai:gpt-5.4", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openai:gpt-5.4");
expect(result.data.routeProvider).toBe("openai");
expect(result.data.routedThroughGateway).toBe(false);
});
});
it("does not treat custom gateway model entries as an exhaustive routed catalog", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openrouter: {
apiKey: "or-test",
models: ["team-only-model"],
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["openrouter", "direct"],
});
const result = await factory.resolveAndCreateModel("openai:gpt-5", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openrouter:openai/gpt-5");
expect(result.data.routeProvider).toBe("openrouter");
expect(result.data.routedThroughGateway).toBe(false);
});
});
it("routes Anthropic models through Bedrock when Bedrock is configured and prioritized", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
anthropic: { apiKey: "ant-test", enabled: false },
bedrock: { region: "us-east-1" },
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["bedrock", "direct"],
});
const result = await factory.resolveAndCreateModel("anthropic:claude-sonnet-4-5", "off");
expect(result.success).toBe(true);
if (!result.success) return;
expect(result.data.effectiveModelString).toBe("bedrock:anthropic.claude-sonnet-4-5");
expect(result.data.routeProvider).toBe("bedrock");
});
});
it("skips disabled gateway providers even when credentials exist", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
openrouter: {
apiKey: "or-test",
enabled: false,
},
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["openrouter", "mux-gateway", "direct"],
});
const resolved = factory.resolveGatewayModelString("openai:gpt-5", "openai:gpt-5");
expect(resolved).toBe("mux-gateway:openai/gpt-5");
});
});
it("falls back deterministically to the next configured route", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
openrouter: {
apiKey: "or-test",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["mux-gateway", "openrouter", "direct"],
});
const resolved = factory.resolveGatewayModelString("openai:gpt-5", "openai:gpt-5");
expect(resolved).toBe("openrouter:openai/gpt-5");
const created = await factory.createModel("openai:gpt-5");
expect(created.success).toBe(true);
});
});
it("preserves explicit OpenRouter model strings when OpenRouter is configured", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
openrouter: {
apiKey: "or-test",
},
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["mux-gateway", "direct"],
});
const resolved = factory.resolveGatewayModelString(
"openrouter:openai/gpt-5",
"openai:gpt-5",
"openrouter"
);
expect(resolved).toBe("openrouter:openai/gpt-5");
const result = await factory.resolveAndCreateModel("openrouter:openai/gpt-5", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openrouter:openai/gpt-5");
expect(result.data.routeProvider).toBe("openrouter");
expect(result.data.routedThroughGateway).toBe(false);
});
});
it("falls back from explicit OpenRouter model strings when OpenRouter is unavailable", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
enabled: false,
},
openrouter: {
apiKey: "or-test",
enabled: false,
},
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["openrouter", "mux-gateway", "direct"],
});
const resolved = factory.resolveGatewayModelString(
"openrouter:openai/gpt-5",
"openai:gpt-5",
"openrouter"
);
expect(resolved).toBe("mux-gateway:openai/gpt-5");
const result = await factory.resolveAndCreateModel("openrouter:openai/gpt-5", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("mux-gateway:openai/gpt-5");
expect(result.data.routeProvider).toBe("mux-gateway");
expect(result.data.routedThroughGateway).toBe(true);
});
});
it("honors explicit mux-gateway prefixes for compatibility", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["direct"],
});
const resolved = factory.resolveGatewayModelString(
"mux-gateway:anthropic/claude-sonnet-4-6",
KNOWN_MODELS.SONNET.id,
"mux-gateway"
);
expect(resolved).toBe("mux-gateway:anthropic/claude-sonnet-4-6");
const result = await factory.resolveAndCreateModel(
"mux-gateway:anthropic/claude-sonnet-4-6",
"off"
);
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("mux-gateway:anthropic/claude-sonnet-4-6");
expect(result.data.routeProvider).toBe("mux-gateway");
expect(result.data.routedThroughGateway).toBe(true);
});
});
it("treats OpenAI as available for routing when only Codex OAuth is configured", async () => {
// Temporarily remove OPENAI_API_KEY so the test only succeeds via Codex OAuth,
// not by falling through to an env-var credential path.
const savedKey = process.env.OPENAI_API_KEY;
delete process.env.OPENAI_API_KEY;
try {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
// No apiKey — only Codex OAuth credentials.
codexOauth: {
type: "oauth",
access: "test-access-token",
refresh: "test-refresh-token",
expires: Date.now() + 60_000,
},
},
openrouter: {
apiKey: "or-test",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
routePriority: ["direct", "openrouter"],
});
// Direct OpenAI should win because Codex OAuth makes it available for routing.
// Use a model from CODEX_OAUTH_ALLOWED_MODELS so createModel can route through OAuth.
const result = await factory.resolveAndCreateModel("openai:gpt-5.2", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openai:gpt-5.2");
expect(result.data.routeProvider).toBe("openai");
expect(result.data.routedThroughGateway).toBe(false);
});
} finally {
if (savedKey !== undefined) {
process.env.OPENAI_API_KEY = savedKey;
}
}
});
it("leaves direct-provider model strings unchanged when direct routing wins", async () => {
await withTempConfig(async (config, factory) => {
config.saveProvidersConfig({
openai: {
apiKey: "sk-test",
},
openrouter: {
apiKey: "or-test",
},
"mux-gateway": {
couponCode: "test-coupon",
},
});
const projectConfig = config.loadConfigOrDefault();
await config.saveConfig({
...projectConfig,
muxGatewayEnabled: true,
routePriority: ["direct", "mux-gateway", "openrouter"],
});
const result = await factory.resolveAndCreateModel("openai:gpt-5", "off");
expect(result.success).toBe(true);
if (!result.success) {
return;
}
expect(result.data.effectiveModelString).toBe("openai:gpt-5");
expect(result.data.canonicalModelString).toBe("openai:gpt-5");
expect(result.data.routeProvider).toBe("openai");
expect(result.data.routedThroughGateway).toBe(false);
});
});
});
describe("classifyCopilotInitiator", () => {
it("returns 'user' when last message role is user", () => {
const body = JSON.stringify({ messages: [{ role: "user", content: "hello" }] });
expect(classifyCopilotInitiator(body)).toBe("user");
});
it("returns 'agent' when last message role is tool", () => {
const body = JSON.stringify({
messages: [
{ role: "user", content: "hello" },
{
role: "assistant",
content: "",
tool_calls: [{ id: "1", type: "function", function: { name: "test", arguments: "{}" } }],
},
{ role: "tool", tool_call_id: "1", content: "result" },
],
});
expect(classifyCopilotInitiator(body)).toBe("agent");
});
it("returns 'agent' when last message role is assistant", () => {
const body = JSON.stringify({
messages: [
{ role: "user", content: "hi" },
{ role: "assistant", content: "..." },
],
});
expect(classifyCopilotInitiator(body)).toBe("agent");
});
it("returns 'user' when the last Responses input item is a user turn", () => {
const body = JSON.stringify({
input: [{ role: "user", content: [{ type: "input_text", text: "hello" }] }],
});
expect(classifyCopilotInitiator(body)).toBe("user");
});
it("returns 'agent' when the last Responses input item is a stored tool reference", () => {
const body = JSON.stringify({
input: [
{ role: "user", content: [{ type: "input_text", text: "hello" }] },
{ type: "item_reference", id: "fc_123" },
],
});
expect(classifyCopilotInitiator(body)).toBe("agent");
});