-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathhost.test.ts
58 lines (43 loc) · 1.28 KB
/
host.test.ts
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
import { assert } from 'vitest'
import Sandbox from '../../src/index.js'
import { isDebug, sandboxTest, template, wait } from '../setup.js'
sandboxTest('ping server in running sandbox', async ({ sandbox }) => {
const cmd = await sandbox.commands.run('python -m http.server 8000', {
background: true,
})
try {
await wait(10_000)
const host = sandbox.getHost(8000)
const res = await fetch(`${isDebug ? 'http' : 'https'}://${host}`)
assert.equal(res.status, 200)
} finally {
try {
await cmd.kill()
} catch (e) {
console.error(e)
}
}
})
sandboxTest('ping server in non-running sandbox', async () => {
const sbx = await Sandbox.create(template, { timeoutMs: 60_000 })
const cmd = await sbx.commands.run('python -m http.server 8000', {
background: true,
})
try {
await wait(10_000)
const host = sbx.getHost(8000)
const res = await fetch(`${isDebug ? 'http' : 'https'}://${host}`)
assert.equal(res.status, 200)
await sbx.kill()
const res2 = await fetch(`${isDebug ? 'http' : 'https'}://${host}`)
assert.equal(res2.status, 502)
const text = await res2.text()
assert.equal(text, 'Sandbox does not exist.')
} finally {
try {
await cmd.kill()
} catch (e) {
console.error(e)
}
}
})