mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
feat: Show cooldown report for pinned version installs (#225)
* feat: Show cooldown report for pinned version installs When a user installs a package with an explicit version (e.g. npm install foo@1.2.3) and that version falls within the dependency cooldown window, the cooldown block is now recorded and shown in the report. Previously, the report only appeared when ALL versions of a package were in cooldown (remaining == 0), causing pinned version installs to fail with a confusing "version not found" error from the package manager instead of a clear cooldown explanation. Introduces InterceptorContext to carry per-execution data (pinned versions) from the CLI command through the interceptor layer, keeping it separate from long-lived dependencies like the analyzer and cache. * fix: Normalize PyPI pinned version keys for cooldown lookup CLI-provided package names (e.g. Flask_Cors) don't match the URL-parsed form (flask-cors). Normalize keys once at construction time so cooldown lookups match correctly. * fix: Handle dots in PyPI package name normalization per PEP 503 denormalizePyPIPackageName already documented [-_.] replacement but only handled underscores. Now also replaces dots with hyphens so names like zope.interface match the URL-parsed form zope-interface. * refactor: Extract shared cooldown stats recording into helper Deduplicate identical stats-recording blocks from npm_cooldown.go and pypi_cooldown.go into recordCooldownStats in cooldown.go. * fix: Distinguish explicit version pins from auto-resolved versions PyPI parsers resolve all packages to concrete versions (even without a user-specified constraint), so HasVersion() was always true. Add IsExplicitVersion to PackageInstallTarget, set it only when the user provided an explicit constraint. Use it in proxy_flow.go to avoid false pinned-version cooldown reports.
This commit is contained in:
@@ -301,7 +301,7 @@ func TestNpmCooldown_HandleMetadataRequest_OverridesHeaders(t *testing.T) {
|
||||
ctx.Headers.Set("If-None-Match", `"abc123"`)
|
||||
ctx.Headers.Set("If-Modified-Since", "Wed, 01 Jan 2025 00:00:00 GMT")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "lodash", 5)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "lodash", 5, "")
|
||||
require.NoError(t, err)
|
||||
assert.Equal(t, proxy.ActionModifyResponse, resp.Action)
|
||||
assert.Equal(t, "application/json", ctx.Headers.Get("Accept"))
|
||||
@@ -323,7 +323,7 @@ func TestNpmCooldown_HandleMetadataRequest_StripsRecentVersions(t *testing.T) {
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/testpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5, "")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
@@ -358,7 +358,7 @@ func TestNpmCooldown_HandleMetadataRequest_NoVersionsInCooldown(t *testing.T) {
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/testpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5, "")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
@@ -379,7 +379,7 @@ func TestNpmCooldown_HandleMetadataRequest_AllVersionsInCooldown_RecordsStats(t
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/newpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "newpkg", 5)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "newpkg", 5, "")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
@@ -411,7 +411,7 @@ func TestNpmCooldown_HandleMetadataRequest_AllVersionsInCooldown_ReportsOldestVe
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/multipkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "multipkg", 100)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "multipkg", 100, "")
|
||||
require.NoError(t, err)
|
||||
|
||||
_, _, _, err = resp.ResponseModifier(200, http.Header{}, body)
|
||||
@@ -428,7 +428,7 @@ func TestNpmCooldown_HandleMetadataRequest_MalformedJSON_FailOpen(t *testing.T)
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/badpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "badpkg", 5)
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "badpkg", 5, "")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
@@ -437,10 +437,89 @@ func TestNpmCooldown_HandleMetadataRequest_MalformedJSON_FailOpen(t *testing.T)
|
||||
assert.Equal(t, body, newBody)
|
||||
}
|
||||
|
||||
func TestNpmCooldown_HandleMetadataRequest_PinnedVersionInCooldown_RecordsStats(t *testing.T) {
|
||||
now := time.Now()
|
||||
versions := map[string]time.Time{
|
||||
"1.0.0": now.Add(-30 * 24 * time.Hour), // old — eligible
|
||||
"2.0.0": now.Add(-1 * 24 * time.Hour), // too new (within 5d cooldown)
|
||||
}
|
||||
distTags := map[string]string{"latest": "2.0.0"}
|
||||
body := buildTestPackument(versions, distTags)
|
||||
|
||||
collector := NewAnalysisStatsCollector()
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/testpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5, "2.0.0")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
_, _, _, err = resp.ResponseModifier(200, http.Header{}, body)
|
||||
require.NoError(t, err)
|
||||
|
||||
blocks := collector.GetCooldownBlocks()
|
||||
require.Len(t, blocks, 1)
|
||||
assert.Equal(t, "testpkg", blocks[0].Name)
|
||||
assert.Equal(t, "2.0.0", blocks[0].Version)
|
||||
assert.Equal(t, 5, blocks[0].CooldownDays)
|
||||
|
||||
stats := collector.GetStats()
|
||||
assert.Equal(t, 1, stats.CooldownBlockedCount)
|
||||
assert.Equal(t, 1, stats.BlockedCount)
|
||||
}
|
||||
|
||||
func TestNpmCooldown_HandleMetadataRequest_PinnedVersionNotInCooldown_NoBlock(t *testing.T) {
|
||||
now := time.Now()
|
||||
versions := map[string]time.Time{
|
||||
"1.0.0": now.Add(-30 * 24 * time.Hour), // old
|
||||
"2.0.0": now.Add(-1 * 24 * time.Hour), // too new
|
||||
}
|
||||
distTags := map[string]string{"latest": "2.0.0"}
|
||||
body := buildTestPackument(versions, distTags)
|
||||
|
||||
collector := NewAnalysisStatsCollector()
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/testpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5, "1.0.0")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
_, _, _, err = resp.ResponseModifier(200, http.Header{}, body)
|
||||
require.NoError(t, err)
|
||||
|
||||
blocks := collector.GetCooldownBlocks()
|
||||
assert.Empty(t, blocks)
|
||||
}
|
||||
|
||||
func TestNpmCooldown_HandleMetadataRequest_UnpinnedWithRemainingVersions_NoBlock(t *testing.T) {
|
||||
now := time.Now()
|
||||
versions := map[string]time.Time{
|
||||
"1.0.0": now.Add(-30 * 24 * time.Hour), // old — eligible
|
||||
"2.0.0": now.Add(-1 * 24 * time.Hour), // too new
|
||||
}
|
||||
distTags := map[string]string{"latest": "2.0.0"}
|
||||
body := buildTestPackument(versions, distTags)
|
||||
|
||||
collector := NewAnalysisStatsCollector()
|
||||
handler := newNpmCooldownHandler(collector)
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/testpkg")
|
||||
|
||||
resp, err := handler.HandleMetadataRequest(ctx, "testpkg", 5, "")
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, resp.ResponseModifier)
|
||||
|
||||
_, _, _, err = resp.ResponseModifier(200, http.Header{}, body)
|
||||
require.NoError(t, err)
|
||||
|
||||
blocks := collector.GetCooldownBlocks()
|
||||
assert.Empty(t, blocks)
|
||||
}
|
||||
|
||||
func TestNpmCooldown_InterceptorDelegation_CooldownEnabled(t *testing.T) {
|
||||
setCooldownConfig(t, config.DependencyCooldownConfig{Enabled: true, Days: 5})
|
||||
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1))
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1), InterceptorContext{})
|
||||
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/lodash")
|
||||
ctx.Hostname = "registry.npmjs.org"
|
||||
@@ -455,7 +534,7 @@ func TestNpmCooldown_InterceptorDelegation_CooldownEnabled(t *testing.T) {
|
||||
func TestNpmCooldown_InterceptorDelegation_CooldownDisabled(t *testing.T) {
|
||||
setCooldownConfig(t, config.DependencyCooldownConfig{Enabled: false, Days: 5})
|
||||
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1))
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1), InterceptorContext{})
|
||||
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/lodash")
|
||||
ctx.Hostname = "registry.npmjs.org"
|
||||
@@ -476,7 +555,7 @@ func TestNpmCooldown_TarballRequestBypassesCooldown(t *testing.T) {
|
||||
config.Get().InsecureInstallation = true
|
||||
t.Cleanup(func() { config.Get().InsecureInstallation = origInsecure })
|
||||
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1))
|
||||
interceptor := NewNpmRegistryInterceptor(nil, NewInMemoryAnalysisCache(), NewAnalysisStatsCollector(), make(chan *ConfirmationRequest, 1), InterceptorContext{})
|
||||
|
||||
// Tarball URL has a version component
|
||||
ctx := makeTestRequestContext("https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz")
|
||||
|
||||
Reference in New Issue
Block a user