Files
zerobyte/app/test/helpers/volume.ts

29 lines
880 B
TypeScript

import { db } from "~/server/db/db";
import { faker } from "@faker-js/faker";
import { volumesTable, type VolumeInsert } from "~/server/db/schema";
import { LOCAL_AGENT_ID } from "~/server/modules/agents/constants";
import { ensureTestOrganization, TEST_ORG_ID } from "./organization";
import { generateShortId } from "~/server/utils/id";
export const createTestVolume = async (overrides: Partial<VolumeInsert> = {}) => {
await ensureTestOrganization();
const volume: VolumeInsert = {
name: faker.system.fileName(),
config: {
backend: "directory",
path: `/mnt/volumes/${faker.system.fileName()}`,
},
status: "mounted",
autoRemount: true,
shortId: generateShortId(),
type: "directory",
agentId: LOCAL_AGENT_ID,
organizationId: TEST_ORG_ID,
...overrides,
};
const data = await db.insert(volumesTable).values(volume).returning();
return data[0];
};