mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 18:10:39 +09:00
> **Stacked PR.** Sits on top of #5278 (`e2b/stage-stdin-to-temp-file`) which ships the stdin-staging fix this builds on. The cumulative diff against `master` includes that PR's content; the files touched by *this* PR's commit are `packages/adapter-utils/src/execution-target.ts`, `packages/plugins/sandbox-providers/e2b/src/plugin.ts`, and `packages/plugins/sandbox-providers/e2b/src/plugin.test.ts`. ## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies > - The adapter Test flow does an "is the command resolvable?" probe before running the hello probe so the report distinguishes "binary not installed" from "binary errored" > - For sandbox targets, that resolvability check was a no-op early-return — every sandboxed adapter test reported "Command is executable" regardless of whether the binary existed > - That made the resolvability check disagree with the hello probe in a way that looked like a PATH bug, when it was actually a missing CLI > - Separately, the e2b spawn used `sandbox.commands.run` with a non-login non-interactive shell whose PATH did not include npm-globals, nvm shims, or anything else the template installs via `.profile`/`.bashrc` > - This pull request makes the resolvability check honest by running a real `command -v` invocation through the sandbox runner, and aligns the e2b spawn with SSH by sourcing login profiles before `exec env KEY=val <cmd>` > - The benefit is the e2b sandbox spawn agrees with the hello probe and finds CLIs at template-installed paths ## What Changed - `packages/adapter-utils/src/execution-target.ts`: add `ensureSandboxCommandResolvable` that runs `command -v <cli>` through the sandbox runner; replace the early-return in `ensureAdapterExecutionTargetCommandResolvable` for sandbox targets - `packages/plugins/sandbox-providers/e2b/src/plugin.ts`: replace `buildCommandLine` with `buildLoginShellScript` (sources `/etc/profile`, `~/.profile`, `~/.bash_profile`, `~/.bashrc`, `~/.zprofile`, and nvm.sh before `exec env KEY=val <cmd>`); env vars are interpolated inline so user-configured adapter env always wins over profile-exported values; drop the now-unused `envs:` SDK option - `plugin.test.ts` updated for the login-shell wrapping ## Verification - `pnpm vitest run --no-coverage --project @paperclipai/sandbox-e2b` — 17/17 plugin tests pass - `pnpm vitest run --no-coverage --project @paperclipai/adapter-utils` clean - `pnpm typecheck` clean - Manual: previously every sandboxed adapter said "Command is executable" then the hello probe failed with "exec: not found". After this change, missing CLIs surface honestly at the resolvability step. SSH no-regression: SSH Claude probe still passes. ## Risks Medium — sandbox adapter Test reports will start failing at the resolvability step for environments where the CLI was never actually installed. This was always the real state; the previous "Command is executable" message was incorrect. Operators should expect previously-green-but-broken sandbox environments to report accurately. ## Model Used Claude Opus 4.7 (1M context) ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable — `plugin.test.ts` updated for the login-shell wrapping - [x] If this change affects the UI, I have included before/after screenshots — N/A (no UI) - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge
616 lines
19 KiB
TypeScript
616 lines
19 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const mockCreate = vi.hoisted(() => vi.fn());
|
|
const mockConnect = vi.hoisted(() => vi.fn());
|
|
const { MockCommandExitError, MockSandboxNotFoundError, MockTimeoutError } = vi.hoisted(() => {
|
|
class MockCommandExitError extends Error {
|
|
exitCode: number;
|
|
stdout: string;
|
|
stderr: string;
|
|
|
|
constructor(result: { exitCode: number; stdout: string; stderr: string }) {
|
|
super("command failed");
|
|
this.exitCode = result.exitCode;
|
|
this.stdout = result.stdout;
|
|
this.stderr = result.stderr;
|
|
}
|
|
}
|
|
class MockSandboxNotFoundError extends Error {}
|
|
class MockTimeoutError extends Error {
|
|
stdout: string;
|
|
stderr: string;
|
|
result?: { stdout?: string; stderr?: string };
|
|
|
|
constructor(message: string, streams: { stdout?: string; stderr?: string; nested?: boolean } = {}) {
|
|
super(message);
|
|
this.stdout = streams.nested ? "" : (streams.stdout ?? "");
|
|
this.stderr = streams.nested ? "" : (streams.stderr ?? "");
|
|
this.result = streams.nested ? { stdout: streams.stdout, stderr: streams.stderr } : undefined;
|
|
}
|
|
}
|
|
return { MockCommandExitError, MockSandboxNotFoundError, MockTimeoutError };
|
|
});
|
|
|
|
vi.mock("e2b", () => ({
|
|
CommandExitError: MockCommandExitError,
|
|
SandboxNotFoundError: MockSandboxNotFoundError,
|
|
TimeoutError: MockTimeoutError,
|
|
Sandbox: {
|
|
create: mockCreate,
|
|
connect: mockConnect,
|
|
},
|
|
}));
|
|
|
|
import plugin from "./plugin.js";
|
|
|
|
function createMockSandbox(overrides: {
|
|
sandboxId?: string;
|
|
sandboxDomain?: string;
|
|
pwd?: string;
|
|
waitResult?: { exitCode: number; stdout: string; stderr: string };
|
|
} = {}) {
|
|
const handle = {
|
|
pid: 42,
|
|
stdout: "",
|
|
stderr: "",
|
|
wait: vi.fn().mockResolvedValue(overrides.waitResult ?? {
|
|
exitCode: 0,
|
|
stdout: "ok\n",
|
|
stderr: "",
|
|
}),
|
|
};
|
|
return {
|
|
sandboxId: overrides.sandboxId ?? "sandbox-123",
|
|
sandboxDomain: overrides.sandboxDomain ?? "sandbox.example.test",
|
|
setTimeout: vi.fn().mockResolvedValue(undefined),
|
|
kill: vi.fn().mockResolvedValue(undefined),
|
|
pause: vi.fn().mockResolvedValue(undefined),
|
|
files: {
|
|
write: vi.fn().mockResolvedValue(undefined),
|
|
remove: vi.fn().mockResolvedValue(undefined),
|
|
},
|
|
commands: {
|
|
run: vi.fn(async (command: string, options?: { background?: boolean }) => {
|
|
if (options?.background) return handle;
|
|
if (command === "pwd") {
|
|
return {
|
|
exitCode: 0,
|
|
stdout: `${overrides.pwd ?? "/home/user"}\n`,
|
|
stderr: "",
|
|
};
|
|
}
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "",
|
|
stderr: "",
|
|
};
|
|
}),
|
|
sendStdin: vi.fn().mockResolvedValue(undefined),
|
|
closeStdin: vi.fn().mockResolvedValue(undefined),
|
|
},
|
|
handle,
|
|
};
|
|
}
|
|
|
|
describe("E2B sandbox provider plugin", () => {
|
|
beforeEach(() => {
|
|
mockCreate.mockReset();
|
|
mockConnect.mockReset();
|
|
vi.restoreAllMocks();
|
|
delete process.env.E2B_API_KEY;
|
|
});
|
|
|
|
it("declares environment lifecycle handlers", async () => {
|
|
expect(await plugin.definition.onHealth?.()).toEqual({
|
|
status: "ok",
|
|
message: "E2B sandbox provider plugin healthy",
|
|
});
|
|
expect(plugin.definition.onEnvironmentAcquireLease).toBeTypeOf("function");
|
|
expect(plugin.definition.onEnvironmentExecute).toBeTypeOf("function");
|
|
});
|
|
|
|
it("normalizes E2B config through the generic provider shape", async () => {
|
|
const result = await plugin.definition.onEnvironmentValidateConfig?.({
|
|
driverKey: "e2b",
|
|
config: {
|
|
template: " base ",
|
|
apiKey: " e2b_test_key ",
|
|
timeoutMs: "450000.9",
|
|
reuseLease: true,
|
|
},
|
|
});
|
|
|
|
expect(result).toEqual({
|
|
ok: true,
|
|
normalizedConfig: {
|
|
template: "base",
|
|
apiKey: "e2b_test_key",
|
|
timeoutMs: 450000,
|
|
reuseLease: true,
|
|
},
|
|
});
|
|
});
|
|
|
|
it("defaults a missing template to base", async () => {
|
|
const result = await plugin.definition.onEnvironmentValidateConfig?.({
|
|
driverKey: "e2b",
|
|
config: {
|
|
timeoutMs: "450000.9",
|
|
reuseLease: true,
|
|
},
|
|
});
|
|
|
|
expect(result).toEqual({
|
|
ok: true,
|
|
normalizedConfig: {
|
|
template: "base",
|
|
apiKey: null,
|
|
timeoutMs: 450000,
|
|
reuseLease: true,
|
|
},
|
|
});
|
|
});
|
|
|
|
it("rejects empty template strings instead of silently normalizing them", async () => {
|
|
await expect(plugin.definition.onEnvironmentValidateConfig?.({
|
|
driverKey: "e2b",
|
|
config: {
|
|
template: " ",
|
|
},
|
|
})).resolves.toEqual({
|
|
ok: false,
|
|
errors: ["E2B sandbox environments require a template."],
|
|
});
|
|
});
|
|
|
|
it("uses resolved config keys before falling back to E2B_API_KEY", async () => {
|
|
const sandbox = createMockSandbox();
|
|
mockCreate.mockResolvedValue(sandbox);
|
|
process.env.E2B_API_KEY = "host-key";
|
|
|
|
const lease = await plugin.definition.onEnvironmentAcquireLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
runId: "run-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
});
|
|
|
|
expect(mockCreate).toHaveBeenCalledWith("base", expect.objectContaining({
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
}));
|
|
expect(lease).toMatchObject({
|
|
providerLeaseId: "sandbox-123",
|
|
metadata: {
|
|
provider: "e2b",
|
|
remoteCwd: "/home/user/paperclip-workspace",
|
|
},
|
|
});
|
|
expect(sandbox.commands.run).toHaveBeenNthCalledWith(1, "pwd");
|
|
expect(sandbox.commands.run).toHaveBeenNthCalledWith(2, "mkdir -p '/home/user/paperclip-workspace'");
|
|
});
|
|
|
|
it("kills the sandbox if acquire setup fails after creation", async () => {
|
|
const sandbox = createMockSandbox();
|
|
const failure = new Error("set-timeout failed");
|
|
sandbox.setTimeout.mockRejectedValueOnce(failure);
|
|
mockCreate.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentAcquireLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
runId: "run-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
})).rejects.toThrow("set-timeout failed");
|
|
|
|
expect(sandbox.kill).toHaveBeenCalled();
|
|
});
|
|
|
|
it("falls back to host E2B_API_KEY when config omits the API key", async () => {
|
|
process.env.E2B_API_KEY = "host-key";
|
|
const sandbox = createMockSandbox();
|
|
mockCreate.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentAcquireLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
runId: "run-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: null,
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
})).resolves.toMatchObject({
|
|
providerLeaseId: "sandbox-123",
|
|
});
|
|
expect(mockCreate).toHaveBeenCalledWith("base", expect.objectContaining({ apiKey: "host-key" }));
|
|
});
|
|
|
|
it("kills the sandbox if resume setup fails after reconnect", async () => {
|
|
const sandbox = createMockSandbox();
|
|
const failure = new Error("set-timeout failed");
|
|
sandbox.setTimeout.mockRejectedValueOnce(failure);
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentResumeLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
runId: "run-1",
|
|
providerLeaseId: "sandbox-123",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
})).rejects.toThrow("set-timeout failed");
|
|
|
|
expect(sandbox.kill).toHaveBeenCalled();
|
|
});
|
|
|
|
it("executes commands through a connected sandbox when stdin is provided", async () => {
|
|
const sandbox = createMockSandbox();
|
|
sandbox.commands.run.mockImplementation(async (command: string, options?: { background?: boolean }) => {
|
|
if (options?.background) return sandbox.handle;
|
|
if (command === "pwd") {
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "/home/user\n",
|
|
stderr: "",
|
|
};
|
|
}
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "stdin\n",
|
|
stderr: "",
|
|
};
|
|
});
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
const result = await plugin.definition.onEnvironmentExecute?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: { providerLeaseId: "sandbox-123", metadata: {} },
|
|
command: "printf",
|
|
args: ["hello"],
|
|
cwd: "/workspace",
|
|
env: { FOO: "bar" },
|
|
stdin: "input",
|
|
timeoutMs: 1000,
|
|
});
|
|
|
|
expect(mockConnect).toHaveBeenCalledWith("sandbox-123", expect.objectContaining({ apiKey: "resolved-key" }));
|
|
expect(sandbox.files.write).toHaveBeenCalledWith(expect.stringMatching(/^\/tmp\/paperclip-stdin-/), "input");
|
|
const stdinCall = sandbox.commands.run.mock.calls.find(([cmd]: [string]) => cmd.includes("'printf'"));
|
|
expect(stdinCall).toBeDefined();
|
|
if (!stdinCall) throw new Error("stdinCall not found");
|
|
expect(stdinCall[0]).toMatch(/\.profile/);
|
|
expect(stdinCall[0]).toMatch(/exec env FOO='bar' 'printf' 'hello' < '\/tmp\/paperclip-stdin-/);
|
|
expect(stdinCall[1]).toEqual(expect.objectContaining({ cwd: "/workspace", timeoutMs: 1000 }));
|
|
expect(stdinCall[1]).not.toHaveProperty("envs");
|
|
expect(stdinCall[1]).not.toHaveProperty("background");
|
|
expect(sandbox.commands.sendStdin).not.toHaveBeenCalled();
|
|
expect(sandbox.commands.closeStdin).not.toHaveBeenCalled();
|
|
expect(sandbox.handle.wait).not.toHaveBeenCalled();
|
|
expect(sandbox.files.remove).toHaveBeenCalledWith(expect.stringMatching(/^\/tmp\/paperclip-stdin-/));
|
|
expect(result).toEqual({
|
|
exitCode: 0,
|
|
timedOut: false,
|
|
stdout: "stdin\n",
|
|
stderr: "",
|
|
});
|
|
});
|
|
|
|
it("executes non-stdin commands in foreground mode", async () => {
|
|
const sandbox = createMockSandbox();
|
|
sandbox.commands.run.mockImplementation(async (command: string, options?: { background?: boolean }) => {
|
|
if (options?.background) return sandbox.handle;
|
|
if (command === "pwd") {
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "/home/user\n",
|
|
stderr: "",
|
|
};
|
|
}
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "foreground\n",
|
|
stderr: "",
|
|
};
|
|
});
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
const result = await plugin.definition.onEnvironmentExecute?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: { providerLeaseId: "sandbox-123", metadata: {} },
|
|
command: "printf",
|
|
args: ["hello"],
|
|
cwd: "/workspace",
|
|
env: { FOO: "bar" },
|
|
timeoutMs: 1000,
|
|
});
|
|
|
|
const fgCall = sandbox.commands.run.mock.calls.find(([cmd]: [string]) => cmd.includes("'printf'"));
|
|
expect(fgCall).toBeDefined();
|
|
if (!fgCall) throw new Error("fgCall not found");
|
|
expect(fgCall[0]).toMatch(/\.profile/);
|
|
expect(fgCall[0]).toMatch(/exec env FOO='bar' 'printf' 'hello'$/);
|
|
expect(fgCall[1]).toEqual(expect.objectContaining({ cwd: "/workspace", timeoutMs: 1000 }));
|
|
expect(fgCall[1]).not.toHaveProperty("envs");
|
|
expect(fgCall[1]).not.toHaveProperty("background");
|
|
expect(sandbox.commands.sendStdin).not.toHaveBeenCalled();
|
|
expect(sandbox.commands.closeStdin).not.toHaveBeenCalled();
|
|
expect(sandbox.handle.wait).not.toHaveBeenCalled();
|
|
expect(result).toEqual({
|
|
exitCode: 0,
|
|
timedOut: false,
|
|
stdout: "foreground\n",
|
|
stderr: "",
|
|
});
|
|
});
|
|
|
|
it("cleans up staged stdin even when writing it fails", async () => {
|
|
const sandbox = createMockSandbox();
|
|
const failure = new Error("write failed");
|
|
sandbox.files.write.mockRejectedValueOnce(failure);
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentExecute?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: { providerLeaseId: "sandbox-123", metadata: {} },
|
|
command: "printf",
|
|
args: ["hello"],
|
|
cwd: "/workspace",
|
|
env: { FOO: "bar" },
|
|
stdin: "input",
|
|
timeoutMs: 1000,
|
|
})).rejects.toThrow("write failed");
|
|
|
|
expect(sandbox.files.remove).toHaveBeenCalledWith(expect.stringMatching(/^\/tmp\/paperclip-stdin-/));
|
|
expect(sandbox.commands.sendStdin).not.toHaveBeenCalled();
|
|
expect(sandbox.handle.wait).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("preserves partial foreground output when a non-stdin command times out", async () => {
|
|
const sandbox = createMockSandbox();
|
|
sandbox.commands.run.mockImplementation(async (command: string, options?: { background?: boolean }) => {
|
|
if (options?.background) return sandbox.handle;
|
|
if (command === "pwd") {
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "/home/user\n",
|
|
stderr: "",
|
|
};
|
|
}
|
|
throw new MockTimeoutError("command timed out", {
|
|
stdout: "partial stdout\n",
|
|
stderr: "partial stderr\n",
|
|
});
|
|
});
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
const result = await plugin.definition.onEnvironmentExecute?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: { providerLeaseId: "sandbox-123", metadata: {} },
|
|
command: "printf",
|
|
args: ["hello"],
|
|
cwd: "/workspace",
|
|
env: { FOO: "bar" },
|
|
timeoutMs: 1000,
|
|
});
|
|
|
|
expect(result).toEqual({
|
|
exitCode: null,
|
|
timedOut: true,
|
|
stdout: "partial stdout\n",
|
|
stderr: "partial stderr\ncommand timed out\n",
|
|
});
|
|
});
|
|
|
|
it("preserves partial foreground output when a stdin command times out", async () => {
|
|
const sandbox = createMockSandbox();
|
|
sandbox.commands.run.mockImplementation(async (command: string, options?: { background?: boolean }) => {
|
|
if (options?.background) return sandbox.handle;
|
|
if (command === "pwd") {
|
|
return {
|
|
exitCode: 0,
|
|
stdout: "/home/user\n",
|
|
stderr: "",
|
|
};
|
|
}
|
|
throw new MockTimeoutError("command timed out", {
|
|
stdout: "stdin stdout\n",
|
|
stderr: "stdin stderr\n",
|
|
nested: true,
|
|
});
|
|
});
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
const result = await plugin.definition.onEnvironmentExecute?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: { providerLeaseId: "sandbox-123", metadata: {} },
|
|
command: "printf",
|
|
args: ["hello"],
|
|
cwd: "/workspace",
|
|
env: { FOO: "bar" },
|
|
stdin: "input",
|
|
timeoutMs: 1000,
|
|
});
|
|
|
|
expect(result).toEqual({
|
|
exitCode: null,
|
|
timedOut: true,
|
|
stdout: "stdin stdout\n",
|
|
stderr: "stdin stderr\ncommand timed out\n",
|
|
});
|
|
});
|
|
|
|
it("pauses reusable leases and kills ephemeral leases on release", async () => {
|
|
const reusable = createMockSandbox({ sandboxId: "sandbox-reusable" });
|
|
const ephemeral = createMockSandbox({ sandboxId: "sandbox-ephemeral" });
|
|
mockConnect.mockResolvedValueOnce(reusable).mockResolvedValueOnce(ephemeral);
|
|
|
|
await plugin.definition.onEnvironmentReleaseLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: true,
|
|
},
|
|
providerLeaseId: "sandbox-reusable",
|
|
});
|
|
await plugin.definition.onEnvironmentReleaseLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
providerLeaseId: "sandbox-ephemeral",
|
|
});
|
|
|
|
expect(reusable.pause).toHaveBeenCalled();
|
|
expect(reusable.kill).not.toHaveBeenCalled();
|
|
expect(ephemeral.kill).toHaveBeenCalled();
|
|
});
|
|
|
|
it("falls back to kill when pausing a reusable lease fails", async () => {
|
|
const sandbox = createMockSandbox({ sandboxId: "sandbox-reusable" });
|
|
const warnSpy = vi.spyOn(console, "warn").mockImplementation(() => undefined);
|
|
sandbox.pause.mockRejectedValueOnce(new Error("pause failed"));
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentReleaseLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: true,
|
|
},
|
|
providerLeaseId: "sandbox-reusable",
|
|
})).resolves.toBeUndefined();
|
|
|
|
expect(sandbox.pause).toHaveBeenCalled();
|
|
expect(sandbox.kill).toHaveBeenCalled();
|
|
expect(warnSpy).toHaveBeenCalled();
|
|
});
|
|
|
|
it("creates the remote workspace before returning it", async () => {
|
|
const sandbox = createMockSandbox({ sandboxId: "sandbox-realize" });
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentRealizeWorkspace?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
lease: {
|
|
providerLeaseId: "sandbox-realize",
|
|
metadata: { remoteCwd: "/home/user/paperclip-workspace" },
|
|
},
|
|
workspace: {
|
|
localPath: "/tmp/paperclip-workspace",
|
|
},
|
|
})).resolves.toEqual({
|
|
cwd: "/home/user/paperclip-workspace",
|
|
metadata: {
|
|
provider: "e2b",
|
|
remoteCwd: "/home/user/paperclip-workspace",
|
|
},
|
|
});
|
|
|
|
expect(mockConnect).toHaveBeenCalledWith("sandbox-realize", expect.objectContaining({ apiKey: "resolved-key" }));
|
|
expect(sandbox.commands.run).toHaveBeenCalledWith("mkdir -p '/home/user/paperclip-workspace'");
|
|
});
|
|
|
|
it("swallows destroy kill errors after logging them", async () => {
|
|
const sandbox = createMockSandbox({ sandboxId: "sandbox-destroy" });
|
|
const warnSpy = vi.spyOn(console, "warn").mockImplementation(() => undefined);
|
|
sandbox.kill.mockRejectedValueOnce(new Error("kill failed"));
|
|
mockConnect.mockResolvedValue(sandbox);
|
|
|
|
await expect(plugin.definition.onEnvironmentDestroyLease?.({
|
|
driverKey: "e2b",
|
|
companyId: "company-1",
|
|
environmentId: "env-1",
|
|
config: {
|
|
template: "base",
|
|
apiKey: "resolved-key",
|
|
timeoutMs: 300000,
|
|
reuseLease: false,
|
|
},
|
|
providerLeaseId: "sandbox-destroy",
|
|
})).resolves.toBeUndefined();
|
|
|
|
expect(sandbox.kill).toHaveBeenCalled();
|
|
expect(warnSpy).toHaveBeenCalled();
|
|
});
|
|
});
|