test(noc): add API and E2E tests for NOC synchronization

This commit is contained in:
2026-03-30 14:52:40 +08:00
parent 65844bac7e
commit fd52b0d281
2 changed files with 129 additions and 0 deletions

View File

@@ -1,9 +1,19 @@
import { describe, expect, it } from "bun:test";
import api from "@/api";
import { prisma } from "@/utils/db";
describe("NOC API Module", () => {
const idDesa = "darmasaba";
it("should return last sync timestamp", async () => {
const response = await api.handle(
new Request(`http://localhost/api/noc/last-sync?idDesa=${idDesa}`),
);
expect(response.status).toBe(200);
const data = await response.json();
expect(data).toHaveProperty("lastSyncedAt");
});
it("should return active divisions", async () => {
const response = await api.handle(
new Request(`http://localhost/api/noc/active-divisions?idDesa=${idDesa}`),
@@ -71,4 +81,13 @@ describe("NOC API Module", () => {
// Elysia returns 400 or 422 for validation errors
expect([400, 422]).toContain(response.status);
});
it("should return 401 for sync without admin auth", async () => {
const response = await api.handle(
new Request("http://localhost/api/noc/sync", {
method: "POST",
}),
);
expect(response.status).toBe(401);
});
});