-
-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathpublish-security.spec.ts
More file actions
302 lines (281 loc) · 8.52 KB
/
publish-security.spec.ts
File metadata and controls
302 lines (281 loc) · 8.52 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
import { describe, expect, it } from 'vitest'
import { detectPublishSecurityDowngradeForVersion } from '~/utils/publish-security'
describe('detectPublishSecurityDowngradeForVersion', () => {
const versions = [
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: false,
},
{
version: '1.0.2',
time: '2026-01-03T00:00:00.000Z',
hasProvenance: true,
},
]
it('does not flag trusted viewed version (1.0.2)', () => {
const result = detectPublishSecurityDowngradeForVersion(versions, '1.0.2')
expect(result).toBeNull()
})
it('flags downgraded viewed version (1.0.1)', () => {
const result = detectPublishSecurityDowngradeForVersion(versions, '1.0.1')
expect(result).toEqual({
downgradedVersion: '1.0.1',
downgradedPublishedAt: '2026-01-02T00:00:00.000Z',
downgradedTrustLevel: 'none',
trustedVersion: '1.0.0',
trustedPublishedAt: '2026-01-01T00:00:00.000Z',
trustedTrustLevel: 'provenance',
})
})
it('flags trust downgrade from trustedPublisher to provenance', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'trustedPublisher',
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
],
'1.0.1',
)
expect(result).toEqual({
downgradedVersion: '1.0.1',
downgradedPublishedAt: '2026-01-02T00:00:00.000Z',
downgradedTrustLevel: 'provenance',
trustedVersion: '1.0.0',
trustedPublishedAt: '2026-01-01T00:00:00.000Z',
trustedTrustLevel: 'trustedPublisher',
})
})
it('does not flag upgrade from provenance to trustedPublisher', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'trustedPublisher',
},
],
'1.0.1',
)
expect(result).toBeNull()
})
it('flags ongoing downgraded versions until an upgrade happens', () => {
const downgradedVersions = [
{
version: '2.1.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance' as const,
},
{
version: '2.1.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none' as const,
},
{
version: '2.2.0',
time: '2026-01-03T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none' as const,
},
{
version: '2.3.0',
time: '2026-01-04T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none' as const,
},
{
version: '2.4.0',
time: '2026-01-05T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance' as const,
},
]
expect(
detectPublishSecurityDowngradeForVersion(downgradedVersions, '2.1.1')?.trustedVersion,
).toBe('2.1.0')
expect(
detectPublishSecurityDowngradeForVersion(downgradedVersions, '2.2.0')?.trustedVersion,
).toBe('2.1.0')
expect(
detectPublishSecurityDowngradeForVersion(downgradedVersions, '2.3.0')?.trustedVersion,
).toBe('2.1.0')
expect(detectPublishSecurityDowngradeForVersion(downgradedVersions, '2.4.0')).toBeNull()
})
it('skips deprecated versions when selecting trustedVersion', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
deprecated: 'Use 1.0.2 instead',
},
{
version: '1.0.2',
time: '2026-01-03T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none',
},
],
'1.0.2',
)
// Should recommend 1.0.0 (not 1.0.1 which is deprecated)
expect(result?.trustedVersion).toBe('1.0.0')
})
it('returns null when all older trusted versions are deprecated', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
deprecated: 'Deprecated',
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none',
},
],
'1.0.1',
)
expect(result).toBeNull()
})
it('detects cross-major downgrade but does not recommend a version', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
{
version: '2.0.0',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none',
},
],
'2.0.0',
)
// Downgrade is detected (v1.0.0 was trusted, v2.0.0 is not)
expect(result).not.toBeNull()
expect(result?.downgradedVersion).toBe('2.0.0')
// But no trustedVersion recommendation since v1.0.0 is a different major
expect(result?.trustedVersion).toBeUndefined()
})
it('recommends same-major trusted version when cross-major exists', () => {
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
{
version: '2.0.0',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
{
version: '2.1.0',
time: '2026-01-03T00:00:00.000Z',
hasProvenance: false,
trustLevel: 'none',
},
],
'2.1.0',
)
// Should recommend 2.0.0 (same major), not 1.0.0
expect(result?.trustedVersion).toBe('2.0.0')
})
it('uses provenance rank (not trustedPublisher) for hasProvenance fallback without trustLevel', () => {
// When trustLevel is absent, hasProvenance: true should map to provenance rank,
// not trustedPublisher rank. This means a version with only hasProvenance: true
// should be considered a downgrade from trustedPublisher.
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'trustedPublisher',
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
// no trustLevel — fallback path maps to provenance
},
],
'1.0.1',
)
// hasProvenance fallback maps to provenance (rank 1), trustedPublisher is rank 2, so this is a downgrade
expect(result).toEqual({
downgradedVersion: '1.0.1',
downgradedPublishedAt: '2026-01-02T00:00:00.000Z',
downgradedTrustLevel: 'provenance',
trustedVersion: '1.0.0',
trustedPublishedAt: '2026-01-01T00:00:00.000Z',
trustedTrustLevel: 'trustedPublisher',
})
})
it('does not flag hasProvenance fallback against provenance trustLevel', () => {
// When trustLevel is absent, hasProvenance: true maps to provenance rank.
// An explicit provenance trustLevel is the same rank, so no downgrade.
const result = detectPublishSecurityDowngradeForVersion(
[
{
version: '1.0.0',
time: '2026-01-01T00:00:00.000Z',
hasProvenance: true,
// no trustLevel — fallback path maps to provenance
},
{
version: '1.0.1',
time: '2026-01-02T00:00:00.000Z',
hasProvenance: true,
trustLevel: 'provenance',
},
],
'1.0.1',
)
// Both are provenance rank, so no downgrade
expect(result).toBeNull()
})
})