Files
e2b-dev--e2b/packages/python-sdk/tests/async/sandbox_async/commands/test_run.py
T
2026-07-13 12:47:58 +08:00

54 lines
1.5 KiB
Python

import pytest
from e2b import AsyncSandbox, TimeoutException
async def test_run(async_sandbox: AsyncSandbox):
text = "Hello, World!"
cmd = await async_sandbox.commands.run(f'echo "{text}"')
assert cmd.exit_code == 0
assert cmd.stdout == f"{text}\n"
async def test_run_with_special_characters(async_sandbox: AsyncSandbox):
text = "!@#$%^&*()_+"
cmd = await async_sandbox.commands.run(f'echo "{text}"')
assert cmd.exit_code == 0
# assert cmd.stdout == f"{text}\n"
async def test_run_with_broken_utf8(async_sandbox: AsyncSandbox):
# Create a string with 8191 'a' characters followed by the problematic byte 0xe2
long_str = "a" * 8191 + "\\xe2"
result = await async_sandbox.commands.run(f'printf "{long_str}"')
assert result.exit_code == 0
# The broken UTF-8 bytes should be replaced with the Unicode replacement character
assert result.stdout == ("a" * 8191 + "\ufffd")
async def test_run_with_multiline_string(async_sandbox: AsyncSandbox):
text = "Hello,\nWorld!"
cmd = await async_sandbox.commands.run(f'echo "{text}"')
assert cmd.exit_code == 0
assert cmd.stdout == f"{text}\n"
async def test_run_with_timeout(async_sandbox: AsyncSandbox):
cmd = await async_sandbox.commands.run('echo "Hello, World!"', timeout=10)
assert cmd.exit_code == 0
async def test_run_with_too_short_timeout(async_sandbox: AsyncSandbox):
with pytest.raises(TimeoutException):
await async_sandbox.commands.run("sleep 10", timeout=2)