mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 15:08:44 -05:00
* Update PlusVotingResult * Logic * Replace plus tiers * Testing initial * Test progress * Working one test * Tests * Schema different file * Dynamic test * Fix test util
71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
import type { ActionArgs } from "@remix-run/node";
|
|
import type { z } from "zod";
|
|
import { ADMIN_ID } from "~/constants";
|
|
import { NZAP_TEST_ID } from "~/db/seed/constants";
|
|
import { db, sql } from "~/db/sql";
|
|
import { SESSION_KEY } from "~/features/auth/core/authenticator.server";
|
|
import { authSessionStorage } from "~/features/auth/core/session.server";
|
|
|
|
export function wrappedAction<T extends z.ZodTypeAny>({
|
|
action,
|
|
}: {
|
|
// TODO: strongly type this
|
|
action: (args: ActionArgs) => any;
|
|
}) {
|
|
return async (
|
|
args: z.infer<T>,
|
|
{ user }: { user?: "admin" | "regular" } = {},
|
|
) => {
|
|
const params = new URLSearchParams(args);
|
|
const request = new Request("http://app.com/path", {
|
|
method: "POST",
|
|
body: params,
|
|
headers: await authHeader(user),
|
|
});
|
|
|
|
return action({
|
|
request,
|
|
context: {},
|
|
params: {},
|
|
});
|
|
};
|
|
}
|
|
|
|
async function authHeader(user?: "admin" | "regular"): Promise<HeadersInit> {
|
|
if (!user) return [];
|
|
|
|
const session = await authSessionStorage.getSession();
|
|
|
|
session.set(SESSION_KEY, user === "admin" ? ADMIN_ID : NZAP_TEST_ID);
|
|
|
|
return [["Cookie", await authSessionStorage.commitSession(session)]];
|
|
}
|
|
|
|
export const database = {
|
|
reset: () => {
|
|
const tables = sql
|
|
.prepare(
|
|
"SELECT name FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite_%' AND name NOT LIKE 'migrations';",
|
|
)
|
|
.all() as { name: string }[];
|
|
|
|
sql.prepare("PRAGMA foreign_keys = OFF").run();
|
|
for (const table of tables) {
|
|
sql.prepare(`DELETE FROM "${table.name}"`).run();
|
|
}
|
|
sql.prepare("PRAGMA foreign_keys = ON").run();
|
|
},
|
|
insertUsers: (count: number) =>
|
|
db
|
|
.insertInto("User")
|
|
.values(
|
|
Array.from({ length: count }).map((_, i) => ({
|
|
id: i + 1,
|
|
discordName: `user${i + 1}`,
|
|
discordDiscriminator: "0",
|
|
discordId: String(i),
|
|
})),
|
|
)
|
|
.execute(),
|
|
};
|