Release Network Tools 0.1.0

This commit is contained in:
2026-09-01 02:44:20 +02:00
commit 729430295b
61 changed files with 8357 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
import { describe, expect, it } from "vitest";
import { buildCsp, inspectHeaders } from "../../src/network/http";
import { lookupMime } from "../../src/network/mime";
describe("HTTP helpers", () => {
it("parses duplicates and reports missing security headers", () => {
const result = inspectHeaders(
"Content-Type: text/html\nSet-Cookie: a=1\nSet-Cookie: b=2",
);
expect(result.duplicates).toContain("set-cookie");
expect(result.findings).toContain(
"No Content-Security-Policy header is present.",
);
});
it("rejects folded headers", () => {
expect(() => inspectHeaders("X-Test: one\n two")).toThrow(/folded/u);
});
it("builds a restrictive CSP and makes dangerous sources visible", () => {
const result = buildCsp({
defaultSrc: "'self'",
scriptSrc: "'self' 'unsafe-eval'",
styleSrc: "'self'",
imgSrc: "'self' data:",
connectSrc: "'self'",
workerSrc: "'self' blob:",
});
expect(result.policy).toContain("object-src 'none'");
expect(result.warnings.join(" ")).toMatch(/unsafe-eval/u);
});
});
describe("MIME lookup", () => {
it("finds types by extension or media type", () => {
expect(lookupMime(".wasm")).toEqual([
{ extension: "wasm", mime: "application/wasm" },
]);
expect(lookupMime("epub")[0]?.mime).toBe("application/epub+zip");
});
});
+76
View File
@@ -0,0 +1,76 @@
import { describe, expect, it } from "vitest";
import { buildDnsRecord } from "../../src/network/dns";
import { buildUrl, inspectUrl } from "../../src/network/url";
describe("URL inspection", () => {
it("preserves duplicate query values and resolves relative URLs", () => {
const inspected = inspectUrl(
"../items?a=1&a=2#part",
"https://Example.com/a/b/",
);
expect(inspected.hostname).toBe("example.com");
expect(inspected.query).toEqual([
{ key: "a", value: "1" },
{ key: "a", value: "2" },
]);
expect(buildUrl(inspected)).toBe(
"https://example.com/a/items?a=1&a=2#part",
);
});
it("warns about credentials without disclosing the password", () => {
const inspected = inspectUrl("https://alice:secret@example.test/");
expect(inspected.hasPassword).toBe(true);
expect(JSON.stringify(inspected)).not.toContain("secret");
});
});
describe("DNS construction", () => {
it("builds common zone-file records", () => {
expect(
buildDnsRecord({
owner: "www",
ttl: 3600,
type: "A",
value: "192.0.2.4",
}),
).toBe("www 3600 IN A 192.0.2.4");
expect(
buildDnsRecord({
owner: "@",
ttl: 300,
type: "MX",
value: "mail.example.",
priority: 10,
}),
).toBe("@ 300 IN MX 10 mail.example.");
});
it("quotes TXT data and rejects oversized values", () => {
expect(
buildDnsRecord({ owner: "@", ttl: 60, type: "TXT", value: 'a"b' }),
).toContain('"a\\"b"');
expect(() =>
buildDnsRecord({
owner: "@",
ttl: 60,
type: "TXT",
value: "x".repeat(256),
}),
).toThrow(/255/u);
});
it("canonicalises addresses and rejects malformed IPv6 text", () => {
expect(
buildDnsRecord({
owner: "@",
ttl: 60,
type: "AAAA",
value: "2001:0db8:0:0:0:0:0:1",
}),
).toBe("@ 60 IN AAAA 2001:db8::1");
expect(() =>
buildDnsRecord({ owner: "@", ttl: 60, type: "AAAA", value: "::::" }),
).toThrow(/IPv6/u);
});
});