48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import assert from "node:assert/strict";
|
|
import { test } from "node:test";
|
|
import request from "supertest";
|
|
import { createApp } from "../src/app";
|
|
|
|
const app = createApp();
|
|
|
|
test("GET /api/health returns ok", async () => {
|
|
const res = await request(app).get("/api/health").expect(200);
|
|
assert.equal(res.body.status, "ok");
|
|
assert.equal(typeof res.body.version, "string");
|
|
assert.ok(res.body.version.length > 0);
|
|
});
|
|
|
|
test("GET /api/meta returns version for UI footer", async () => {
|
|
const res = await request(app).get("/api/meta").expect(200);
|
|
assert.equal(typeof res.body.version, "string");
|
|
assert.ok(res.body.version.length > 0);
|
|
});
|
|
|
|
test("GET /api/ready succeeds with mock database", async () => {
|
|
const res = await request(app).get("/api/ready").expect(200);
|
|
assert.equal(res.body.status, "ready");
|
|
assert.equal(res.body.db, "connected");
|
|
});
|
|
|
|
test("GET /api/races rejects invalid year", async () => {
|
|
const res = await request(app).get("/api/races?year=bad").expect(400);
|
|
assert.equal(res.body.error, "validation_error");
|
|
assert.ok(Array.isArray(res.body.details));
|
|
});
|
|
|
|
test("GET /api/races rejects month out of range", async () => {
|
|
const res = await request(app).get("/api/races?month=13").expect(400);
|
|
assert.equal(res.body.error, "validation_error");
|
|
});
|
|
|
|
test("GET /api/races accepts year and month", async () => {
|
|
const res = await request(app).get("/api/races?year=2026&month=5").expect(200);
|
|
assert.ok(Array.isArray(res.body));
|
|
});
|
|
|
|
test("GET /api/races/:id returns not_found", async () => {
|
|
const res = await request(app).get("/api/races/does-not-exist").expect(404);
|
|
assert.equal(res.body.error, "not_found");
|
|
assert.ok(Array.isArray(res.body.details));
|
|
});
|