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

61 lines
2.0 KiB
Python

import urllib.request
import urllib.error
import json
import pytest
from e2b.sandbox_async.main import AsyncSandbox
@pytest.mark.skip_debug()
async def test_download_url_with_signing(async_sandbox: AsyncSandbox):
file_path = "test_download_url_with_signing.txt"
file_content = "This file will be watched."
await async_sandbox.files.write(file_path, file_content)
signed_url = async_sandbox.download_url(file_path, "user")
with urllib.request.urlopen(signed_url) as resp:
assert resp.status == 200
body_bytes = resp.read()
body_text = body_bytes.decode()
assert body_text == file_content
@pytest.mark.skip_debug()
async def test_download_url_with_signing_and_expiration(async_sandbox: AsyncSandbox):
file_path = "test_download_url_with_signing.txt"
file_content = "This file will be watched."
await async_sandbox.files.write(file_path, file_content)
signed_url = async_sandbox.download_url(file_path, "user", 120)
with urllib.request.urlopen(signed_url) as resp:
assert resp.status == 200
body_bytes = resp.read()
body_text = body_bytes.decode()
assert body_text == file_content
@pytest.mark.skip_debug()
async def test_download_url_with_expired_signing(async_sandbox: AsyncSandbox):
file_path = "test_download_url_with_signing.txt"
file_content = "This file will be watched."
await async_sandbox.files.write(file_path, file_content)
signed_url = async_sandbox.download_url(
file_path, "user", use_signature_expiration=-120
)
with pytest.raises(urllib.error.HTTPError) as exc_info:
urllib.request.urlopen(signed_url)
err = exc_info.value
assert err.code == 401, f"Unexpected status {err.code}"
error_json_str = err.read().decode() # bytes ➜ str
error_payload = json.loads(error_json_str) # str ➜ dict
expected_payload = {"code": 401, "message": "signature is already expired"}
assert error_payload == expected_payload