Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added tests for "killing" paused sandboxes #580

Open
wants to merge 5 commits into
base: beta
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion packages/js-sdk/tests/api/kill.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,20 @@ sandboxTest.skipIf(isDebug)('kill existing sandbox', async ({ sandbox }) => {
await Sandbox.kill(sandbox.sandboxId)

const list = await Sandbox.list()
expect(list.map(s => s.sandboxId)).not.toContain(sandbox.sandboxId)
expect(list.map((s) => s.sandboxId)).not.toContain(sandbox.sandboxId)
})

sandboxTest.skipIf(isDebug)('kill non-existing sandbox', async () => {
await expect(Sandbox.kill('non-existing-sandbox')).resolves.toBe(false)
})

sandboxTest.skipIf(isDebug)('kill paused sandboxes', async ({ sandbox }) => {
const pausedSandbox = await sandbox.pause()
await Sandbox.kill(pausedSandbox)

const list = await Sandbox.list()
const pausedSandboxId = pausedSandbox.split('-')[0] + '-' + '00000000'

expect(list.length).toBeGreaterThan(0)
expect(list.map((s) => s.sandboxId)).not.toContain(pausedSandboxId)
})
12 changes: 11 additions & 1 deletion packages/js-sdk/tests/sandbox/kill.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,15 @@ sandboxTest.skipIf(isDebug)('kill', async ({ sandbox }) => {
await sandbox.kill()

const list = await Sandbox.list()
expect(list.map(s => s.sandboxId)).not.toContain(sandbox.sandboxId)
expect(list.map((s) => s.sandboxId)).not.toContain(sandbox.sandboxId)
})

sandboxTest.skipIf(isDebug)('kill paused sandbox', async ({ sandbox }) => {
const pausedSandbox = await sandbox.pause()
await sandbox.kill()

const list = await Sandbox.list()
const pausedSandboxId = pausedSandbox.split('-')[0] + '-' + '00000000'

expect(list.map((s) => s.sandboxId)).not.toContain(pausedSandboxId)
})
11 changes: 11 additions & 0 deletions packages/python-sdk/tests/async/api_async/test_sbx_kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ async def test_kill_existing_sandbox(async_sandbox: AsyncSandbox):
@pytest.mark.skip_debug()
async def test_kill_non_existing_sandbox():
assert await AsyncSandbox.kill("non-existing-sandbox") == False


@pytest.mark.skip_debug()
async def test_kill_paused_sandbox(async_sandbox: AsyncSandbox):
paused_sandbox = await async_sandbox.pause()
assert await AsyncSandbox.kill(paused_sandbox) == True

list = await AsyncSandbox.list()
paused_sandbox_id = paused_sandbox.split("-")[0] + "-" + "00000000"

assert paused_sandbox_id not in [s.sandbox_id for s in list]
11 changes: 11 additions & 0 deletions packages/python-sdk/tests/async/sandbox_async/test_kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,14 @@ async def test_kill(async_sandbox: AsyncSandbox):

list = await AsyncSandbox.list()
assert async_sandbox.sandbox_id not in [s.sandbox_id for s in list]


@pytest.mark.skip_debug()
async def test_kill_paused_sandbox(async_sandbox: AsyncSandbox):
paused_sandbox = await async_sandbox.pause()
assert await AsyncSandbox.kill(paused_sandbox) == True

list = await AsyncSandbox.list()
paused_sandbox_id = paused_sandbox.split("-")[0] + "-" + "00000000"

assert paused_sandbox_id not in [s.sandbox_id for s in list]
11 changes: 11 additions & 0 deletions packages/python-sdk/tests/sync/api_sync/test_sbx_kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ def test_kill_existing_sandbox(sandbox: Sandbox):
@pytest.mark.skip_debug()
def test_kill_non_existing_sandbox():
assert Sandbox.kill("non-existing-sandbox") == False


@pytest.mark.skip_debug()
def test_kill_paused_sandbox(sandbox: Sandbox):
paused_sandbox = sandbox.pause()
assert Sandbox.kill(paused_sandbox) == True

list = Sandbox.list()
paused_sandbox_id = paused_sandbox.split("-")[0] + "-" + "00000000"

assert paused_sandbox_id not in [s.sandbox_id for s in list]
11 changes: 11 additions & 0 deletions packages/python-sdk/tests/sync/sandbox_sync/test_kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,14 @@ def test_kill(sandbox: Sandbox):

list = Sandbox.list()
assert sandbox.sandbox_id not in [s.sandbox_id for s in list]


@pytest.mark.skip_debug()
def test_kill_paused_sandbox(sandbox: Sandbox):
paused_sandbox = sandbox.pause()
Sandbox.kill(paused_sandbox)

list = Sandbox.list()
paused_sandbox_id = paused_sandbox.split("-")[0] + "-" + "00000000"

assert paused_sandbox_id not in [s.sandbox_id for s in list]