8053ec6872
Closes #1676
205 lines
5.7 KiB
TypeScript
205 lines
5.7 KiB
TypeScript
import { logger, Level } from "@coder/logger"
|
|
import * as assert from "assert"
|
|
import * as path from "path"
|
|
import { parse } from "../src/node/cli"
|
|
|
|
describe("cli", () => {
|
|
beforeEach(() => {
|
|
delete process.env.LOG_LEVEL
|
|
})
|
|
|
|
// The parser will always fill these out.
|
|
const defaults = {
|
|
_: [],
|
|
}
|
|
|
|
it("should set defaults", () => {
|
|
assert.deepEqual(parse([]), defaults)
|
|
})
|
|
|
|
it("should parse all available options", () => {
|
|
assert.deepEqual(
|
|
parse([
|
|
"--bind-addr=192.169.0.1:8080",
|
|
"--auth",
|
|
"none",
|
|
"--extensions-dir",
|
|
"foo",
|
|
"--builtin-extensions-dir",
|
|
"foobar",
|
|
"--extra-extensions-dir",
|
|
"nozzle",
|
|
"1",
|
|
"--extra-builtin-extensions-dir",
|
|
"bazzle",
|
|
"--verbose",
|
|
"2",
|
|
"--log",
|
|
"error",
|
|
"--help",
|
|
"--open",
|
|
"--socket=mumble",
|
|
"3",
|
|
"--user-data-dir",
|
|
"bar",
|
|
"--cert=baz",
|
|
"--cert-key",
|
|
"qux",
|
|
"--version",
|
|
"--json",
|
|
"--port=8081",
|
|
"--host",
|
|
"0.0.0.0",
|
|
"4",
|
|
"--",
|
|
"-5",
|
|
"--6",
|
|
]),
|
|
{
|
|
_: ["1", "2", "3", "4", "-5", "--6"],
|
|
auth: "none",
|
|
"builtin-extensions-dir": path.resolve("foobar"),
|
|
"cert-key": path.resolve("qux"),
|
|
cert: {
|
|
value: path.resolve("baz"),
|
|
},
|
|
"extensions-dir": path.resolve("foo"),
|
|
"extra-builtin-extensions-dir": [path.resolve("bazzle")],
|
|
"extra-extensions-dir": [path.resolve("nozzle")],
|
|
help: true,
|
|
host: "0.0.0.0",
|
|
json: true,
|
|
log: "trace",
|
|
open: true,
|
|
port: 8081,
|
|
socket: path.resolve("mumble"),
|
|
"user-data-dir": path.resolve("bar"),
|
|
verbose: true,
|
|
version: true,
|
|
"bind-addr": "192.169.0.1:8080",
|
|
},
|
|
)
|
|
})
|
|
|
|
it("should work with short options", () => {
|
|
assert.deepEqual(parse(["-vvv", "-v"]), {
|
|
...defaults,
|
|
log: "trace",
|
|
verbose: true,
|
|
version: true,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "trace")
|
|
assert.equal(logger.level, Level.Trace)
|
|
})
|
|
|
|
it("should use log level env var", () => {
|
|
process.env.LOG_LEVEL = "debug"
|
|
assert.deepEqual(parse([]), {
|
|
...defaults,
|
|
log: "debug",
|
|
verbose: false,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "debug")
|
|
assert.equal(logger.level, Level.Debug)
|
|
|
|
process.env.LOG_LEVEL = "trace"
|
|
assert.deepEqual(parse([]), {
|
|
...defaults,
|
|
log: "trace",
|
|
verbose: true,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "trace")
|
|
assert.equal(logger.level, Level.Trace)
|
|
})
|
|
|
|
it("should prefer --log to env var and --verbose to --log", async () => {
|
|
process.env.LOG_LEVEL = "debug"
|
|
assert.deepEqual(parse(["--log", "info"]), {
|
|
...defaults,
|
|
log: "info",
|
|
verbose: false,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "info")
|
|
assert.equal(logger.level, Level.Info)
|
|
|
|
process.env.LOG_LEVEL = "trace"
|
|
assert.deepEqual(parse(["--log", "info"]), {
|
|
...defaults,
|
|
log: "info",
|
|
verbose: false,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "info")
|
|
assert.equal(logger.level, Level.Info)
|
|
|
|
process.env.LOG_LEVEL = "warn"
|
|
assert.deepEqual(parse(["--log", "info", "--verbose"]), {
|
|
...defaults,
|
|
log: "trace",
|
|
verbose: true,
|
|
})
|
|
assert.equal(process.env.LOG_LEVEL, "trace")
|
|
assert.equal(logger.level, Level.Trace)
|
|
})
|
|
|
|
it("should ignore invalid log level env var", () => {
|
|
process.env.LOG_LEVEL = "bogus"
|
|
assert.deepEqual(parse([]), defaults)
|
|
})
|
|
|
|
it("should error if value isn't provided", () => {
|
|
assert.throws(() => parse(["--auth"]), /--auth requires a value/)
|
|
assert.throws(() => parse(["--auth=", "--log=debug"]), /--auth requires a value/)
|
|
assert.throws(() => parse(["--auth", "--log"]), /--auth requires a value/)
|
|
assert.throws(() => parse(["--auth", "--invalid"]), /--auth requires a value/)
|
|
assert.throws(() => parse(["--bind-addr"]), /--bind-addr requires a value/)
|
|
})
|
|
|
|
it("should error if value is invalid", () => {
|
|
assert.throws(() => parse(["--port", "foo"]), /--port must be a number/)
|
|
assert.throws(() => parse(["--auth", "invalid"]), /--auth valid values: \[password, none\]/)
|
|
assert.throws(() => parse(["--log", "invalid"]), /--log valid values: \[trace, debug, info, warn, error\]/)
|
|
})
|
|
|
|
it("should error if the option doesn't exist", () => {
|
|
assert.throws(() => parse(["--foo"]), /Unknown option --foo/)
|
|
})
|
|
|
|
it("should not error if the value is optional", () => {
|
|
assert.deepEqual(parse(["--cert"]), {
|
|
...defaults,
|
|
cert: {
|
|
value: undefined,
|
|
},
|
|
})
|
|
})
|
|
|
|
it("should not allow option-like values", () => {
|
|
assert.throws(() => parse(["--socket", "--socket-path-value"]), /--socket requires a value/)
|
|
// If you actually had a path like this you would do this instead:
|
|
assert.deepEqual(parse(["--socket", "./--socket-path-value"]), {
|
|
...defaults,
|
|
socket: path.resolve("--socket-path-value"),
|
|
})
|
|
assert.throws(() => parse(["--cert", "--socket-path-value"]), /Unknown option --socket-path-value/)
|
|
})
|
|
|
|
it("should allow positional arguments before options", () => {
|
|
assert.deepEqual(parse(["foo", "test", "--auth", "none"]), {
|
|
...defaults,
|
|
_: ["foo", "test"],
|
|
auth: "none",
|
|
})
|
|
})
|
|
|
|
it("should support repeatable flags", () => {
|
|
assert.deepEqual(parse(["--proxy-domain", "*.coder.com"]), {
|
|
...defaults,
|
|
"proxy-domain": ["*.coder.com"],
|
|
})
|
|
assert.deepEqual(parse(["--proxy-domain", "*.coder.com", "--proxy-domain", "test.com"]), {
|
|
...defaults,
|
|
"proxy-domain": ["*.coder.com", "test.com"],
|
|
})
|
|
})
|
|
})
|