Files
SnapOtter/tests/integration/tools/data/split-csv.test.ts
T
SnapOtter 5ffa1d55ea Merge branch 'worktree-test+suite-overhaul-and-real-fixtures' into chore/consolidate-v2.0.0
# Conflicts:
#	tests/integration/generated/settings-matrix.test.ts
#	tests/integration/platform/api.test.ts
#	tests/integration/platform/concurrent.test.ts
#	tests/integration/platform/factory-multi-input.test.ts
#	tests/integration/security/adversarial-comprehensive.test.ts
#	tests/integration/security/adversarial-coverage-gaps.test.ts
#	tests/integration/security/adversarial-extended.test.ts
#	tests/integration/security/adversarial-final-gaps.test.ts
#	tests/integration/security/adversarial-matrix.test.ts
#	tests/integration/security/adversarial-security.test.ts
#	tests/integration/security/adversarial.test.ts
#	tests/integration/tools/image/color-adjustments.test.ts
2026-06-21 02:18:53 +08:00

125 lines
3.9 KiB
TypeScript

import AdmZip from "adm-zip";
import { afterAll, beforeAll, describe, expect, it } from "vitest";
import { fixtures, readFixture } from "../../../fixtures/index.js";
import {
buildTestApp,
createMultipartPayload,
loginAsAdmin,
type TestApp,
} from "../../test-server.js";
const CSV = readFixture(fixtures.data.csv);
const TSV = readFixture(fixtures.data.tsv);
let testApp: TestApp;
let adminToken: string;
beforeAll(async () => {
testApp = await buildTestApp();
adminToken = await loginAsAdmin(testApp.app);
}, 30_000);
afterAll(async () => {
await testApp.cleanup();
}, 10_000);
async function runTool(settings: Record<string, unknown>) {
const { body, contentType } = createMultipartPayload([
{ name: "file", filename: "tiny.csv", contentType: "text/csv", content: CSV },
{ name: "settings", content: JSON.stringify(settings) },
]);
return testApp.app.inject({
method: "POST",
url: "/api/v1/tools/files/split-csv",
headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType },
body,
});
}
describe("split-csv (pure JS, no skipIf)", () => {
it("splits with rowsPerFile 1 into a zip with 3 entries each containing the header", async () => {
const res = await runTool({ rowsPerFile: 1, keepHeader: true });
expect(res.statusCode).toBe(200);
const envelope = JSON.parse(res.body);
expect(envelope.downloadUrl).toBeDefined();
const dl = await testApp.app.inject({
method: "GET",
url: envelope.downloadUrl,
});
expect(dl.statusCode).toBe(200);
// Verify zip magic (PK header: 0x50 0x4B)
expect(dl.rawPayload[0]).toBe(0x50);
expect(dl.rawPayload[1]).toBe(0x4b);
// Verify 3 entries via adm-zip (3 data rows = 3 parts)
const zip = new AdmZip(Buffer.from(dl.rawPayload));
const entries = zip.getEntries();
expect(entries.length).toBe(3);
// Each part should contain the header row "name,age"
for (const entry of entries) {
const text = entry.getData().toString("utf8");
expect(text).toContain("name,age");
}
}, 30_000);
it("splits a TSV file correctly with rowsPerFile 1", async () => {
const { body: tsvBody, contentType: tsvCt } = createMultipartPayload([
{
name: "file",
filename: "tiny.tsv",
contentType: "text/tab-separated-values",
content: TSV,
},
{ name: "settings", content: JSON.stringify({ rowsPerFile: 1, keepHeader: true }) },
]);
const res = await testApp.app.inject({
method: "POST",
url: "/api/v1/tools/files/split-csv",
headers: { authorization: `Bearer ${adminToken}`, "content-type": tsvCt },
body: tsvBody,
});
expect(res.statusCode).toBe(200);
const envelope = JSON.parse(res.body);
expect(envelope.downloadUrl).toBeDefined();
const dl = await testApp.app.inject({
method: "GET",
url: envelope.downloadUrl,
});
expect(dl.statusCode).toBe(200);
const zip = new AdmZip(Buffer.from(dl.rawPayload));
const entries = zip.getEntries();
// TSV has 2 data rows -> 2 parts
expect(entries.length).toBe(2);
// Each part should contain the header
for (const entry of entries) {
const text = entry.getData().toString("utf8");
expect(text).toContain("id");
expect(text).toContain("name");
}
}, 30_000);
it("splits with keepHeader false omits the header from parts", async () => {
const res = await runTool({ rowsPerFile: 2, keepHeader: false });
expect(res.statusCode).toBe(200);
const envelope = JSON.parse(res.body);
expect(envelope.downloadUrl).toBeDefined();
const dl = await testApp.app.inject({
method: "GET",
url: envelope.downloadUrl,
});
expect(dl.statusCode).toBe(200);
const zip = new AdmZip(Buffer.from(dl.rawPayload));
const entries = zip.getEntries();
// 4 rows (including header treated as data) / 2 = 2 parts
expect(entries.length).toBe(2);
}, 30_000);
});