mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 17:56:44 +00:00
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { Instance } from "../../src/project/instance"
|
|
import { Pty } from "../../src/pty"
|
|
import { Shell } from "../../src/shell/shell"
|
|
import { tmpdir } from "../fixture/fixture"
|
|
|
|
Shell.preferred.reset()
|
|
|
|
describe("pty shell args", () => {
|
|
if (process.platform !== "win32") return
|
|
|
|
const ps = Bun.which("pwsh") || Bun.which("powershell")
|
|
if (ps) {
|
|
test(
|
|
"does not add login args to pwsh",
|
|
async () => {
|
|
await using dir = await tmpdir()
|
|
await Instance.provide({
|
|
directory: dir.path,
|
|
fn: async () => {
|
|
const info = await Pty.create({ command: ps, title: "pwsh" })
|
|
try {
|
|
expect(info.args).toEqual([])
|
|
} finally {
|
|
await Pty.remove(info.id)
|
|
}
|
|
},
|
|
})
|
|
},
|
|
{ timeout: 30000 },
|
|
)
|
|
}
|
|
|
|
const bash = (() => {
|
|
const shell = Shell.preferred()
|
|
if (Shell.name(shell) === "bash") return shell
|
|
return Shell.gitbash()
|
|
})()
|
|
if (bash) {
|
|
test(
|
|
"adds login args to bash",
|
|
async () => {
|
|
await using dir = await tmpdir()
|
|
await Instance.provide({
|
|
directory: dir.path,
|
|
fn: async () => {
|
|
const info = await Pty.create({ command: bash, title: "bash" })
|
|
try {
|
|
expect(info.args).toEqual(["-l"])
|
|
} finally {
|
|
await Pty.remove(info.id)
|
|
}
|
|
},
|
|
})
|
|
},
|
|
{ timeout: 30000 },
|
|
)
|
|
}
|
|
})
|