mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
* feat: Add experimental proxy based npm interceptor * refactor: Analysis cache * ci: Add E2E for npm proxy * fix: Handle dry-run in proxy flow * fix: Handle special case for scope package name * fix: Misc fixes * fix: Code review fixes * fix: Code review fixes * refactor: Reusable code into base registry interceptor * Pause npm process during user confirmation (#90) * pause npm process when prompting user for confirmation * disable progress bar * fix logging and close chan on return * update use of deprecated field * refactor: Separation of concerns for handling process state * fix: Safe permission for cert file * fix: Handle nil check for interaction hook * fix: Add test for base registry * Fix goreleaser for windows build (#93) * introduce platform specific process control * rename common.go to common_flow.go * feat: Add support for pause resume on windows * fix: Code review fixes * test: Add confirmation handler tests --------- Co-authored-by: Sahil Bansal <bansalsahil315@gmail.com>
162 lines
5.0 KiB
Go
162 lines
5.0 KiB
Go
package interceptors
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
packagev1 "buf.build/gen/go/safedep/api/protocolbuffers/go/safedep/messages/package/v1"
|
|
"github.com/safedep/pmg/analyzer"
|
|
"github.com/safedep/pmg/guard"
|
|
"github.com/safedep/pmg/proxy"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBaseRegistryInterceptor_HandleAnalysisResult(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
ecosystem packagev1.Ecosystem
|
|
packageName string
|
|
packageVersion string
|
|
analysisResult *analyzer.PackageVersionAnalysisResult
|
|
userConfirms bool
|
|
expectedAction proxy.ResponseAction
|
|
expectedBlockCode int
|
|
expectBlockMessage bool
|
|
}{
|
|
{
|
|
name: "ActionBlock - malicious package",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_NPM,
|
|
packageName: "malicious-pkg",
|
|
packageVersion: "1.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionBlock,
|
|
Summary: "Contains known malware",
|
|
ReferenceURL: "https://example.com/malware-report",
|
|
},
|
|
expectedAction: proxy.ActionBlock,
|
|
expectedBlockCode: http.StatusForbidden,
|
|
expectBlockMessage: true,
|
|
},
|
|
{
|
|
name: "ActionConfirm - user confirms installation",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_NPM,
|
|
packageName: "suspicious-pkg",
|
|
packageVersion: "2.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionConfirm,
|
|
Summary: "Suspicious behavior detected",
|
|
ReferenceURL: "https://example.com/suspicious-report",
|
|
},
|
|
userConfirms: true,
|
|
expectedAction: proxy.ActionAllow,
|
|
expectedBlockCode: 0,
|
|
expectBlockMessage: false,
|
|
},
|
|
{
|
|
name: "ActionConfirm - user declines installation",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_NPM,
|
|
packageName: "suspicious-pkg",
|
|
packageVersion: "2.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionConfirm,
|
|
Summary: "Suspicious behavior detected",
|
|
ReferenceURL: "https://example.com/suspicious-report",
|
|
},
|
|
userConfirms: false,
|
|
expectedAction: proxy.ActionBlock,
|
|
expectedBlockCode: http.StatusForbidden,
|
|
expectBlockMessage: true,
|
|
},
|
|
// Note: Timeout test case is skipped as it would require waiting 5 minutes
|
|
// The timeout behavior is covered by the implementation but not tested here
|
|
// to keep tests fast
|
|
{
|
|
name: "ActionAllow - safe package",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_NPM,
|
|
packageName: "safe-pkg",
|
|
packageVersion: "3.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionAllow,
|
|
Summary: "Package is safe",
|
|
ReferenceURL: "https://example.com/safe-report",
|
|
},
|
|
expectedAction: proxy.ActionAllow,
|
|
expectedBlockCode: 0,
|
|
expectBlockMessage: false,
|
|
},
|
|
{
|
|
name: "ActionUnknown - default to allow",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_NPM,
|
|
packageName: "unknown-pkg",
|
|
packageVersion: "4.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionUnknown,
|
|
Summary: "Unknown action",
|
|
ReferenceURL: "https://example.com/unknown-report",
|
|
},
|
|
expectedAction: proxy.ActionAllow,
|
|
expectedBlockCode: 0,
|
|
expectBlockMessage: false,
|
|
},
|
|
{
|
|
name: "ActionBlock - pypi ecosystem",
|
|
ecosystem: packagev1.Ecosystem_ECOSYSTEM_PYPI,
|
|
packageName: "malicious-pypi-pkg",
|
|
packageVersion: "5.0.0",
|
|
analysisResult: &analyzer.PackageVersionAnalysisResult{
|
|
Action: analyzer.ActionBlock,
|
|
Summary: "Malicious PyPI package",
|
|
ReferenceURL: "https://example.com/pypi-malware",
|
|
},
|
|
expectedAction: proxy.ActionBlock,
|
|
expectedBlockCode: http.StatusForbidden,
|
|
expectBlockMessage: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
confirmationChan := make(chan *ConfirmationRequest, 1)
|
|
interaction := guard.PackageManagerGuardInteraction{}
|
|
|
|
base := &baseRegistryInterceptor{
|
|
confirmationChan: confirmationChan,
|
|
interaction: interaction,
|
|
}
|
|
|
|
parsedURL, _ := url.Parse("https://registry.npmjs.org/test")
|
|
ctx := &proxy.RequestContext{
|
|
URL: parsedURL,
|
|
Method: "GET",
|
|
Headers: make(http.Header),
|
|
RequestID: "test-request-id",
|
|
StartTime: time.Now(),
|
|
Data: make(map[string]interface{}),
|
|
}
|
|
|
|
if tt.analysisResult.Action == analyzer.ActionConfirm {
|
|
go func() {
|
|
req := <-confirmationChan
|
|
req.ResponseChan <- tt.userConfirms
|
|
close(req.ResponseChan)
|
|
}()
|
|
}
|
|
|
|
response, err := base.handleAnalysisResult(
|
|
ctx,
|
|
tt.ecosystem,
|
|
tt.packageName,
|
|
tt.packageVersion,
|
|
tt.analysisResult,
|
|
)
|
|
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, tt.expectedAction, response.Action)
|
|
assert.Equal(t, tt.expectedBlockCode, response.BlockCode)
|
|
assert.Equal(t, tt.expectBlockMessage, response.BlockMessage != "")
|
|
})
|
|
}
|
|
}
|