-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathconnect.test.ts
43 lines (35 loc) · 1.04 KB
/
connect.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
import { assert, test } from 'vitest'
import { Sandbox } from '../../src'
import { isDebug, template } from '../setup.js'
test('connect', async () => {
const sbx = await Sandbox.create(template, { timeoutMs: 10_000 })
try {
const isRunning = await sbx.isRunning()
assert.isTrue(isRunning)
const sbxConnection = await Sandbox.connect(sbx.sandboxId)
const isRunning2 = await sbxConnection.isRunning()
assert.isTrue(isRunning2)
} finally {
if (!isDebug) {
await sbx.kill()
}
}
})
test('connect to non-running sandbox', async () => {
const sbx = await Sandbox.create(template, { timeoutMs: 10_000 })
let isKilled = false
try {
const isRunning = await sbx.isRunning()
assert.isTrue(isRunning)
await sbx.kill()
isKilled = true
const sbxConnection = await Sandbox.connect(sbx.sandboxId)
const isRunning2 = await sbxConnection.isRunning()
assert.isFalse(isRunning2)
await sbxConnection.commands.run('echo "hello"')
} finally {
if (!isKilled) {
await sbx.kill()
}
}
})