mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Log audit stats as verbose, not as information
This commit is contained in:
parent
9901cb8502
commit
a7946377b4
14 changed files with 273 additions and 214 deletions
|
|
@ -16,7 +16,7 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
const installationShell = await container.openShell("zsh");
|
||||
await installationShell.runCommand("safe-chain setup --include-python");
|
||||
|
||||
|
||||
// Clear pip cache before each test to ensure fresh downloads through proxy
|
||||
await installationShell.runCommand("pip3 cache purge");
|
||||
});
|
||||
|
|
@ -32,7 +32,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`successfully installs known safe packages with pip3`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages requests"
|
||||
"pip3 install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -43,7 +43,9 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 download`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("pip3 download requests");
|
||||
const result = await shell.runCommand(
|
||||
"pip3 download requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
result.output.includes("no malware found."),
|
||||
|
|
@ -53,7 +55,9 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 .whl`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("pip3 wheel requests");
|
||||
const result = await shell.runCommand(
|
||||
"pip3 wheel requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
result.output.includes("no malware found."),
|
||||
|
|
@ -64,7 +68,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`pip3 install --dry-run is respected by scanner`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --dry-run --break-system-packages requests"
|
||||
"pip3 install --dry-run --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -76,7 +80,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`pip3 install with extras such as requests[socks]`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
'pip3 install --break-system-packages "requests[socks]==2.32.3"'
|
||||
'pip3 install --break-system-packages "requests[socks]==2.32.3" --safe-chain-logging=verbose'
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -88,7 +92,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`pip3 install with range version specifier`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
'pip3 install --break-system-packages "Jinja2>=3.1,<3.2"'
|
||||
'pip3 install --break-system-packages "Jinja2>=3.1,<3.2" --safe-chain-logging=verbose'
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -100,7 +104,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python3 -m pip install routes through safe-chain`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip install --break-system-packages requests"
|
||||
"python3 -m pip install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -111,7 +115,9 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m pip download routes through safe-chain`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("python3 -m pip download requests");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip download requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
result.output.includes("no malware found."),
|
||||
|
|
@ -148,7 +154,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python -m pip routes to aikido-pip (uses pip command)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python -m pip install --break-system-packages requests"
|
||||
"python -m pip install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -166,7 +172,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python -m pip3 routes to aikido-pip3 (uses pip3 command)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python -m pip3 install --break-system-packages requests"
|
||||
"python -m pip3 install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -184,7 +190,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python3 -m pip routes to aikido-pip3 (uses pip3 command)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip install --break-system-packages requests"
|
||||
"python3 -m pip install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -202,7 +208,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python3 -m pip3 routes to aikido-pip3 (uses pip3 command)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip3 install --break-system-packages requests"
|
||||
"python3 -m pip3 install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -222,7 +228,7 @@ describe("E2E: pip coverage", () => {
|
|||
// Install a simple package from GitHub - this should use TCP tunnel, not MITM
|
||||
// Using a popular, small package for testing
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages git+https://github.com/psf/requests.git@v2.32.3"
|
||||
"pip3 install --break-system-packages git+https://github.com/psf/requests.git@v2.32.3 --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -248,7 +254,7 @@ describe("E2E: pip coverage", () => {
|
|||
it(`pip3 successfully validates certificates for HTTPS downloads`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages certifi"
|
||||
"pip3 install --break-system-packages certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -276,7 +282,7 @@ describe("E2E: pip coverage", () => {
|
|||
// Test installing from a direct HTTPS URL (not a registry)
|
||||
// This validates that non-registry HTTPS traffic works with our env-provided CA bundle
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages https://files.pythonhosted.org/packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl"
|
||||
"pip3 install --break-system-packages https://files.pythonhosted.org/packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -299,7 +305,7 @@ describe("E2E: pip coverage", () => {
|
|||
// This tests tunneled HTTPS with our env-provided CA bundle (Safe Chain CA + Mozilla + Node roots)
|
||||
// If the CA bundle doesn't include public roots, this will fail with CERTIFICATE_VERIFY_FAILED
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages --index-url https://test.pypi.org/simple certifi"
|
||||
"pip3 install --break-system-packages --index-url https://test.pypi.org/simple certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -336,22 +342,20 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 config set should work and persist configuration`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Set a config value
|
||||
const setResult = await shell.runCommand(
|
||||
"pip3 config set global.timeout 60"
|
||||
);
|
||||
|
||||
|
||||
assert.ok(
|
||||
setResult.output.includes("Writing to"),
|
||||
`pip3 config set should write config. Output was:\n${setResult.output}`
|
||||
);
|
||||
|
||||
|
||||
// Verify it was persisted by reading it back
|
||||
const getResult = await shell.runCommand(
|
||||
"pip3 config get global.timeout"
|
||||
);
|
||||
|
||||
const getResult = await shell.runCommand("pip3 config get global.timeout");
|
||||
|
||||
assert.ok(
|
||||
getResult.output.includes("60"),
|
||||
`Config value should be 60. Output was:\n${getResult.output}`
|
||||
|
|
@ -360,13 +364,13 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 config list should show user configuration`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Set a value first
|
||||
await shell.runCommand("pip3 config set global.timeout 90");
|
||||
|
||||
|
||||
// List config
|
||||
const listResult = await shell.runCommand("pip3 config list");
|
||||
|
||||
|
||||
assert.ok(
|
||||
listResult.output.includes("timeout") && listResult.output.includes("90"),
|
||||
`Config list should show timeout=90. Output was:\n${listResult.output}`
|
||||
|
|
@ -375,16 +379,18 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 config unset should remove configuration`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Set a value
|
||||
await shell.runCommand("pip3 config set global.timeout 120");
|
||||
|
||||
|
||||
// Verify it exists
|
||||
const getResult = await shell.runCommand("pip3 config get global.timeout");
|
||||
assert.ok(getResult.output.includes("120"));
|
||||
|
||||
|
||||
// Unset it
|
||||
const unsetResult = await shell.runCommand("pip3 config unset global.timeout");
|
||||
const unsetResult = await shell.runCommand(
|
||||
"pip3 config unset global.timeout"
|
||||
);
|
||||
assert.ok(
|
||||
unsetResult.output.includes("Writing to"),
|
||||
`pip3 config unset should write config. Output was:\n${unsetResult.output}`
|
||||
|
|
@ -393,9 +399,9 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 cache dir should return cache directory path`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
const result = await shell.runCommand("pip3 cache dir");
|
||||
|
||||
|
||||
// Should output a directory path
|
||||
assert.ok(
|
||||
result.output.includes("/") && result.output.includes("cache"),
|
||||
|
|
@ -405,12 +411,12 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 cache info should show cache information`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Install something first to populate cache
|
||||
await shell.runCommand("pip3 install --break-system-packages certifi");
|
||||
|
||||
|
||||
const result = await shell.runCommand("pip3 cache info");
|
||||
|
||||
|
||||
// Output should contain cache-related information
|
||||
assert.ok(
|
||||
result.output.match(/cache|wheel|http/i),
|
||||
|
|
@ -420,30 +426,31 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 cache list should list cached packages`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Download a package to ensure something is in cache
|
||||
await shell.runCommand("pip3 download certifi");
|
||||
|
||||
|
||||
const result = await shell.runCommand("pip3 cache list certifi");
|
||||
|
||||
|
||||
// Should show either cached wheels or "No locally built wheels"
|
||||
assert.ok(
|
||||
result.output.includes("certifi") || result.output.includes("No locally built"),
|
||||
result.output.includes("certifi") ||
|
||||
result.output.includes("No locally built"),
|
||||
`Should output cache list information. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
||||
it(`pip3 debug should output debug information`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
const result = await shell.runCommand("pip3 debug");
|
||||
|
||||
|
||||
// Should contain debug information about pip environment
|
||||
assert.ok(
|
||||
result.output.match(/pip version|sys\.version|sys\.executable/i),
|
||||
`Should output debug information. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT show safe-chain's temporary config file in the debug output
|
||||
assert.ok(
|
||||
!result.output.includes("safe-chain-pip-"),
|
||||
|
|
@ -453,34 +460,36 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 completion should generate shell completion script`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
const result = await shell.runCommand("pip3 completion --zsh");
|
||||
|
||||
|
||||
// Should output shell completion code
|
||||
assert.ok(
|
||||
result.output.includes("compdef") || result.output.includes("_pip") || result.output.includes("pip completion"),
|
||||
result.output.includes("compdef") ||
|
||||
result.output.includes("_pip") ||
|
||||
result.output.includes("pip completion"),
|
||||
`Should output completion code. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
||||
it(`pip3 install still works after config operations`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Perform config operations
|
||||
await shell.runCommand("pip3 config set global.timeout 60");
|
||||
await shell.runCommand("pip3 cache dir");
|
||||
|
||||
|
||||
// Now install should still work with malware protection
|
||||
const result = await shell.runCommand(
|
||||
"pip3 install --break-system-packages certifi"
|
||||
"pip3 install --break-system-packages certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
|
||||
assert.ok(
|
||||
result.output.includes("Successfully installed") ||
|
||||
result.output.includes("Requirement already satisfied"),
|
||||
`Install should succeed after config operations. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
assert.ok(
|
||||
result.output.includes("no malware found."),
|
||||
`Should still scan for malware. Output was:\n${result.output}`
|
||||
|
|
@ -489,14 +498,16 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`pip3 download works after configuring pip settings`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Configure pip with timeout and extra index URL
|
||||
const configTimeout = await shell.runCommand("pip3 config set global.timeout 60");
|
||||
const configTimeout = await shell.runCommand(
|
||||
"pip3 config set global.timeout 60"
|
||||
);
|
||||
assert.ok(
|
||||
configTimeout.output.includes("Writing to"),
|
||||
`Config set should succeed. Output was:\n${configTimeout.output}`
|
||||
);
|
||||
|
||||
|
||||
const configIndex = await shell.runCommand(
|
||||
"pip3 config set global.extra-index-url https://pypi.org/simple"
|
||||
);
|
||||
|
|
@ -504,7 +515,7 @@ describe("E2E: pip coverage", () => {
|
|||
configIndex.output.includes("Writing to"),
|
||||
`Config set should succeed. Output was:\n${configIndex.output}`
|
||||
);
|
||||
|
||||
|
||||
// Verify config persisted
|
||||
const listConfig = await shell.runCommand("pip3 config list");
|
||||
assert.ok(
|
||||
|
|
@ -512,23 +523,25 @@ describe("E2E: pip coverage", () => {
|
|||
`Config should show timeout=60. Output was:\n${listConfig.output}`
|
||||
);
|
||||
assert.ok(
|
||||
listConfig.output.includes("extra-index-url") && listConfig.output.includes("pypi.org"),
|
||||
listConfig.output.includes("extra-index-url") &&
|
||||
listConfig.output.includes("pypi.org"),
|
||||
`Config should show extra-index-url. Output was:\n${listConfig.output}`
|
||||
);
|
||||
|
||||
|
||||
// Now download packages with the configured settings
|
||||
const downloadResult = await shell.runCommand(
|
||||
"pip3 download -d /tmp/packages requests certifi"
|
||||
"pip3 download -d /tmp/packages requests certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
|
||||
assert.ok(
|
||||
downloadResult.output.includes("no malware found."),
|
||||
`Should scan for malware. Output was:\n${downloadResult.output}`
|
||||
);
|
||||
|
||||
|
||||
// Verify downloads succeeded
|
||||
assert.ok(
|
||||
downloadResult.output.includes("Saved") || downloadResult.output.includes("requests"),
|
||||
downloadResult.output.includes("Saved") ||
|
||||
downloadResult.output.includes("requests"),
|
||||
`Download should succeed with configured settings. Output was:\n${downloadResult.output}`
|
||||
);
|
||||
assert.ok(
|
||||
|
|
@ -538,17 +551,17 @@ describe("E2E: pip coverage", () => {
|
|||
});
|
||||
|
||||
// Tests for python/python3 bypass (non-pip invocations should go directly without safe-chain)
|
||||
|
||||
|
||||
it(`python3 --version should bypass safe-chain and work normally`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("python3 --version");
|
||||
|
||||
|
||||
// Should output Python version
|
||||
assert.ok(
|
||||
result.output.match(/Python 3\.\d+\.\d+/),
|
||||
`Should output Python version. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain proxy
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -559,13 +572,13 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python --version should bypass safe-chain and work normally`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("python --version");
|
||||
|
||||
|
||||
// Should output Python version
|
||||
assert.ok(
|
||||
result.output.match(/Python \d+\.\d+\.\d+/),
|
||||
`Should output Python version. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -575,14 +588,16 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -c "print('hello')" should bypass safe-chain and execute code`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("python3 -c \"print('hello world')\"");
|
||||
|
||||
const result = await shell.runCommand(
|
||||
"python3 -c \"print('hello world')\""
|
||||
);
|
||||
|
||||
// Should execute Python code
|
||||
assert.ok(
|
||||
result.output.includes("hello world"),
|
||||
`Should execute Python code. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -592,14 +607,16 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python -c should bypass safe-chain and execute code`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand("python -c \"import sys; print(sys.version)\"");
|
||||
|
||||
const result = await shell.runCommand(
|
||||
'python -c "import sys; print(sys.version)"'
|
||||
);
|
||||
|
||||
// Should execute Python code and print version
|
||||
assert.ok(
|
||||
result.output.match(/\d+\.\d+\.\d+/),
|
||||
`Should execute Python code. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -609,18 +626,20 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 script.py should bypass safe-chain and execute script`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Create a simple Python script
|
||||
await shell.runCommand("echo \"print('script executed')\" > /tmp/test_script.py");
|
||||
|
||||
await shell.runCommand(
|
||||
"echo \"print('script executed')\" > /tmp/test_script.py"
|
||||
);
|
||||
|
||||
const result = await shell.runCommand("python3 /tmp/test_script.py");
|
||||
|
||||
|
||||
// Should execute the script
|
||||
assert.ok(
|
||||
result.output.includes("script executed"),
|
||||
`Should execute Python script. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -630,18 +649,20 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python script.py should bypass safe-chain and execute script`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Create a simple Python script
|
||||
await shell.runCommand("echo \"print('python2/3 compatible')\" > /tmp/test_script2.py");
|
||||
|
||||
await shell.runCommand(
|
||||
"echo \"print('python2/3 compatible')\" > /tmp/test_script2.py"
|
||||
);
|
||||
|
||||
const result = await shell.runCommand("python /tmp/test_script2.py");
|
||||
|
||||
|
||||
// Should execute the script
|
||||
assert.ok(
|
||||
result.output.includes("python2/3 compatible"),
|
||||
`Should execute Python script. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -651,16 +672,18 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m json.tool should bypass safe-chain (module other than pip)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// json.tool is a built-in Python module for formatting JSON
|
||||
const result = await shell.runCommand("echo '{\"test\": 123}' | python3 -m json.tool");
|
||||
|
||||
const result = await shell.runCommand(
|
||||
"echo '{\"test\": 123}' | python3 -m json.tool"
|
||||
);
|
||||
|
||||
// Should format JSON
|
||||
assert.ok(
|
||||
result.output.includes('"test"') && result.output.includes('123'),
|
||||
result.output.includes('"test"') && result.output.includes("123"),
|
||||
`Should format JSON. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -670,36 +693,40 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m http.server should bypass safe-chain (module other than pip)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Start http.server in background and kill it immediately
|
||||
// We just want to verify it starts without safe-chain interference
|
||||
const result = await shell.runCommand("timeout 1 python3 -m http.server 8999 || true");
|
||||
|
||||
const result = await shell.runCommand(
|
||||
"timeout 1 python3 -m http.server 8999 || true"
|
||||
);
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
`python3 -m http.server should not go through safe-chain. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should either start the server or timeout (both are success for bypass test)
|
||||
assert.ok(
|
||||
result.output.includes("Serving HTTP") || result.output === "" || result.exitCode !== undefined,
|
||||
result.output.includes("Serving HTTP") ||
|
||||
result.output === "" ||
|
||||
result.exitCode !== undefined,
|
||||
`Should attempt to start server. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
||||
it(`python3 interactive mode should bypass safe-chain`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Run python3 with a command piped to stdin to simulate interactive mode
|
||||
const result = await shell.runCommand("echo 'print(2+2)' | python3");
|
||||
|
||||
|
||||
// Should execute the command
|
||||
assert.ok(
|
||||
result.output.includes("4"),
|
||||
`Should execute Python interactively. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -709,10 +736,10 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 with no arguments should bypass safe-chain`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Python with no args goes to interactive REPL, pipe exit command
|
||||
const result = await shell.runCommand("echo 'exit()' | python3");
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -722,17 +749,19 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m venv should bypass safe-chain (venv module)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
const result = await shell.runCommand("python3 -m venv /tmp/test_venv");
|
||||
|
||||
|
||||
// Should create venv without safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
`python3 -m venv should not go through safe-chain. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Verify venv was created
|
||||
const checkVenv = await shell.runCommand("test -f /tmp/test_venv/bin/python3 && echo 'exists'");
|
||||
const checkVenv = await shell.runCommand(
|
||||
"test -f /tmp/test_venv/bin/python3 && echo 'exists'"
|
||||
);
|
||||
assert.ok(
|
||||
checkVenv.output.includes("exists"),
|
||||
`venv should be created. Output was:\n${checkVenv.output}`
|
||||
|
|
@ -741,10 +770,12 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m pytest should bypass safe-chain (pytest module)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// pytest may not be installed, but the bypass should work regardless
|
||||
const result = await shell.runCommand("python3 -m pytest --version 2>&1 || true");
|
||||
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pytest --version 2>&1 || true"
|
||||
);
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -754,15 +785,15 @@ describe("E2E: pip coverage", () => {
|
|||
|
||||
it(`python3 -m site should bypass safe-chain (site module)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
const result = await shell.runCommand("python3 -m site");
|
||||
|
||||
|
||||
// Should output site information
|
||||
assert.ok(
|
||||
result.output.includes("sys.path") || result.output.includes("USER_BASE"),
|
||||
`Should output site information. Output was:\n${result.output}`
|
||||
);
|
||||
|
||||
|
||||
// Should NOT go through safe-chain
|
||||
assert.ok(
|
||||
!result.output.includes("Safe-chain"),
|
||||
|
|
@ -771,16 +802,17 @@ describe("E2E: pip coverage", () => {
|
|||
});
|
||||
|
||||
// Verify that -m pip* still goes through safe-chain (sanity check)
|
||||
|
||||
|
||||
it(`python3 -m pip DOES go through safe-chain (sanity check)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip install --break-system-packages certifi"
|
||||
"python3 -m pip install --break-system-packages certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
|
||||
// SHOULD go through safe-chain
|
||||
assert.ok(
|
||||
result.output.includes("Safe-chain") || result.output.includes("no malware found"),
|
||||
result.output.includes("Safe-chain") ||
|
||||
result.output.includes("no malware found"),
|
||||
`python3 -m pip SHOULD go through safe-chain. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
|
@ -788,12 +820,13 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python3 -m pip3 DOES go through safe-chain (sanity check)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python3 -m pip3 install --break-system-packages certifi"
|
||||
"python3 -m pip3 install --break-system-packages certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
|
||||
// SHOULD go through safe-chain
|
||||
assert.ok(
|
||||
result.output.includes("Safe-chain") || result.output.includes("no malware found"),
|
||||
result.output.includes("Safe-chain") ||
|
||||
result.output.includes("no malware found"),
|
||||
`python3 -m pip3 SHOULD go through safe-chain. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
|
@ -801,12 +834,13 @@ describe("E2E: pip coverage", () => {
|
|||
it(`python -m pip DOES go through safe-chain (sanity check)`, async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"python -m pip install --break-system-packages certifi"
|
||||
"python -m pip install --break-system-packages certifi --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
|
||||
// SHOULD go through safe-chain
|
||||
assert.ok(
|
||||
result.output.includes("Safe-chain") || result.output.includes("no malware found"),
|
||||
result.output.includes("Safe-chain") ||
|
||||
result.output.includes("no malware found"),
|
||||
`python -m pip SHOULD go through safe-chain. Output was:\n${result.output}`
|
||||
);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue