This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathProfileValidator.spec.ts
More file actions
304 lines (263 loc) · 8.07 KB
/
Copy pathProfileValidator.spec.ts
File metadata and controls
304 lines (263 loc) · 8.07 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
// npx vitest run src/shared/__tests__/ProfileValidator.spec.ts
import type { ProviderSettings, OrganizationAllowList } from "@roo-code/types"
import { ProfileValidator } from "../ProfileValidator"
describe("ProfileValidator", () => {
describe("isProfileAllowed", () => {
it("should allow any profile when allowAll is true", () => {
const allowList: OrganizationAllowList = {
allowAll: true,
providers: {},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should reject profiles without an apiProvider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: true },
},
}
const profile: Partial<ProviderSettings> = {}
expect(ProfileValidator.isProfileAllowed(profile as ProviderSettings, allowList)).toBe(false)
})
it("should reject profiles with provider not in allow list", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
anthropic: { allowAll: true },
gemini: { allowAll: false, models: ["gemini-pro"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
it("should allow providers with allowAll=true regardless of model", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: true },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "any-model-id",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should reject if provider exists but model ID is missing", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: false, models: ["gpt-4"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
it("should allow if model is in the allowed models list", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: false, models: ["gpt-3.5-turbo", "gpt-4"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should reject if model is not in the allowed models list", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: false, models: ["gpt-3.5-turbo"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
it("should handle undefined models array in provider config", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: false },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
it("should extract openAiModelId for openai provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openai: { allowAll: false, models: ["gpt-4"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract apiModelId for anthropic provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
anthropic: { allowAll: false, models: ["claude-3-opus"] },
},
}
const profile: ProviderSettings = {
apiProvider: "anthropic",
apiModelId: "claude-3-opus",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract ollamaModelId for ollama provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
ollama: { allowAll: false, models: ["llama3"] },
},
}
const profile: ProviderSettings = {
apiProvider: "ollama",
ollamaModelId: "llama3",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
// Test specific providers that use apiModelId
const apiModelProviders = [
"abliteration",
"anthropic",
"openai-native",
"bedrock",
"vertex",
"gemini",
"mistral",
"deepseek",
"xai",
"sambanova",
"fireworks",
]
apiModelProviders.forEach((provider) => {
it(`should extract apiModelId for ${provider} provider`, () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
[provider]: { allowAll: false, models: ["test-model"] },
},
}
const profile: ProviderSettings = {
apiProvider: provider as any, // Type assertion needed here
apiModelId: "test-model",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
})
// Test for litellm provider which uses litellmModelId
it(`should extract litellmModelId for litellm provider`, () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
litellm: { allowAll: false, models: ["test-model"] },
},
}
const profile: ProviderSettings = {
apiProvider: "litellm" as any,
litellmModelId: "test-model",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract vsCodeLmModelSelector.id for vscode-lm provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
"vscode-lm": { allowAll: false, models: ["copilot-gpt-3.5"] },
},
}
const profile: ProviderSettings = {
apiProvider: "vscode-lm",
vsCodeLmModelSelector: { id: "copilot-gpt-3.5" },
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract lmStudioModelId for lmstudio provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
lmstudio: { allowAll: false, models: ["lmstudio-model"] },
},
}
const profile: ProviderSettings = {
apiProvider: "lmstudio",
lmStudioModelId: "lmstudio-model",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract openRouterModelId for openrouter provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
openrouter: { allowAll: false, models: ["openrouter-model"] },
},
}
const profile: ProviderSettings = {
apiProvider: "openrouter",
openRouterModelId: "openrouter-model",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should extract requestyModelId for requesty provider", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
requesty: { allowAll: false, models: ["requesty-model"] },
},
}
const profile: ProviderSettings = {
apiProvider: "requesty",
requestyModelId: "requesty-model",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(true)
})
it("should handle providers with undefined models list gracefully", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {
"fake-ai": { allowAll: false },
},
}
const profile: ProviderSettings = {
apiProvider: "fake-ai",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
it("should handle empty providers object", () => {
const allowList: OrganizationAllowList = {
allowAll: false,
providers: {},
}
const profile: ProviderSettings = {
apiProvider: "openai",
openAiModelId: "gpt-4",
}
expect(ProfileValidator.isProfileAllowed(profile, allowList)).toBe(false)
})
})
})