-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-report.json
More file actions
280 lines (280 loc) · 6.67 KB
/
Copy pathsample-report.json
File metadata and controls
280 lines (280 loc) · 6.67 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
{
"tool": "CodeDecay",
"version": "0.1.5",
"generatedAt": "2026-06-22T18:13:09.175Z",
"summary": {
"mergeRiskScore": 100,
"decayScore": 62,
"riskLevel": "high",
"findingCounts": {
"low": 0,
"medium": 4,
"high": 5
}
},
"changedFiles": [
{
"path": "app/dashboard/page.tsx",
"status": "modified",
"additions": 1,
"deletions": 1,
"addedLines": [
{
"line": 2,
"content": " return <main>Admin dashboard</main>;"
}
]
},
{
"path": "prisma/schema.prisma",
"status": "modified",
"additions": 3,
"deletions": 1,
"addedLines": [
{
"line": 2,
"content": " id String @id"
},
{
"line": 3,
"content": " email String @unique"
},
{
"line": 4,
"content": " role String"
}
]
},
{
"path": "src/api/users.ts",
"status": "modified",
"additions": 5,
"deletions": 1,
"addedLines": [
{
"line": 1,
"content": "export function listUsers(input: any) {"
},
{
"line": 2,
"content": " if (input.includeAdmins) {"
},
{
"line": 3,
"content": " return [{ id: \"admin_1\", role: \"admin\" }];"
},
{
"line": 4,
"content": " }"
},
{
"line": 5,
"content": ""
}
]
},
{
"path": "src/auth/session.ts",
"status": "modified",
"additions": 6,
"deletions": 1,
"addedLines": [
{
"line": 2,
"content": " try {"
},
{
"line": 3,
"content": " if (!token) return null;"
},
{
"line": 4,
"content": " return token.startsWith(\"session_\");"
},
{
"line": 5,
"content": " } catch {}"
},
{
"line": 6,
"content": ""
},
{
"line": 7,
"content": " return null;"
}
]
},
{
"path": "vite.config.ts",
"status": "modified",
"additions": 4,
"deletions": 1,
"addedLines": [
{
"line": 1,
"content": "export default {"
},
{
"line": 2,
"content": " plugins: [],"
},
{
"line": 3,
"content": " server: { host: \"0.0.0.0\" }"
},
{
"line": 4,
"content": "};"
}
]
}
],
"impactedAreas": [
{
"name": "API surface",
"kind": "api",
"risk": "high",
"files": [
"src/api/users.ts"
]
},
{
"name": "Authentication and authorization",
"kind": "auth",
"risk": "high",
"files": [
"src/auth/session.ts"
]
},
{
"name": "Database and schema",
"kind": "database",
"risk": "high",
"files": [
"prisma/schema.prisma"
]
},
{
"name": "Build and runtime configuration",
"kind": "config",
"risk": "medium",
"files": [
"vite.config.ts"
]
},
{
"name": "UI route",
"kind": "ui",
"risk": "medium",
"files": [
"app/dashboard/page.tsx"
]
}
],
"impactedRoutes": [
{
"framework": "nextjs",
"kind": "ui-route",
"route": "/dashboard",
"methods": [],
"files": [
"app/dashboard/page.tsx"
],
"risk": "medium",
"reasons": [
"Next.js App Router UI route changed"
],
"recommendedTests": [
"Add or run tests covering app/dashboard/page.tsx"
]
}
],
"findings": [
{
"ruleId": "missing-nearby-tests",
"title": "Risky source changes without changed tests",
"description": "This PR changes risky source areas but does not change any obvious test files.",
"severity": "high",
"category": "coverage",
"file": "app/dashboard/page.tsx",
"line": 2
},
{
"ruleId": "risky-api-change",
"title": "Api area changed",
"description": "src/api/users.ts touches a api area and should be reviewed for regression impact.",
"severity": "high",
"category": "regression",
"file": "src/api/users.ts",
"line": 1
},
{
"ruleId": "risky-auth-change",
"title": "Auth area changed",
"description": "src/auth/session.ts touches a auth area and should be reviewed for regression impact.",
"severity": "high",
"category": "regression",
"file": "src/auth/session.ts",
"line": 2
},
{
"ruleId": "risky-database-change",
"title": "Database area changed",
"description": "prisma/schema.prisma touches a database area and should be reviewed for regression impact.",
"severity": "high",
"category": "regression",
"file": "prisma/schema.prisma",
"line": 2
},
{
"ruleId": "silent-failure",
"title": "Potential silent failure path",
"description": "src/auth/session.ts adds code that can hide type, lint, or runtime failures.",
"severity": "high",
"category": "decay",
"file": "src/auth/session.ts",
"line": 5
},
{
"ruleId": "broad-unrelated-change",
"title": "Broad unrelated change set",
"description": "This PR changes 5 files across 4 top-level areas and 5 risk categories.",
"severity": "medium",
"category": "scope"
},
{
"ruleId": "risky-config-change",
"title": "Config area changed",
"description": "vite.config.ts touches a config area and should be reviewed for regression impact.",
"severity": "medium",
"category": "configuration",
"file": "vite.config.ts",
"line": 1
},
{
"ruleId": "risky-ui-change",
"title": "Ui area changed",
"description": "app/dashboard/page.tsx touches a ui area and should be reviewed for regression impact.",
"severity": "medium",
"category": "regression",
"file": "app/dashboard/page.tsx",
"line": 2
},
{
"ruleId": "typescript-any",
"title": "New unchecked TypeScript escape hatch",
"description": "src/api/users.ts adds code that can hide type, lint, or runtime failures.",
"severity": "medium",
"category": "decay",
"file": "src/api/users.ts",
"line": 1
}
],
"recommendedTests": [
"Add or run tests covering app/dashboard/page.tsx",
"Add or run tests covering src/api/users.ts",
"Add or run tests covering src/auth/session.ts",
"Add or run tests covering vite.config.ts"
]
}