-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathsetup.ts
More file actions
70 lines (62 loc) · 1.63 KB
/
setup.ts
File metadata and controls
70 lines (62 loc) · 1.63 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
import { test as base } from 'vitest'
import { Sandbox, SandboxOpts } from '../src'
interface SandboxFixture {
sandbox: Sandbox
template: string
sandboxTestId: string
sandboxOpts: Partial<SandboxOpts>
}
const template = process.env.E2B_TESTS_TEMPLATE || 'code-interpreter-v1'
export const sandboxTest = base.extend<SandboxFixture>({
template,
sandboxTestId: [
// eslint-disable-next-line no-empty-pattern
async ({}, use) => {
const id = `test-${generateRandomString()}`
await use(id)
},
{ auto: true },
],
sandboxOpts: {},
sandbox: [
async ({ sandboxTestId, sandboxOpts }, use) => {
const sandbox = await Sandbox.create(template, {
metadata: { sandboxTestId },
...sandboxOpts,
})
try {
await use(sandbox)
} finally {
try {
await sandbox.kill()
} catch (err) {
if (!isDebug) {
console.warn(
'Failed to kill sandbox — this is expected if the test runs with local envd.'
)
}
}
}
},
{ auto: false },
],
})
export const isDebug = process.env.E2B_DEBUG !== undefined
export const isIntegrationTest = process.env.E2B_INTEGRATION_TEST !== undefined
export const secureSandboxTest = sandboxTest.extend({
sandboxOpts: {
secure: true,
network: {
allowPublicTraffic: false,
},
},
})
function generateRandomString(length: number = 8): string {
return Math.random()
.toString(36)
.substring(2, length + 2)
}
export async function wait(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms))
}
export { template }