-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathtest_network.py
More file actions
215 lines (168 loc) · 7.19 KB
/
test_network.py
File metadata and controls
215 lines (168 loc) · 7.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import pytest
from e2b import ALL_TRAFFIC, SandboxNetworkOpts
from e2b.sandbox.commands.command_handle import CommandExitException
@pytest.mark.skip_debug()
async def test_allow_specific_ip_with_deny_all(async_sandbox_factory):
"""Test that sandbox with denyOut all and allowOut creates a whitelist."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(deny_out=[ALL_TRAFFIC], allow_out=["1.1.1.1"])
)
# Test that allowed IP works
result = await async_sandbox.commands.run(
"curl -s -o /dev/null -w '%{http_code}' https://1.1.1.1"
)
assert result.exit_code == 0
assert result.stdout.strip() == "301"
# Test that other IPs are denied
with pytest.raises(CommandExitException) as exc_info:
await async_sandbox.commands.run(
"curl --connect-timeout 3 --max-time 5 -Is https://8.8.8.8"
)
assert exc_info.value.exit_code != 0
@pytest.mark.skip_debug()
async def test_deny_specific_ip(async_sandbox_factory):
"""Test that sandbox with denyOut denies specified IP addresses."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(deny_out=["8.8.8.8"])
)
# Test that denied IP fails
with pytest.raises(CommandExitException) as exc_info:
await async_sandbox.commands.run(
"curl --connect-timeout 3 --max-time 5 -Is https://8.8.8.8"
)
assert exc_info.value.exit_code != 0
# Test that other IPs work
result = await async_sandbox.commands.run(
"curl -s -o /dev/null -w '%{http_code}' https://1.1.1.1"
)
assert result.exit_code == 0
assert result.stdout.strip() == "301"
@pytest.mark.skip_debug()
async def test_deny_all_traffic(async_sandbox_factory):
"""Test that sandbox can deny all traffic using all_traffic helper."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(deny_out=[ALL_TRAFFIC]), timeout=30
)
# Test that all traffic is denied
with pytest.raises(CommandExitException) as exc_info:
await async_sandbox.commands.run(
"curl --connect-timeout 3 --max-time 5 -Is https://1.1.1.1"
)
assert exc_info.value.exit_code != 0
with pytest.raises(CommandExitException) as exc_info:
await async_sandbox.commands.run(
"curl --connect-timeout 3 --max-time 5 -Is https://8.8.8.8"
)
assert exc_info.value.exit_code != 0
@pytest.mark.skip_debug()
async def test_allow_takes_precedence_over_deny(async_sandbox_factory):
"""Test that allowOut takes precedence over denyOut."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(
deny_out=[ALL_TRAFFIC], allow_out=["1.1.1.1", "8.8.8.8"]
)
)
# Test that 1.1.1.1 works (explicitly allowed)
result1 = await async_sandbox.commands.run(
"curl -s -o /dev/null -w '%{http_code}' https://1.1.1.1"
)
assert result1.exit_code == 0
assert result1.stdout.strip() == "301"
# Test that 8.8.8.8 also works (explicitly allowed, takes precedence over deny_out)
result2 = await async_sandbox.commands.run(
"curl -s -o /dev/null -w '%{http_code}' https://8.8.8.8"
)
assert result2.exit_code == 0
assert result2.stdout.strip() == "302"
@pytest.mark.skip_debug()
async def test_allow_public_traffic_false(async_sandbox_factory):
"""Test that sandbox with allow_public_traffic=False requires traffic access token."""
async_sandbox = await async_sandbox_factory(
secure=True, network=SandboxNetworkOpts(allow_public_traffic=False)
)
import asyncio
import httpx
# Verify the sandbox was created successfully and has a traffic access token
assert async_sandbox.traffic_access_token is not None
# Start a simple HTTP server in the sandbox
port = 8080
await async_sandbox.commands.run(
f"python3 -m http.server {port}", background=True, timeout=0
)
# Wait for server to start
await asyncio.sleep(3)
# Get the public URL for the sandbox
sandbox_url = f"https://{async_sandbox.get_host(port)}"
async with httpx.AsyncClient() as client:
# Test 1: Request without traffic access token should fail with 403
response = await client.get(sandbox_url, follow_redirects=True)
assert response.status_code == 403
# Test 2: Request with valid traffic access token should succeed
headers = {"e2b-traffic-access-token": async_sandbox.traffic_access_token}
response = await client.get(sandbox_url, headers=headers, follow_redirects=True)
assert response.status_code == 200
@pytest.mark.skip_debug()
async def test_allow_public_traffic_true(async_sandbox_factory):
"""Test that sandbox with allow_public_traffic=True works without token."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(allow_public_traffic=True)
)
import asyncio
import httpx
# Start a simple HTTP server in the sandbox
port = 8080
await async_sandbox.commands.run(
f"python3 -m http.server {port}", background=True, timeout=0
)
# Wait for server to start
await asyncio.sleep(3)
# Get the public URL for the sandbox
sandbox_url = f"https://{async_sandbox.get_host(port)}"
async with httpx.AsyncClient() as client:
# Request without traffic access token should succeed (public access enabled)
response = await client.get(sandbox_url, follow_redirects=True)
assert response.status_code == 200
@pytest.mark.skip_debug()
async def test_mask_request_host(async_sandbox_factory):
"""Test that mask_request_host modifies the Host header correctly."""
async_sandbox = await async_sandbox_factory(
network=SandboxNetworkOpts(mask_request_host="custom-host.example.com:${PORT}"),
timeout=60,
)
import asyncio
import httpx
port = 8080
output_file = "/tmp/headers.txt"
# Start a Python HTTP server that captures request headers and writes them to a file
await async_sandbox.commands.run(
f"""python3 -c "
import http.server, json
class H(http.server.BaseHTTPRequestHandler):
def do_GET(self):
with open('{output_file}', 'w') as f:
for k, v in self.headers.items():
f.write(k + ': ' + v + chr(10))
self.send_response(200)
self.end_headers()
def log_message(self, *a): pass
http.server.HTTPServer(('', {port}), H).handle_request()
" """,
background=True,
)
await asyncio.sleep(2)
# Get the public URL for the sandbox
sandbox_url = f"https://{async_sandbox.get_host(port)}"
# Make a request from OUTSIDE the sandbox through the proxy
# The Host header should be modified according to mask_request_host
async with httpx.AsyncClient() as client:
try:
await client.get(sandbox_url, timeout=5.0)
except Exception:
pass
await asyncio.sleep(1)
# Read the captured headers from inside the sandbox
result = await async_sandbox.commands.run(f"cat {output_file}")
# Verify the Host header was modified according to mask_request_host
assert "Host:" in result.stdout
assert "custom-host.example.com" in result.stdout
assert str(port) in result.stdout