-
Notifications
You must be signed in to change notification settings - Fork 887
Expand file tree
/
Copy pathtest_snapshot_api.py
More file actions
164 lines (117 loc) · 5.26 KB
/
test_snapshot_api.py
File metadata and controls
164 lines (117 loc) · 5.26 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
import pytest
from e2b import AsyncSandbox
@pytest.mark.skip_debug()
async def test_create_snapshot(async_sandbox: AsyncSandbox):
snapshot = await async_sandbox.create_snapshot()
assert snapshot.snapshot_id
assert len(snapshot.snapshot_id) > 0
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_create_sandbox_from_snapshot(async_sandbox: AsyncSandbox):
test_content = "content from original sandbox"
await async_sandbox.files.write("/home/user/test.txt", test_content)
snapshot = await async_sandbox.create_snapshot()
try:
new_sandbox = await AsyncSandbox.create(snapshot.snapshot_id)
try:
content = await new_sandbox.files.read("/home/user/test.txt")
assert content == test_content
finally:
await new_sandbox.kill()
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_create_multiple_sandboxes_from_snapshot(async_sandbox: AsyncSandbox):
test_content = "shared snapshot content"
await async_sandbox.files.write("/home/user/shared.txt", test_content)
snapshot = await async_sandbox.create_snapshot()
try:
sandbox1 = await AsyncSandbox.create(snapshot.snapshot_id)
sandbox2 = await AsyncSandbox.create(snapshot.snapshot_id)
try:
content1 = await sandbox1.files.read("/home/user/shared.txt")
content2 = await sandbox2.files.read("/home/user/shared.txt")
assert content1 == test_content
assert content2 == test_content
await sandbox1.files.write("/home/user/shared.txt", "modified in sandbox1")
modified_content = await sandbox1.files.read("/home/user/shared.txt")
unchanged_content = await sandbox2.files.read("/home/user/shared.txt")
assert modified_content == "modified in sandbox1"
assert unchanged_content == test_content
finally:
await sandbox1.kill()
await sandbox2.kill()
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_list_snapshots(async_sandbox: AsyncSandbox):
snapshot = await async_sandbox.create_snapshot()
try:
paginator = AsyncSandbox.list_snapshots()
assert paginator.has_next
snapshots = await paginator.next_items()
assert isinstance(snapshots, list)
found = any(s.snapshot_id == snapshot.snapshot_id for s in snapshots)
assert found
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_list_snapshots_for_sandbox(async_sandbox: AsyncSandbox):
snapshot = await async_sandbox.create_snapshot()
try:
paginator = AsyncSandbox.list_snapshots(
sandbox_id=async_sandbox.sandbox_id,
)
snapshots = await paginator.next_items()
found = any(s.snapshot_id == snapshot.snapshot_id for s in snapshots)
assert found
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_create_named_snapshot(async_sandbox: AsyncSandbox, sandbox_test_id: str):
snapshot_name = f"snap-{sandbox_test_id}"
snapshot = await async_sandbox.create_snapshot(name=snapshot_name)
try:
assert snapshot.snapshot_id
assert isinstance(snapshot.names, list)
assert len(snapshot.names) > 0
assert any(snapshot_name in n for n in snapshot.names)
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_delete_snapshot(async_sandbox: AsyncSandbox):
snapshot = await async_sandbox.create_snapshot()
deleted = await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
assert deleted is True
deleted_again = await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
assert deleted_again is False
@pytest.mark.skip_debug()
async def test_snapshot_preserves_filesystem(async_sandbox: AsyncSandbox):
app_dir = "/home/user/app"
config_path = f"{app_dir}/config.json"
config_content = '{"env": "test"}'
data_path = f"{app_dir}/data.txt"
data_content = "important data"
await async_sandbox.files.make_dir(app_dir)
await async_sandbox.files.write(config_path, config_content)
await async_sandbox.files.write(data_path, data_content)
snapshot = await async_sandbox.create_snapshot()
try:
new_sandbox = await AsyncSandbox.create(snapshot.snapshot_id)
try:
dir_exists = await new_sandbox.files.exists(app_dir)
assert dir_exists
config = await new_sandbox.files.read(config_path)
data = await new_sandbox.files.read(data_path)
assert config == config_content
assert data == data_content
finally:
await new_sandbox.kill()
finally:
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)
@pytest.mark.skip_debug()
async def test_create_snapshot_class_method(async_sandbox: AsyncSandbox):
snapshot = await AsyncSandbox.create_snapshot(async_sandbox.sandbox_id)
assert snapshot.snapshot_id
assert len(snapshot.snapshot_id) > 0
await AsyncSandbox.delete_snapshot(snapshot.snapshot_id)