-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_stream.py
More file actions
456 lines (330 loc) · 13.3 KB
/
test_stream.py
File metadata and controls
456 lines (330 loc) · 13.3 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import io
import os
import tempfile
import pytest
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_bytes_async(async_shared_sandbox):
"""Test write_file with bytes (existing behavior)."""
sb = async_shared_sandbox
await sb.fs.write_file("test_bytes.txt", b"hello world")
content = await sb.fs.read_file("test_bytes.txt")
assert content == b"hello world"
def test_write_file_bytes_sync(shared_sandbox):
"""Test write_file with bytes (existing behavior)."""
sb = shared_sandbox
sb.fs.write_file("test_bytes_sync.txt", b"hello world")
content = sb.fs.read_file("test_bytes_sync.txt")
assert content == b"hello world"
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_generator_async(async_shared_sandbox):
"""Test write_file with a sync generator."""
sb = async_shared_sandbox
def chunks():
yield b"hello "
yield b"world"
await sb.fs.write_file("test_generator.txt", chunks())
content = await sb.fs.read_file("test_generator.txt")
assert content == b"hello world"
def test_write_file_generator_sync(shared_sandbox):
"""Test write_file with a sync generator."""
sb = shared_sandbox
def chunks():
yield b"hello "
yield b"world"
sb.fs.write_file("test_generator_sync.txt", chunks())
content = sb.fs.read_file("test_generator_sync.txt")
assert content == b"hello world"
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_async_generator(async_shared_sandbox):
"""Test write_file with an async generator."""
sb = async_shared_sandbox
async def async_chunks():
yield b"async "
yield b"hello "
yield b"world"
await sb.fs.write_file("test_async_generator.txt", async_chunks())
content = await sb.fs.read_file("test_async_generator.txt")
assert content == b"async hello world"
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_file_object_async(async_shared_sandbox):
"""Test write_file with a file-like object."""
sb = async_shared_sandbox
file_obj = io.BytesIO(b"file object content")
await sb.fs.write_file("test_file_obj.txt", file_obj)
content = await sb.fs.read_file("test_file_obj.txt")
assert content == b"file object content"
def test_write_file_file_object_sync(shared_sandbox):
"""Test write_file with a file-like object."""
sb = shared_sandbox
file_obj = io.BytesIO(b"file object content sync")
sb.fs.write_file("test_file_obj_sync.txt", file_obj)
content = sb.fs.read_file("test_file_obj_sync.txt")
assert content == b"file object content sync"
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_list_async(async_shared_sandbox):
"""Test write_file with a list of bytes."""
sb = async_shared_sandbox
chunks = [b"part1 ", b"part2 ", b"part3"]
await sb.fs.write_file("test_list.txt", iter(chunks))
content = await sb.fs.read_file("test_list.txt")
assert content == b"part1 part2 part3"
def test_write_file_list_sync(shared_sandbox):
"""Test write_file with a list of bytes."""
sb = shared_sandbox
chunks = [b"part1 ", b"part2 ", b"part3"]
sb.fs.write_file("test_list_sync.txt", iter(chunks))
content = sb.fs.read_file("test_list_sync.txt")
assert content == b"part1 part2 part3"
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_empty_stream_async(async_shared_sandbox):
"""Test write_file with an empty stream."""
sb = async_shared_sandbox
def empty_chunks():
return
yield # Make it a generator
await sb.fs.write_file("test_empty.txt", empty_chunks())
content = await sb.fs.read_file("test_empty.txt")
assert content == b""
def test_write_file_empty_stream_sync(shared_sandbox):
"""Test write_file with an empty stream."""
sb = shared_sandbox
def empty_chunks():
return
yield # Make it a generator
sb.fs.write_file("test_empty_sync.txt", empty_chunks())
content = sb.fs.read_file("test_empty_sync.txt")
assert content == b""
@pytest.mark.asyncio(loop_scope="session")
async def test_write_file_large_stream_async(async_shared_sandbox):
"""Test write_file with a stream larger than chunk size."""
sb = async_shared_sandbox
# Create a generator that yields 100KB total (larger than 64KB default chunk)
def large_chunks():
for i in range(10):
yield b"x" * 10240 # 10KB per chunk
await sb.fs.write_file("test_large.txt", large_chunks())
content = await sb.fs.read_file("test_large.txt")
assert len(content) == 102400
assert content == b"x" * 102400
def test_write_file_large_stream_sync(shared_sandbox):
"""Test write_file with a stream larger than chunk size."""
sb = shared_sandbox
# Create a generator that yields 100KB total (larger than 64KB default chunk)
def large_chunks():
for _ in range(10):
yield b"x" * 10240 # 10KB per chunk
sb.fs.write_file("test_large_sync.txt", large_chunks())
content = sb.fs.read_file("test_large_sync.txt")
assert len(content) == 102400
assert content == b"x" * 102400
# stdin streaming tests for spawn
@pytest.mark.asyncio(loop_scope="session")
async def test_spawn_stdin_stream_async(async_shared_sandbox):
"""Test spawn with stdin stream (async)."""
sb = async_shared_sandbox
def stdin_chunks():
yield b"hello from stdin"
p = await sb.spawn(
"cat",
{"stdout": "piped", "stderr": "piped"},
stdin=stdin_chunks(),
)
status = await p.wait()
assert status["code"] == 0
stdout = await p.stdout.read(-1)
assert stdout == b"hello from stdin"
def test_spawn_stdin_stream_sync(shared_sandbox):
"""Test spawn with stdin stream (sync)."""
sb = shared_sandbox
def stdin_chunks():
yield b"hello from stdin sync"
p = sb.spawn(
"cat",
{"stdout": "piped", "stderr": "piped"},
stdin=stdin_chunks(),
)
status = p.wait()
assert status["code"] == 0
stdout = p.stdout.read(-1)
assert stdout == b"hello from stdin sync"
@pytest.mark.asyncio(loop_scope="session")
async def test_spawn_stdin_file_object_async(async_shared_sandbox):
"""Test spawn with stdin as file-like object (async)."""
sb = async_shared_sandbox
file_obj = io.BytesIO(b"stdin from file object")
p = await sb.spawn(
"cat",
{"stdout": "piped", "stderr": "piped"},
stdin=file_obj,
)
status = await p.wait()
assert status["code"] == 0
stdout = await p.stdout.read(-1)
assert stdout == b"stdin from file object"
def test_spawn_stdin_file_object_sync(shared_sandbox):
"""Test spawn with stdin as file-like object (sync)."""
sb = shared_sandbox
file_obj = io.BytesIO(b"stdin from file object sync")
p = sb.spawn(
"cat",
{"stdout": "piped", "stderr": "piped"},
stdin=file_obj,
)
status = p.wait()
assert status["code"] == 0
stdout = p.stdout.read(-1)
assert stdout == b"stdin from file object sync"
# stdin streaming tests for deno.run
@pytest.mark.asyncio(loop_scope="session")
async def test_deno_run_stdin_stream_async(async_shared_sandbox):
"""Test deno.run with stdin stream (async)."""
sb = async_shared_sandbox
def stdin_chunks():
yield b"deno stdin test"
p = await sb.deno.run(
{
"code": """
const buf = new Uint8Array(1024);
const n = await Deno.stdin.read(buf);
if (n) {
await Deno.stdout.write(buf.subarray(0, n));
}
""",
"stdout": "piped",
"stderr": "piped",
},
stdin=stdin_chunks(),
)
status = await p.wait()
assert status["code"] == 0
stdout = await p.stdout.read(-1)
assert stdout == b"deno stdin test"
def test_deno_run_stdin_stream_sync(shared_sandbox):
"""Test deno.run with stdin stream (sync)."""
sb = shared_sandbox
def stdin_chunks():
yield b"deno stdin test sync"
p = sb.deno.run(
{
"code": """
const buf = new Uint8Array(1024);
const n = await Deno.stdin.read(buf);
if (n) {
await Deno.stdout.write(buf.subarray(0, n));
}
""",
"stdout": "piped",
"stderr": "piped",
},
stdin=stdin_chunks(),
)
status = p.wait()
assert status["code"] == 0
stdout = p.stdout.read(-1)
assert stdout == b"deno stdin test sync"
# upload tests
@pytest.mark.asyncio(loop_scope="session")
async def test_upload_file_async(async_shared_sandbox):
"""Test uploading a single file (async)."""
sb = async_shared_sandbox
with tempfile.NamedTemporaryFile(delete=False) as f:
f.write(b"uploaded file content")
local_path = f.name
try:
await sb.fs.upload(local_path, "/tmp/uploaded_file.txt")
content = await sb.fs.read_file("/tmp/uploaded_file.txt")
assert content == b"uploaded file content"
finally:
os.unlink(local_path)
def test_upload_file_sync(shared_sandbox):
"""Test uploading a single file (sync)."""
sb = shared_sandbox
with tempfile.NamedTemporaryFile(delete=False) as f:
f.write(b"uploaded file content sync")
local_path = f.name
try:
sb.fs.upload(local_path, "/tmp/uploaded_file_sync.txt")
content = sb.fs.read_file("/tmp/uploaded_file_sync.txt")
assert content == b"uploaded file content sync"
finally:
os.unlink(local_path)
@pytest.mark.asyncio(loop_scope="session")
async def test_upload_directory_async(async_shared_sandbox):
"""Test uploading a directory with files (async)."""
sb = async_shared_sandbox
with tempfile.TemporaryDirectory() as tmpdir:
# Create some files in the directory
with open(os.path.join(tmpdir, "file1.txt"), "wb") as f:
f.write(b"file1 content")
with open(os.path.join(tmpdir, "file2.txt"), "wb") as f:
f.write(b"file2 content")
# Create a subdirectory with a file
subdir = os.path.join(tmpdir, "subdir")
os.makedirs(subdir)
with open(os.path.join(subdir, "nested.txt"), "wb") as f:
f.write(b"nested content")
await sb.fs.upload(tmpdir, "/tmp/uploaded_dir")
# Verify files were uploaded
content1 = await sb.fs.read_file("/tmp/uploaded_dir/file1.txt")
assert content1 == b"file1 content"
content2 = await sb.fs.read_file("/tmp/uploaded_dir/file2.txt")
assert content2 == b"file2 content"
nested = await sb.fs.read_file("/tmp/uploaded_dir/subdir/nested.txt")
assert nested == b"nested content"
def test_upload_directory_sync(shared_sandbox):
"""Test uploading a directory with files (sync)."""
sb = shared_sandbox
with tempfile.TemporaryDirectory() as tmpdir:
# Create some files in the directory
with open(os.path.join(tmpdir, "file1.txt"), "wb") as f:
f.write(b"file1 content sync")
with open(os.path.join(tmpdir, "file2.txt"), "wb") as f:
f.write(b"file2 content sync")
# Create a subdirectory with a file
subdir = os.path.join(tmpdir, "subdir")
os.makedirs(subdir)
with open(os.path.join(subdir, "nested.txt"), "wb") as f:
f.write(b"nested content sync")
sb.fs.upload(tmpdir, "/tmp/uploaded_dir_sync")
# Verify files were uploaded
content1 = sb.fs.read_file("/tmp/uploaded_dir_sync/file1.txt")
assert content1 == b"file1 content sync"
content2 = sb.fs.read_file("/tmp/uploaded_dir_sync/file2.txt")
assert content2 == b"file2 content sync"
nested = sb.fs.read_file("/tmp/uploaded_dir_sync/subdir/nested.txt")
assert nested == b"nested content sync"
@pytest.mark.asyncio(loop_scope="session")
async def test_upload_symlink_async(async_shared_sandbox):
"""Test uploading a symlink (async)."""
sb = async_shared_sandbox
with tempfile.TemporaryDirectory() as tmpdir:
# Create a file and a symlink to it
target_path = os.path.join(tmpdir, "target.txt")
with open(target_path, "wb") as f:
f.write(b"target content")
link_path = os.path.join(tmpdir, "link.txt")
os.symlink("target.txt", link_path)
await sb.fs.upload(tmpdir, "/tmp/uploaded_symlink_dir")
# Verify the target file was uploaded
content = await sb.fs.read_file("/tmp/uploaded_symlink_dir/target.txt")
assert content == b"target content"
# Verify the symlink was created (read through symlink)
link_info = await sb.fs.lstat("/tmp/uploaded_symlink_dir/link.txt")
assert link_info["is_symlink"] is True
def test_upload_symlink_sync(shared_sandbox):
"""Test uploading a symlink (sync)."""
sb = shared_sandbox
with tempfile.TemporaryDirectory() as tmpdir:
# Create a file and a symlink to it
target_path = os.path.join(tmpdir, "target.txt")
with open(target_path, "wb") as f:
f.write(b"target content sync")
link_path = os.path.join(tmpdir, "link.txt")
os.symlink("target.txt", link_path)
sb.fs.upload(tmpdir, "/tmp/uploaded_symlink_dir_sync")
# Verify the target file was uploaded
content = sb.fs.read_file("/tmp/uploaded_symlink_dir_sync/target.txt")
assert content == b"target content sync"
# Verify the symlink was created
link_info = sb.fs.lstat("/tmp/uploaded_symlink_dir_sync/link.txt")
assert link_info["is_symlink"] is True