mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:20:42 +00:00
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { collectArchitectureSmells, main } from "../scripts/check-architecture-smells.mjs";
|
|
import { createCapturedIo } from "./helpers/captured-io.js";
|
|
|
|
const smellsPromise = collectArchitectureSmells();
|
|
|
|
describe("architecture smell inventory", () => {
|
|
it("produces stable sorted output", async () => {
|
|
const smells = await smellsPromise;
|
|
|
|
expect(
|
|
[...smells].toSorted(
|
|
(left, right) =>
|
|
left.category.localeCompare(right.category) ||
|
|
left.file.localeCompare(right.file) ||
|
|
left.line - right.line ||
|
|
left.kind.localeCompare(right.kind) ||
|
|
left.specifier.localeCompare(right.specifier) ||
|
|
left.reason.localeCompare(right.reason),
|
|
),
|
|
).toEqual(smells);
|
|
});
|
|
|
|
it("script json output matches the collector", async () => {
|
|
const captured = createCapturedIo();
|
|
const exitCode = await main(["--json"], captured.io);
|
|
|
|
expect(exitCode).toBe(0);
|
|
expect(captured.readStderr()).toBe("");
|
|
expect(JSON.parse(captured.readStdout())).toEqual(await smellsPromise);
|
|
});
|
|
});
|