mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
freehire moved its primary domain from freehire.dev to freehire.me. Update the freehire-search skill's default API base URL, help text, docs, and examples. Backward-compatible: FREEHIRE_API_URL still overrides the base (self-hosting), and normalizeSlug is host-agnostic so pasted freehire.dev/jobs/<slug> URLs still resolve. The GitHub repo link (github.com/strelov1/freehire) is unchanged. All 27 CLI tests pass; the freehire.me API answers 200 for /jobs/search + /jobs/facets.
103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import { describe, test, expect } from "bun:test";
|
||
import { cleanHtml, normalizeSlug, toResult, toDetail, type FreehireJob } from "../src/helpers";
|
||
|
||
function job(overrides: Partial<FreehireJob> = {}): FreehireJob {
|
||
return {
|
||
public_slug: "backend-engineer-acme-ab12cd34",
|
||
source: "greenhouse",
|
||
external_id: "acme:1",
|
||
url: "https://boards.greenhouse.io/acme/jobs/1",
|
||
title: "Backend Engineer",
|
||
company: "Acme",
|
||
company_slug: "acme",
|
||
location: "Berlin, Germany",
|
||
description: "<ul><li>Build APIs</li><li>Ship & iterate</li></ul>",
|
||
skills: ["go", "kubernetes"],
|
||
work_mode: "remote",
|
||
regions: ["eu"],
|
||
countries: ["de"],
|
||
cities: ["Berlin"],
|
||
posted_at: "2026-07-06T00:00:00Z",
|
||
created_at: "2026-07-06T15:00:00Z",
|
||
enrichment: {},
|
||
...overrides,
|
||
};
|
||
}
|
||
|
||
describe("toResult — reshape into the portal-skill contract", () => {
|
||
test("maps public_slug -> id and posted_at -> date", () => {
|
||
const r = toResult(job());
|
||
expect(r.id).toBe("backend-engineer-acme-ab12cd34");
|
||
expect(r.date).toBe("2026-07-06T00:00:00Z");
|
||
});
|
||
|
||
test("carries the required contract fields", () => {
|
||
const r = toResult(job());
|
||
expect(r).toMatchObject({
|
||
title: "Backend Engineer",
|
||
company: "Acme",
|
||
company_slug: "acme",
|
||
location: "Berlin, Germany",
|
||
url: "https://boards.greenhouse.io/acme/jobs/1",
|
||
});
|
||
});
|
||
|
||
test("missing values are null, not omitted", () => {
|
||
const r = toResult(job({ company: "", location: "", posted_at: null, work_mode: undefined }));
|
||
expect(r.company).toBeNull();
|
||
expect(r.location).toBeNull();
|
||
expect(r.date).toBeNull();
|
||
expect(r.work_mode).toBeNull();
|
||
});
|
||
});
|
||
|
||
describe("toDetail — adds cleaned description + enrichment", () => {
|
||
test("strips HTML and decodes entities in the description", () => {
|
||
const d = toDetail(job());
|
||
expect(d.description).toBe("Build APIs\nShip & iterate");
|
||
});
|
||
|
||
test("surfaces enrichment fields and a formatted salary", () => {
|
||
const d = toDetail(
|
||
job({
|
||
enrichment: { seniority: "senior", category: "backend", employment_type: "full_time", salary_min: 90000, salary_max: 120000, salary_currency: "EUR" },
|
||
}),
|
||
);
|
||
expect(d.seniority).toBe("senior");
|
||
expect(d.category).toBe("backend");
|
||
expect(d.salary).toBe("EUR 90000–120000");
|
||
});
|
||
|
||
test("null enrichment fields when the enrichment object is empty", () => {
|
||
const d = toDetail(job({ enrichment: {} }));
|
||
expect(d.seniority).toBeNull();
|
||
expect(d.salary).toBeNull();
|
||
});
|
||
});
|
||
|
||
describe("cleanHtml", () => {
|
||
test("preserves paragraph breaks between blocks", () => {
|
||
expect(cleanHtml("<p>One</p><p>Two</p>")).toBe("One\nTwo");
|
||
});
|
||
test("decodes hex numeric entities", () => {
|
||
expect(cleanHtml("Café")).toBe("Café");
|
||
});
|
||
test("returns null for empty input", () => {
|
||
expect(cleanHtml("")).toBeNull();
|
||
expect(cleanHtml(null)).toBeNull();
|
||
});
|
||
});
|
||
|
||
describe("normalizeSlug", () => {
|
||
test("accepts a bare slug", () => {
|
||
expect(normalizeSlug("golang-zensar-2bxu6dxm")).toBe("golang-zensar-2bxu6dxm");
|
||
});
|
||
test("extracts the slug from a /jobs/<slug> URL", () => {
|
||
expect(normalizeSlug("https://freehire.me/jobs/golang-zensar-2bxu6dxm")).toBe("golang-zensar-2bxu6dxm");
|
||
});
|
||
test("rejects a non-slug string", () => {
|
||
expect(normalizeSlug("not a slug!")).toBeNull();
|
||
expect(normalizeSlug("")).toBeNull();
|
||
});
|
||
});
|