Curated, product-agnostic snapshot of the post-story-04 tree: demo content deleted, auth-only reference feature, web-next shell, all gates green. Product-specific docs, ADRs 027-029, PRDs/epics/archive, editor library traces, and product naming are curated out; generic template repairs (coverage provider devDeps, root test:coverage script, live lint fixes, root-only release-please) are kept. See TEMPLATE.md for provenance, curation list, and usage. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
import { describe, it } from "vitest";
|
|
import { RuleTester } from "eslint";
|
|
import path from "node:path";
|
|
import os from "node:os";
|
|
import fs from "node:fs";
|
|
import rule from "./feature-must-have-manifest.js";
|
|
|
|
function makeFeatureFixture({ withManifest }) {
|
|
const repoRoot = fs.mkdtempSync(path.join(os.tmpdir(), "fmm-"));
|
|
const featureDir = path.join(repoRoot, "packages", "demo");
|
|
fs.mkdirSync(path.join(featureDir, "src", "application", "use-cases"), {
|
|
recursive: true,
|
|
});
|
|
if (withManifest) {
|
|
fs.writeFileSync(
|
|
path.join(featureDir, "src", "feature.manifest.ts"),
|
|
`export const demoManifest = defineFeature({ name: "demo", requiredCores: [], useCases: {}, realtimeChannels: [], jobs: [] } as const);`,
|
|
);
|
|
}
|
|
const useCaseFile = path.join(
|
|
featureDir,
|
|
"src",
|
|
"application",
|
|
"use-cases",
|
|
"do-thing.use-case.ts",
|
|
);
|
|
fs.writeFileSync(
|
|
useCaseFile,
|
|
`export const doThingUseCase = () => async () => {};`,
|
|
);
|
|
return { repoRoot, useCaseFile };
|
|
}
|
|
|
|
const tester = new RuleTester({
|
|
languageOptions: { ecmaVersion: "latest", sourceType: "module" },
|
|
});
|
|
|
|
describe("feature-must-have-manifest", () => {
|
|
it("passes when the feature has a manifest", () => {
|
|
const { repoRoot, useCaseFile } = makeFeatureFixture({
|
|
withManifest: true,
|
|
});
|
|
tester.run("feature-must-have-manifest", rule, {
|
|
valid: [
|
|
{
|
|
filename: useCaseFile,
|
|
code: fs.readFileSync(useCaseFile, "utf8"),
|
|
options: [{ repoRoot }],
|
|
},
|
|
],
|
|
invalid: [],
|
|
});
|
|
});
|
|
|
|
it("fires when the feature has no manifest", () => {
|
|
const { repoRoot, useCaseFile } = makeFeatureFixture({
|
|
withManifest: false,
|
|
});
|
|
tester.run("feature-must-have-manifest", rule, {
|
|
valid: [],
|
|
invalid: [
|
|
{
|
|
filename: useCaseFile,
|
|
code: fs.readFileSync(useCaseFile, "utf8"),
|
|
options: [{ repoRoot }],
|
|
errors: [{ messageId: "missingManifest" }],
|
|
},
|
|
],
|
|
});
|
|
});
|
|
});
|