CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | /**
* Tests for the green ecosystem: secret scanner, codeowners parser,
* auto-repair helpers, notification + audit log helpers, health routes,
* and rate limiting.
*
* These unit-level tests avoid DB + git subprocess work so they run fast.
*/
import { describe, it, expect } from "bun:test";
import app from "../app";
import { scanForSecrets, SECRET_PATTERNS } from "../lib/security-scan";
import {
parseCodeowners,
ownersForPath,
} from "../lib/codeowners";
import { generateCommitMessage } from "../lib/ai-generators";
import { isAiAvailable } from "../lib/ai-client";
describe("secret scanner", () => {
it("detects AWS access keys", () => {
const findings = scanForSecrets([
{
path: "config.env",
content: "AWS_ACCESS_KEY=AKIAZ2J4NPQR5LTMWXYZ\n",
},
]);
expect(findings.length).toBeGreaterThan(0);
expect(findings.some((f) => /AWS/i.test(f.type))).toBe(true);
});
it("detects Anthropic API keys", () => {
const findings = scanForSecrets([
{
path: "app.ts",
content:
'const key = "sk-ant-api03-QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ-AAAAAA";',
},
]);
expect(findings.some((f) => /anthropic/i.test(f.type))).toBe(true);
});
it("ignores binary/lock paths", () => {
const findings = scanForSecrets([
{
path: "package-lock.json",
content: "AKIAZ2J4NPQR5LTMWXYZ secret content",
},
]);
expect(findings.length).toBe(0);
});
it("does not match placeholder strings in test fixtures", () => {
const findings = scanForSecrets([
{
path: "test.js",
content:
'// example: AKIA" + "XAMPLE_PLACEHOLDER_KEY_FIXTURE"\nconst k = "FAKE_TEST_PLACEHOLDER";',
},
]);
// all findings should be filtered by the placeholder heuristic
expect(findings.every((f) => !/placeholder|fixture/i.test(f.snippet))).toBe(true);
});
it("has a rich library of rules", () => {
expect(SECRET_PATTERNS.length).toBeGreaterThanOrEqual(10);
});
});
describe("codeowners parser", () => {
it("parses simple rules", () => {
const rules = parseCodeowners(
"# top-level owner\n* @alice\nsrc/api/** @bob @carol\n/docs/ @alice\n"
);
expect(rules.length).toBe(3);
expect(rules[0].owners).toEqual(["alice"]);
expect(rules[1].owners).toEqual(["bob", "carol"]);
});
it("resolves last-matching rule wins", () => {
const rules = parseCodeowners("* @alice\nsrc/api/** @bob\n");
expect(ownersForPath("README.md", rules)).toEqual(["alice"]);
expect(ownersForPath("src/api/users.ts", rules)).toEqual(["bob"]);
});
it("anchors leading-slash patterns to repo root", () => {
const rules = parseCodeowners("/docs/ @alice\n");
expect(ownersForPath("docs/readme.md", rules)).toEqual(["alice"]);
expect(ownersForPath("src/docs/readme.md", rules)).toEqual([]);
});
it("ignores comments and blank lines", () => {
const rules = parseCodeowners(
"# comment\n\n \n# another\n* @ghost # trailing comment\n"
);
expect(rules.length).toBe(1);
expect(rules[0].owners).toEqual(["ghost"]);
});
});
describe("AI generator fallbacks", () => {
it("returns a safe fallback commit message when AI is unavailable", async () => {
if (isAiAvailable()) {
// API key is set — skip fallback assertion
return;
}
const msg = await generateCommitMessage("");
expect(msg.length).toBeGreaterThan(0);
expect(msg).toMatch(/^\S+/);
});
});
describe("health + metrics endpoints", () => {
it("GET /healthz returns 200", async () => {
const res = await app.request("/healthz");
expect(res.status).toBe(200);
const body = await res.json();
expect(body.ok).toBe(true);
});
it("GET /metrics returns process metrics", async () => {
const res = await app.request("/metrics");
expect(res.status).toBe(200);
const body = await res.json();
expect(typeof body.uptimeMs).toBe("number");
expect(typeof body.heapUsed).toBe("number");
});
it("response carries X-Request-Id header", async () => {
const res = await app.request("/healthz");
expect(res.headers.get("X-Request-Id")).toBeTruthy();
});
});
describe("rate limiting", () => {
it("rate-limit headers appear on /api requests", async () => {
const res = await app.request("/api/users/nonexistent/repos");
// Headers should exist even though user is missing
const limit = res.headers.get("X-RateLimit-Limit");
expect(limit).toBeTruthy();
});
});
describe("shortcuts + search page", () => {
it("GET /shortcuts is public", async () => {
const res = await app.request("/shortcuts");
expect(res.status).toBe(200);
const html = await res.text();
expect(html).toContain("Keyboard shortcuts");
});
it("GET /search with no query shows the type tabs", async () => {
const res = await app.request("/search");
expect(res.status).toBe(200);
const html = await res.text();
expect(html).toContain("Repositories");
expect(html).toContain("Users");
});
});
|