Introduce a continuous "loop" setting so a triggered sweep keeps the
cursor moving until the user moves the mouse (or Ctrl+C), instead of
firing a single sweep.
- strategies.ts: add optional `loopPath` to MovementStrategy; give `line`
and `diagonal` infinite loop generators that pick a direction once and
ramp forever (4px/step). Their finite `path` and declared `bounds` are
unchanged, so single-sweep behavior is identical.
- executor.ts: add ExecuteOptions { restore?, bounds?, loop? }. Omitting
options reproduces the original single-sweep contract exactly.
- keeper.ts: in loop mode, run an infinite loopPath once (stopped only by
interruption) or chain a finite path cycle after cycle; force `reflect`
bounds for every pattern and suppress the between-cycle restore, so
line/diagonal bounce edge-to-edge instead of stopping at the first edge.
- config plumbing: new boolean `loop` through config.default.json,
config.ts, configFile.ts, cli.ts (-l/--loop), and move.ts, mirroring
the existing `verbose` precedence.
- docs: README loop-mode section + usage/validation updates; CHANGELOG
Unreleased entry.
- tests: loopPath generators, executor options (bounds override, loop
selection, restore suppression), config/configFile loop plumbing, and
keeper-level loop behavior (ramps far vs. bounded single-sweep, chained
cycles). 79 pass.
169 lines
6.6 KiB
TypeScript
169 lines
6.6 KiB
TypeScript
/**
|
|
* configFile.test.ts
|
|
* ------------------
|
|
* Unit tests for the JSON config-file loader.
|
|
* Run via `bun test` (or `bun run test`).
|
|
*/
|
|
|
|
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
|
import { mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
|
|
import { loadConfigFile } from "../src/configFile.ts";
|
|
import { CliError } from "../src/errors.ts";
|
|
|
|
let TMP: string;
|
|
|
|
beforeAll(() => {
|
|
TMP = mkdtempSync(join(tmpdir(), "move-cfg-test-"));
|
|
});
|
|
|
|
afterAll(() => {
|
|
rmSync(TMP, { recursive: true, force: true });
|
|
});
|
|
|
|
function writeFixture(name: string, body: string): string {
|
|
const p = join(TMP, name);
|
|
writeFileSync(p, body);
|
|
return p;
|
|
}
|
|
|
|
describe("loadConfigFile (explicit path)", () => {
|
|
test("returns parsed overrides for a valid file", () => {
|
|
const path = writeFixture(
|
|
"valid.json",
|
|
JSON.stringify({ moveInterval: 60, verbose: true }),
|
|
);
|
|
const result = loadConfigFile(path);
|
|
expect(result).not.toBeNull();
|
|
// The bang is justified by the not-null assertion above.
|
|
expect(result!.moveInterval).toBe(60);
|
|
expect(result!.verbose).toBe(true);
|
|
// Fields not in the file are undefined.
|
|
expect(result!.checkInterval).toBeUndefined();
|
|
expect(result!.stepDelay).toBeUndefined();
|
|
expect(result!.pattern).toBeUndefined();
|
|
});
|
|
|
|
test("returns all-undefined overrides for an empty object", () => {
|
|
const path = writeFixture("empty.json", "{}");
|
|
const result = loadConfigFile(path);
|
|
expect(result).not.toBeNull();
|
|
expect(result!.moveInterval).toBeUndefined();
|
|
expect(result!.verbose).toBeUndefined();
|
|
});
|
|
|
|
test("throws CliError when explicit path does not exist", () => {
|
|
expect(() => loadConfigFile(join(TMP, "missing.json"))).toThrow(CliError);
|
|
});
|
|
|
|
test("throws on malformed JSON, mentioning the file path", () => {
|
|
const path = writeFixture("bad-json.json", "this is not json");
|
|
expect(() => loadConfigFile(path)).toThrow(/is not valid JSON/);
|
|
expect(() => loadConfigFile(path)).toThrow(new RegExp(path.replace(/[.]/g, "\\.")));
|
|
});
|
|
|
|
test("throws when root is not an object (e.g. array)", () => {
|
|
const path = writeFixture("array.json", "[1, 2, 3]");
|
|
expect(() => loadConfigFile(path)).toThrow(/JSON object at the root/);
|
|
});
|
|
|
|
test("throws when root is not an object (e.g. string)", () => {
|
|
const path = writeFixture("string.json", "\"hello\"");
|
|
expect(() => loadConfigFile(path)).toThrow(/JSON object at the root/);
|
|
});
|
|
|
|
test("throws on an unknown key, naming the typo and the allowed set", () => {
|
|
const path = writeFixture("typo.json", JSON.stringify({ movInterval: 60 }));
|
|
expect(() => loadConfigFile(path)).toThrow(/unknown key 'movInterval'/);
|
|
expect(() => loadConfigFile(path)).toThrow(/moveInterval/);
|
|
});
|
|
|
|
test("throws on non-positive numeric values", () => {
|
|
const negative = writeFixture("neg.json", JSON.stringify({ moveInterval: -1 }));
|
|
expect(() => loadConfigFile(negative)).toThrow(/'moveInterval'.*positive number/);
|
|
|
|
const zero = writeFixture("zero.json", JSON.stringify({ stepDelay: 0 }));
|
|
expect(() => loadConfigFile(zero)).toThrow(/'stepDelay'.*positive number/);
|
|
});
|
|
|
|
test("throws when a numeric field has the wrong type", () => {
|
|
const path = writeFixture("type.json", JSON.stringify({ moveInterval: "60" }));
|
|
expect(() => loadConfigFile(path)).toThrow(/'moveInterval'.*positive number/);
|
|
});
|
|
|
|
test("throws when verbose is the wrong type", () => {
|
|
const path = writeFixture("verbose.json", JSON.stringify({ verbose: "yes" }));
|
|
expect(() => loadConfigFile(path)).toThrow(/'verbose'.*boolean/);
|
|
});
|
|
|
|
test("accepts a boolean loop", () => {
|
|
const path = writeFixture("loop.json", JSON.stringify({ loop: true }));
|
|
const result = loadConfigFile(path);
|
|
expect(result!.loop).toBe(true);
|
|
});
|
|
|
|
test("throws when loop is the wrong type", () => {
|
|
const path = writeFixture("loop-bad.json", JSON.stringify({ loop: "yes" }));
|
|
expect(() => loadConfigFile(path)).toThrow(/'loop'.*boolean/);
|
|
});
|
|
|
|
test("accepts a known pattern", () => {
|
|
const path = writeFixture("pattern.json", JSON.stringify({ pattern: "arc" }));
|
|
const result = loadConfigFile(path);
|
|
expect(result!.pattern).toBe("arc");
|
|
});
|
|
|
|
test("normalizes a loosely-spelled pattern to its canonical name", () => {
|
|
const path = writeFixture("loosepattern.json", JSON.stringify({ pattern: "figure-eight" }));
|
|
const result = loadConfigFile(path);
|
|
expect(result!.pattern).toBe("figureEight");
|
|
});
|
|
|
|
test("throws on an unknown pattern, listing the valid names", () => {
|
|
const path = writeFixture("badpattern.json", JSON.stringify({ pattern: "zigzag" }));
|
|
expect(() => loadConfigFile(path)).toThrow(/'pattern'.*valid:/);
|
|
expect(() => loadConfigFile(path)).toThrow(/line/);
|
|
});
|
|
|
|
test("tolerates obsolete stepCount/stepSize keys, ignoring their values", () => {
|
|
// Seeded by pre-1.3.0 installs; must not hard-fail on upgrade. They're
|
|
// accepted but not surfaced as overrides (and even an invalid value,
|
|
// like a negative, is ignored rather than rejected).
|
|
const path = writeFixture(
|
|
"obsolete.json",
|
|
JSON.stringify({ moveInterval: 60, stepCount: -1, stepSize: 3 }),
|
|
);
|
|
const result = loadConfigFile(path);
|
|
expect(result).not.toBeNull();
|
|
expect(result!.moveInterval).toBe(60);
|
|
expect(result as unknown as Record<string, unknown>).not.toHaveProperty("stepCount");
|
|
});
|
|
|
|
test("still rejects a genuinely unknown key", () => {
|
|
const path = writeFixture("unknown.json", JSON.stringify({ movInterval: 60 }));
|
|
expect(() => loadConfigFile(path)).toThrow(/unknown key 'movInterval'/);
|
|
});
|
|
});
|
|
|
|
describe("loadConfigFile (default path)", () => {
|
|
let savedXdg: string | undefined;
|
|
|
|
beforeAll(() => {
|
|
savedXdg = process.env.XDG_CONFIG_HOME;
|
|
// Point the default path under the test tmpdir so a missing file is
|
|
// guaranteed (we never create $TMP/move/config.json).
|
|
process.env.XDG_CONFIG_HOME = TMP;
|
|
});
|
|
|
|
afterAll(() => {
|
|
if (savedXdg === undefined) delete process.env.XDG_CONFIG_HOME;
|
|
else process.env.XDG_CONFIG_HOME = savedXdg;
|
|
});
|
|
|
|
test("returns null when no file exists at the default path", () => {
|
|
expect(loadConfigFile(undefined)).toBeNull();
|
|
});
|
|
});
|