pantry/scripts/test.ts

100 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-08-01 22:43:40 +03:00
#!/usr/bin/env -S tea -E
/*---
args:
- deno
- run
- --allow-net
- --allow-run
- --allow-read
- --allow-write=/opt/tea.xyz/tmp
- --allow-env
- --import-map={{ srcroot }}/import-map.json
---*/
2022-08-27 21:11:25 +03:00
import { parsePackage, semver, Path, PackageRequirement, PlainObject, parsePackageRequirement } from "types"
2022-08-01 22:43:40 +03:00
import usePantry from "hooks/usePantry.ts"
import useShellEnv, { expand } from "hooks/useShellEnv.ts"
2022-08-10 21:58:22 +03:00
import { run, undent, isPlainObject } from "utils"
2022-08-01 22:43:40 +03:00
import { validatePackageRequirement } from "utils/lvl2.ts"
2022-08-17 15:22:22 +03:00
import useFlags from "hooks/useFlags.ts"
2022-08-27 21:11:25 +03:00
import useCellar from "hooks/useCellar.ts"
2022-08-17 15:22:22 +03:00
2022-08-27 21:11:25 +03:00
const { debug } = useFlags()
2022-08-01 22:43:40 +03:00
//TODO install any other deps
const pantry = usePantry()
2022-08-27 21:11:25 +03:00
const pkg = await (async () => {
if (Deno.args[1] == "--magic") {
const i = await useCellar().resolve(parsePackageRequirement(Deno.args[0]))
return i.pkg
} else {
return parsePackage(Deno.args[0])
}
})()
2022-08-01 22:43:40 +03:00
const self = {
project: pkg.project,
constraint: new semver.Range(pkg.version.toString())
}
const [yml] = await pantry.getYAML(pkg)
const deps: PackageRequirement[] = [self, ...get_deps()]
const env = await useShellEnv(deps)
let text = undent`
#!/bin/bash
set -e
set -o pipefail
set -x
${expand(env.vars)}
`
2022-08-27 21:11:25 +03:00
const tmp = Path.mktmp({ prefix: `${pkg.project}-${pkg.version}+` })
2022-08-01 22:43:40 +03:00
try {
if (yml.test.fixture) {
const fixture = tmp.join("fixture.tea").write({ text: yml.test.fixture.toString() })
text += `export FIXTURE="${fixture}"\n\n`
}
2022-08-27 21:11:25 +03:00
const cwd = tmp.join("wd").mkdir()
text += `cd "${cwd}"\n\n`
2022-08-01 22:43:40 +03:00
text += await pantry.getScript(pkg, 'test')
text += "\n"
2022-08-27 21:11:25 +03:00
for await (const [path, {name, isFile}] of pantry.prefix(pkg).ls()) {
if (isFile && name != 'package.yml') path.cp({ into: cwd })
}
2022-08-01 22:43:40 +03:00
const cmd = tmp
.join("test.sh")
.write({ text, force: true })
.chmod(0o500)
2022-08-27 21:11:25 +03:00
await run({ cmd, cwd })
2022-08-01 22:43:40 +03:00
} finally {
2022-08-27 21:11:25 +03:00
if (!debug) tmp.rm({ recursive: true })
2022-08-01 22:43:40 +03:00
}
function get_deps() {
const rv: PackageRequirement[] = []
attempt(yml.dependencies)
attempt(yml.test.dependencies)
return rv
function attempt(obj: PlainObject) {
if (isPlainObject(obj))
for (const [project, constraint] of Object.entries(obj)) {
const pkg = validatePackageRequirement({ project, constraint })
if (pkg) rv.push(pkg)
2022-08-01 22:43:40 +03:00
}
}
}