-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathrun.test.ts
50 lines (40 loc) · 1.42 KB
/
run.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
import { useTestConfig } from "../hooks/useTestConfig.ts"
import { assertEquals, assertRejects } from "@std/assert"
import undent from "outdent"
import run from "./run.ts"
Deno.test("porcelain.run", async runner => {
const { prefix } = useTestConfig()
const foo = prefix.join("foo.com/v5.43.0/bin").mkdir("p")
if (Deno.build.os != 'windows') {
foo.join("foo").write({ text: undent`
#!/bin/sh
if [ "$1" = "--fail" ]; then exit 1; fi
echo "abcdef--"
echo "ghijkl--" 1>&2
`}).chmod(0o755)
} else {
foo.join("foo.bat").write({text: undent`
@echo off
IF "%~1"=="--fail" ( exit /b 1 )
echo abcdef--
echo ghijkl-- 1>&2
`})
}
prefix.join("bar.com/v1.2.3").mkdir('p').join("not-empty").touch()
await runner.step("std", async () => {
await run("foo --args")
await run("foo") // tests no spaces branch
await assertRejects(() => run([]))
})
await runner.step("std(out|err)", async () => {
const { stdout } = await run(["foo", "--args"], {stdout: true})
const nl = Deno.build.os === "windows" ? "\r\n" : "\n";
assertEquals(stdout, `abcdef--${nl}`)
const { stderr } = await run(["foo", "--args"], {stderr: true})
const expected = Deno.build.os === "windows" ? 'ghijkl-- \r\n' : 'ghijkl--\n'
assertEquals(stderr, expected)
})
await runner.step("cmd fails", async () => {
await assertRejects(() => run(["foo", "--fail"]))
})
})