-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpathOperationTreeProvider.test.ts
More file actions
507 lines (452 loc) · 15 KB
/
Copy pathpathOperationTreeProvider.test.ts
File metadata and controls
507 lines (452 loc) · 15 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
import * as assert from "node:assert"
import type {
AppDefinition,
RouteDefinition,
RouterDefinition,
} from "../../core/types"
import {
getAppLabel,
getRouteLabel,
getRouterLabel,
PathOperationTreeProvider,
} from "../../vscode/pathOperationTreeProvider"
import {
groupAppsByWorkspace,
mockApps,
} from "../fixtures/mockPathOperationData"
function makeRoute(method: string, path: string): RouteDefinition {
return {
method: method as RouteDefinition["method"],
path,
functionName: `${method.toLowerCase()}_handler`,
location: { filePath: "test.py", line: 1, column: 0 },
}
}
function makeRouter(
prefix: string,
opts: { tags?: string[]; filePath?: string } = {},
): RouterDefinition {
return {
name: "router",
prefix,
tags: opts.tags ?? [],
location: { filePath: opts.filePath ?? "test.py", line: 1, column: 0 },
routes: [],
children: [],
}
}
function makeApp(name: string, filePath: string): AppDefinition {
return {
name,
filePath,
workspaceFolder: "/workspace",
routes: [],
routers: [],
}
}
suite("getAppLabel", () => {
test("uses app name when not generic", () => {
assert.strictEqual(
getAppLabel(makeApp("myapi", "backend/main.py")),
"myapi",
)
})
test("uses parent dir when name is 'app'", () => {
assert.strictEqual(
getAppLabel(makeApp("app", "backend/main.py")),
"backend",
)
})
test("skips 'src' parent dir", () => {
assert.strictEqual(
getAppLabel(makeApp("app", "project/src/main.py")),
"project/src",
)
})
test("skips 'app' parent dir", () => {
assert.strictEqual(
getAppLabel(makeApp("app", "project/app/main.py")),
"project/app",
)
})
test("falls back to filename when no parent dirs", () => {
assert.strictEqual(getAppLabel(makeApp("app", "main.py")), "main")
})
})
suite("getRouterLabel", () => {
test("uses prefix as label", () => {
assert.strictEqual(getRouterLabel(makeRouter("/users"), "/"), "/users")
})
test("shows relative path under parent", () => {
assert.strictEqual(
getRouterLabel(makeRouter("/api/users"), "/api"),
"/users",
)
})
test("falls back to tag when prefix is /", () => {
assert.strictEqual(
getRouterLabel(makeRouter("/", { tags: ["users"] }), "/"),
"/users",
)
})
test("falls back to filename when no prefix or tag", () => {
assert.strictEqual(
getRouterLabel(makeRouter("/", { filePath: "src/users.py" }), "/"),
"users",
)
})
test("uses parent dir for generic filenames", () => {
assert.strictEqual(
getRouterLabel(makeRouter("/", { filePath: "src/users/router.py" }), "/"),
"users",
)
})
test("uses parent dir for 'routes.py'", () => {
assert.strictEqual(
getRouterLabel(makeRouter("/", { filePath: "src/items/routes.py" }), "/"),
"items",
)
})
})
suite("getRouteLabel", () => {
test("includes method and path", () => {
assert.strictEqual(getRouteLabel(makeRoute("GET", "/users")), "GET /users")
})
test("websocket omits method", () => {
assert.strictEqual(getRouteLabel(makeRoute("WEBSOCKET", "/ws")), "/ws")
})
})
suite("PathOperationTreeProvider", () => {
let provider: PathOperationTreeProvider
setup(() => {
provider = new PathOperationTreeProvider(mockApps)
})
test("getChildren returns apps at root level", () => {
const roots = provider.getChildren()
assert.ok(roots.length > 0, "Should have at least one app")
assert.strictEqual(roots[0].type, "app")
})
test("getChildren returns routers and/or routes for app", () => {
const roots = provider.getChildren()
const app = roots[0]
assert.strictEqual(app.type, "app")
const children = provider.getChildren(app)
const routers = children.filter((c) => c.type === "router")
const routes = children.filter((c) => c.type === "route")
// App should have at least one router or route
assert.ok(
routers.length > 0 || routes.length > 0,
"App should have routers or routes",
)
})
test("routes are sorted by method priority then path", () => {
const app = makeApp("app", "main.py")
app.routes = [
makeRoute("DELETE", "/users"),
makeRoute("GET", "/users"),
makeRoute("POST", "/items"),
makeRoute("PATCH", "/users"),
makeRoute("GET", "/items"),
makeRoute("POST", "/users"),
makeRoute("PUT", "/users"),
]
const p = new PathOperationTreeProvider([app])
const children = p.getChildren(p.getChildren()[0])
const labels = children.map((c) =>
c.type === "route" ? getRouteLabel(c.route) : "",
)
assert.deepStrictEqual(labels, [
"GET /items",
"GET /users",
"POST /items",
"POST /users",
"PUT /users",
"PATCH /users",
"DELETE /users",
])
})
test("getChildren returns routes for router", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const router = children.find((c) => c.type === "router")
assert.ok(router, "Should find a router")
if (router?.type === "router") {
const routes = provider.getChildren(router)
assert.ok(routes.length > 0, "Router should have routes")
assert.ok(
routes.every((r) => r.type === "route"),
"All children should be routes",
)
}
})
test("getChildren returns empty array for route", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const route = children.find((c) => c.type === "route")
assert.ok(route, "Should find a route")
if (route) {
const routeChildren = provider.getChildren(route)
assert.strictEqual(
routeChildren.length,
0,
"Routes should have no children",
)
}
})
test("getTreeItem returns correct label for app", () => {
const roots = provider.getChildren()
const app = roots[0]
const treeItem = provider.getTreeItem(app)
assert.ok(treeItem.label, "App should have a label")
})
test("getTreeItem returns correct label for route", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const route = children.find((c) => c.type === "route")
assert.ok(route, "Should find a route")
if (route?.type === "route") {
const treeItem = provider.getTreeItem(route)
const label = treeItem.label as string
assert.ok(
label.includes(route.route.method),
"Label should include method",
)
assert.ok(label.includes(route.route.path), "Label should include path")
}
})
test("getTreeItem sets contextValue for route", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const route = children.find((c) => c.type === "route")
assert.ok(route, "Should find a route")
if (route) {
const treeItem = provider.getTreeItem(route)
assert.strictEqual(treeItem.contextValue, "route")
}
})
test("getTreeItem sets contextValue for router", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const router = children.find((c) => c.type === "router")
assert.ok(router, "Should find a router")
if (router) {
const treeItem = provider.getTreeItem(router)
assert.strictEqual(treeItem.contextValue, "router")
}
})
test("getTreeItem sets description with route count for router", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const router = children.find((c) => c.type === "router")
assert.ok(router, "Should find a router")
if (router?.type === "router") {
const treeItem = provider.getTreeItem(router)
assert.ok(
treeItem.description?.toString().includes("routes"),
"Description should mention routes",
)
}
})
test("getTreeItem sets command for route", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const route = children.find((c) => c.type === "route")
assert.ok(route, "Should find a route")
if (route) {
const treeItem = provider.getTreeItem(route)
assert.ok(treeItem.command, "Route should have a command")
assert.strictEqual(
treeItem.command?.command,
"fastapi-vscode.goToPathOperation",
)
}
})
test("route tooltip includes file location", () => {
const roots = provider.getChildren()
const app = roots[0]
const children = provider.getChildren(app)
const route = children.find((c) => c.type === "route")
assert.ok(route, "Should find a route")
if (route?.type === "route") {
const treeItem = provider.getTreeItem(route)
assert.ok(treeItem.tooltip, "Route should have a tooltip")
// MarkdownString has a .value property with the raw content
const tooltipValue =
typeof treeItem.tooltip === "string"
? treeItem.tooltip
: (treeItem.tooltip as { value: string }).value
assert.ok(
tooltipValue.includes("File:"),
"Tooltip should include file info",
)
assert.ok(
tooltipValue.includes(route.route.location.filePath),
"Tooltip should include file path",
)
}
})
test("route tooltip strips dynamic prefix", () => {
const app = makeApp("app", "main.py")
app.routes = [
{
method: "GET",
path: "{settings.API_V1_STR}/users/{user_id}",
functionName: "get_user",
location: { filePath: "users.py", line: 10, column: 0 },
},
]
const p = new PathOperationTreeProvider([app])
const appItem = p.getChildren()[0]
const route = p.getChildren(appItem).find((c) => c.type === "route")!
const treeItem = p.getTreeItem(route)
const tooltipValue =
typeof treeItem.tooltip === "string"
? treeItem.tooltip
: (treeItem.tooltip as { value: string }).value
assert.ok(
tooltipValue.includes("GET /users/{user_id}"),
"Tooltip should show stripped path",
)
assert.ok(
!tooltipValue.includes("settings.API_V1_STR"),
"Tooltip should not include dynamic prefix",
)
})
test("getChildren returns message when no apps", () => {
const emptyProvider = new PathOperationTreeProvider([])
const roots = emptyProvider.getChildren()
assert.strictEqual(roots.length, 1, "Should return one message item")
assert.strictEqual(roots[0].type, "message")
if (roots[0].type === "message") {
assert.strictEqual(roots[0].text, "No FastAPI app found")
}
})
test("getTreeItem sets contextValue for app", () => {
const roots = provider.getChildren()
const app = roots[0]
const treeItem = provider.getTreeItem(app)
assert.strictEqual(treeItem.contextValue, "app")
})
test("getTreeItem for message type", () => {
const emptyProvider = new PathOperationTreeProvider([])
const msg = emptyProvider.getChildren()[0]
assert.strictEqual(
emptyProvider.getTreeItem(msg).label,
"No FastAPI app found",
)
})
test("getTreeItem for workspace type", () => {
const wsRoots = groupAppsByWorkspace(mockApps)
const wsProvider = new PathOperationTreeProvider(mockApps, wsRoots)
const workspace = wsProvider
.getChildren()
.find((r) => r.type === "workspace")
assert.ok(workspace)
assert.strictEqual(
wsProvider.getTreeItem(workspace!).contextValue,
"workspace",
)
})
test("getTreeItem uses parent router prefix for nested router label", () => {
const childRouter: RouterDefinition = {
name: "child",
prefix: "/api/v1/users/settings",
tags: [],
location: { filePath: "settings.py", line: 1, column: 0 },
routes: [],
children: [],
}
const parentRouter: RouterDefinition = {
name: "parent",
prefix: "/api/v1/users",
tags: [],
location: { filePath: "users.py", line: 1, column: 0 },
routes: [],
children: [childRouter],
}
const app = makeApp("app", "main.py")
app.routers = [parentRouter]
const p = new PathOperationTreeProvider([app])
assert.strictEqual(
p.getTreeItem({ type: "router", router: childRouter }).label,
"/settings",
)
})
test("toggleRouters changes router collapsible state", () => {
const router = provider
.getChildren(provider.getChildren()[0])
.find((c) => c.type === "router")
assert.ok(router)
assert.strictEqual(provider.getTreeItem(router!).collapsibleState, 1)
provider.toggleRouters()
assert.strictEqual(provider.getTreeItem(router!).collapsibleState, 2)
})
test("dispose cleans up", () => {
new PathOperationTreeProvider([]).dispose()
})
test("setApps updates apps and refreshes tree", () => {
const p = new PathOperationTreeProvider([])
assert.strictEqual(p.getChildren()[0].type, "message")
p.setApps(mockApps)
assert.strictEqual(p.getChildren()[0].type, "app")
})
test("getParent returns app for top-level router", () => {
const appItem = provider.getChildren()[0]
const router = provider
.getChildren(appItem)
.find((c) => c.type === "router")!
assert.strictEqual(provider.getParent(router)?.type, "app")
})
test("getParent returns router for route inside router", () => {
const appItem = provider.getChildren()[0]
const router = provider
.getChildren(appItem)
.find((c) => c.type === "router")!
const route = provider.getChildren(router).find((c) => c.type === "route")!
assert.strictEqual(provider.getParent(route)?.type, "router")
})
test("getParent returns app for direct route", () => {
const appItem = provider.getChildren()[0]
const route = provider.getChildren(appItem).find((c) => c.type === "route")!
assert.strictEqual(provider.getParent(route)?.type, "app")
})
test("getParent returns workspace for app in multi-root", () => {
const wsRoots = groupAppsByWorkspace(mockApps)
const wsProvider = new PathOperationTreeProvider(mockApps, wsRoots)
const workspace = wsProvider
.getChildren()
.find((r) => r.type === "workspace")!
const apps = wsProvider.getChildren(workspace)
assert.strictEqual(wsProvider.getParent(apps[0])?.type, "workspace")
})
test("getParent returns parent router for nested router", () => {
const childRouter: RouterDefinition = {
name: "child",
prefix: "/nested",
tags: [],
location: { filePath: "child.py", line: 1, column: 0 },
routes: [],
children: [],
}
const parentRouter: RouterDefinition = {
name: "parent",
prefix: "/api",
tags: [],
location: { filePath: "parent.py", line: 1, column: 0 },
routes: [],
children: [childRouter],
}
const app = makeApp("app", "main.py")
app.routers = [parentRouter]
const p = new PathOperationTreeProvider([app])
const parent = p.getParent({ type: "router", router: childRouter })
assert.strictEqual(parent?.type, "router")
})
})