-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathhost.test.ts
57 lines (44 loc) · 1.22 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
import { assert } from 'vitest'
import { isDebug, sandboxTest, wait } from '../setup.js'
sandboxTest.skipIf(isDebug)(
'ping server in running sandbox',
async ({ sandbox }) => {
const cmd = await sandbox.commands.run('python -m http.server 8000', {
background: true,
})
try {
await wait(1000)
const host = sandbox.getHost(8000)
let res = await fetch(`${isDebug ? 'http' : 'https'}://${host}`)
for (let i = 0; i < 20; i++) {
if (res.status === 200) {
break
}
res = await fetch(`${isDebug ? 'http' : 'https'}://${host}`)
await wait(500)
}
assert.equal(res.status, 200)
} finally {
try {
await cmd.kill()
} catch (e) {
console.error(e)
}
}
},
60_000
)
sandboxTest.skipIf(isDebug)(
'ping server in non-running sandbox',
async ({ sandbox }) => {
const host = sandbox.getHost(49983)
const url = `${isDebug ? 'http' : 'https'}://${host}/health`
const res = await fetch(url)
assert.equal(res.status, 204)
await sandbox.kill()
const res2 = await fetch(url)
assert.equal(res2.status, 502)
const text = await res2.text()
assert.equal(text, 'Sandbox not found')
}
)