Initialize fork and rebrand app to event_manager
CI / Server (push) Has been cancelled
Linters / Frappe Linter (push) Has been cancelled
Linters / Vulnerable Dependency Check (push) Has been cancelled
UI Tests / Playwright E2E Tests (push) Has been cancelled

This commit is contained in:
2026-05-11 09:56:57 +02:00
parent f82bb803ac
commit 786cbc724f
500 changed files with 41152 additions and 2 deletions
+66
View File
@@ -0,0 +1,66 @@
import { test as setup, expect } from "@playwright/test";
import { createDoc, docExists, getDoc, getList, updateDoc } from "../helpers/frappe";
interface NamedDoc {
name: string;
}
const testEventRoute = "custom-forms-e2e";
const testCategoryName = "E2E Test Category";
const testHostName = "E2E Test Host";
setup("setup custom forms on test event", async ({ request }) => {
let eventName: string;
const events = await getList<NamedDoc>(request, "Pohodex Event Manager Event", {
filters: { route: ["=", testEventRoute] },
});
if (events.length > 0) {
eventName = events[0].name;
} else {
if (!(await docExists(request, "Event Category", testCategoryName))) {
await createDoc(request, "Event Category", {
name: testCategoryName,
enabled: 1,
slug: "e2e-test-category",
});
}
if (!(await docExists(request, "Event Host", testHostName))) {
await createDoc(request, "Event Host", { name: testHostName });
}
const futureDate = new Date();
futureDate.setMonth(futureDate.getMonth() + 1);
const startDate = futureDate.toISOString().split("T")[0];
const event = await createDoc<NamedDoc>(request, "Pohodex Event Manager Event", {
title: "E2E Custom Forms Event",
category: testCategoryName,
host: testHostName,
start_date: startDate,
route: testEventRoute,
is_published: 1,
start_time: "09:00:00",
end_time: "17:00:00",
medium: "In Person",
});
eventName = event.name;
}
await updateDoc(request, "Pohodex Event Manager Event", eventName, {
custom_forms: [
{ doctype: "Pohodex Event Manager Event Form", form_doctype: "Event Feedback", route: "feedback", publish: 1 },
{ doctype: "Pohodex Event Manager Event Form", form_doctype: "Talk Proposal", route: "propose-talk", publish: 1 },
{ doctype: "Pohodex Event Manager Event Form", form_doctype: "Sponsorship Enquiry", route: "enquire-sponsorship", publish: 1 },
],
});
const updated = await getDoc<{ custom_forms: Array<{ route: string; publish: number }> }>(
request, "Pohodex Event Manager Event", eventName,
);
const publishedForms = (updated.custom_forms || []).filter((f) => f.publish);
expect(publishedForms.length).toBe(3);
console.log(`Custom forms enabled on event: ${eventName} (${publishedForms.length} forms: ${publishedForms.map((f) => f.route).join(", ")})`);
});