mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-11 02:29:48 -04:00
## Summary Rename all internal packages so their npm names follow the `@pnpm/<domain>.<leaf>` convention, matching their directory structure. Also rename directories to remove redundancy and improve clarity. ### Bulk rename (94 packages) All `@pnpm/` packages now derive their name from their directory path using dot-separated segments. Exceptions: `packages/`, `__utils__/`, and `pnpm/artifacts/` keep leaf names only. ### Directory renames (removing redundant prefixes) - `cli/cli-meta` → `cli/meta`, `cli/cli-utils` → `cli/utils` - `config/config` → `config/reader`, `config/config-writer` → `config/writer` - `fetching/fetching-types` → `fetching/types` - `lockfile/lockfile-to-pnp` → `lockfile/to-pnp` - `store/store-connection-manager` → `store/connection-manager` - `store/store-controller-types` → `store/controller-types` - `store/store-path` → `store/path` ### Targeted renames (clarity improvements) - `deps/dependency-path` → `deps/path` (`@pnpm/deps.path`) - `deps/calc-dep-state` → `deps/graph-hasher` (`@pnpm/deps.graph-hasher`) - `deps/inspection/dependencies-hierarchy` → `deps/inspection/tree-builder` (`@pnpm/deps.inspection.tree-builder`) - `bins/link-bins` → `bins/linker`, `bins/remove-bins` → `bins/remover`, `bins/package-bins` → `bins/resolver` - `installing/get-context` → `installing/context` - `store/package-store` → `store/controller` - `pkg-manifest/manifest-utils` → `pkg-manifest/utils` ### Manifest reader/writer renames - `workspace/read-project-manifest` → `workspace/project-manifest-reader` (`@pnpm/workspace.project-manifest-reader`) - `workspace/write-project-manifest` → `workspace/project-manifest-writer` (`@pnpm/workspace.project-manifest-writer`) - `workspace/read-manifest` → `workspace/workspace-manifest-reader` (`@pnpm/workspace.workspace-manifest-reader`) - `workspace/manifest-writer` → `workspace/workspace-manifest-writer` (`@pnpm/workspace.workspace-manifest-writer`) ### Workspace package renames - `workspace/find-packages` → `workspace/projects-reader` - `workspace/find-workspace-dir` → `workspace/root-finder` - `workspace/resolve-workspace-range` → `workspace/range-resolver` - `workspace/filter-packages-from-dir` merged into `workspace/filter-workspace-packages` → `workspace/projects-filter` ### Domain moves - `pkg-manifest/read-project-manifest` → `workspace/project-manifest-reader` - `pkg-manifest/write-project-manifest` → `workspace/project-manifest-writer` - `pkg-manifest/exportable-manifest` → `releasing/exportable-manifest` ### Scope - 1206 files changed - Updated: package.json names/deps, TypeScript imports, tsconfig references, changeset files, renovate.json, test fixtures, import ordering
637 lines
17 KiB
TypeScript
637 lines
17 KiB
TypeScript
import { createPackageVersionPolicy } from '@pnpm/config.version-policy'
|
|
import type { PackageInRegistry, PackageMetaWithTime } from '@pnpm/resolving.registry.types'
|
|
|
|
import { failIfTrustDowngraded, getTrustEvidence } from '../src/trustChecks.js'
|
|
|
|
describe('getTrustEvidence', () => {
|
|
test('returns "trustedPublisher" when _npmUser.trustedPublisher exists', () => {
|
|
const manifest: PackageInRegistry = {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
}
|
|
expect(getTrustEvidence(manifest)).toBe('trustedPublisher')
|
|
})
|
|
|
|
test('returns "trustedPublisher" even when attestations.provenance exists', () => {
|
|
const manifest: PackageInRegistry = {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
expect(getTrustEvidence(manifest)).toBe('trustedPublisher')
|
|
})
|
|
|
|
test('returns true when provenance exists', () => {
|
|
const manifest: PackageInRegistry = {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
expect(getTrustEvidence(manifest)).toBe('provenance')
|
|
})
|
|
|
|
test('returns undefined when provenance and attestations are undefined', () => {
|
|
const manifest: PackageInRegistry = {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
}
|
|
expect(getTrustEvidence(manifest)).toBeUndefined()
|
|
})
|
|
|
|
test('returns undefined when _npmUser exists but trustedPublisher is undefined', () => {
|
|
const manifest: PackageInRegistry = {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
_npmUser: {
|
|
name: 'test-user',
|
|
email: 'user@example.com',
|
|
},
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
}
|
|
expect(getTrustEvidence(manifest)).toBeUndefined()
|
|
})
|
|
})
|
|
|
|
describe('failIfTrustDowngraded', () => {
|
|
test('succeeds when no versions have attestation', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '2.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '2.0.0')
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('succeeds for version published before first attested version', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '2.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '1.0.0')
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('throws an error when downgrading from provenance to none', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).toThrow('High-risk trust downgrade')
|
|
})
|
|
|
|
test('does not throw an error when only prerelease versions had provenance', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0-0': {
|
|
name: 'foo',
|
|
version: '2.0.0-0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0-0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0-0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('throws an error when downgrading from trustedPublisher to provenance', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).toThrow('High-risk trust downgrade')
|
|
})
|
|
|
|
test('throws an error when downgrading from trustedPublisher to none', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).toThrow('High-risk trust downgrade')
|
|
})
|
|
|
|
test('succeeds when maintaining same trust level', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('throws an error when version time is missing', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '2.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'foo',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/foo/-/foo-1.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'1.0.0': '2025-01-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '2.0.0')
|
|
}).toThrow('Missing time')
|
|
})
|
|
})
|
|
|
|
describe('failIfTrustDowngraded with trustPolicyExclude', () => {
|
|
test('allows downgrade when package@version is in exclude list', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0', { trustPolicyExclude: createPackageVersionPolicy(['foo@3.0.0']) })
|
|
}).not.toThrow()
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).toThrow('High-risk trust downgrade')
|
|
})
|
|
|
|
test('allows downgrade when package name is in exclude list (all versions)', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'bar',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'2.0.0': {
|
|
name: 'bar',
|
|
version: '2.0.0',
|
|
_npmUser: {
|
|
name: 'test-publisher',
|
|
email: 'publisher@example.com',
|
|
trustedPublisher: {
|
|
id: 'test-provider',
|
|
oidcConfigId: 'oidc:test-config-123',
|
|
},
|
|
},
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/bar/-/bar-2.0.0.tgz',
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'bar',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/bar/-/bar-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0', { trustPolicyExclude: createPackageVersionPolicy(['bar']) })
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('does not fail with ERR_PNPM_MISSING_TIME when package@version is excluded and time field is missing', () => {
|
|
const meta = {
|
|
name: 'baz',
|
|
'dist-tags': { latest: '1.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'baz',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/baz/-/baz-1.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
// Note: no 'time' field
|
|
}
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '1.0.0', { trustPolicyExclude: createPackageVersionPolicy(['baz@1.0.0']) })
|
|
}).not.toThrow()
|
|
})
|
|
|
|
test('does not fail with ERR_PNPM_MISSING_TIME when package name is excluded and time field is missing', () => {
|
|
const meta = {
|
|
name: 'qux',
|
|
'dist-tags': { latest: '2.0.0' },
|
|
versions: {
|
|
'1.0.0': {
|
|
name: 'qux',
|
|
version: '1.0.0',
|
|
dist: {
|
|
shasum: 'abc123',
|
|
tarball: 'https://registry.example.com/qux/-/qux-1.0.0.tgz',
|
|
},
|
|
},
|
|
'2.0.0': {
|
|
name: 'qux',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/qux/-/qux-2.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
// Note: no 'time' field
|
|
}
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '2.0.0', { trustPolicyExclude: createPackageVersionPolicy(['qux']) })
|
|
}).not.toThrow()
|
|
})
|
|
})
|
|
|
|
describe('failIfTrustDowngraded with trustPolicyIgnoreAfter', () => {
|
|
test('allows downgrade when version is older than ignoreAfter threshold', () => {
|
|
const meta: PackageMetaWithTime = {
|
|
name: 'foo',
|
|
'dist-tags': { latest: '3.0.0' },
|
|
versions: {
|
|
'2.0.0': {
|
|
name: 'foo',
|
|
version: '2.0.0',
|
|
dist: {
|
|
shasum: 'def456',
|
|
tarball: 'https://registry.example.com/foo/-/foo-2.0.0.tgz',
|
|
attestations: {
|
|
provenance: {
|
|
predicateType: 'https://slsa.dev/provenance/v1',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'3.0.0': {
|
|
name: 'foo',
|
|
version: '3.0.0',
|
|
dist: {
|
|
shasum: 'ghi789',
|
|
tarball: 'https://registry.example.com/foo/-/foo-3.0.0.tgz',
|
|
},
|
|
},
|
|
},
|
|
time: {
|
|
'2.0.0': '2025-02-01T00:00:00.000Z',
|
|
'3.0.0': '2025-03-01T00:00:00.000Z',
|
|
},
|
|
}
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0', { trustPolicyIgnoreAfter: 60 * 24 * 30 }) // 30 days
|
|
}).not.toThrow()
|
|
|
|
expect(() => {
|
|
failIfTrustDowngraded(meta, '3.0.0')
|
|
}).toThrow('High-risk trust downgrade')
|
|
})
|
|
})
|