-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbrowse-events.spec.ts
More file actions
292 lines (239 loc) · 10.2 KB
/
Copy pathbrowse-events.spec.ts
File metadata and controls
292 lines (239 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import { test, expect, type Page } from "@playwright/test";
import { Privilege } from "@/proxy";
import { createEvent, deleteIfExists } from "../global-setup";
test.describe("[no login]", () => {
test("should not be navigable", async ({ page }) => {
await page.goto("/");
// Non-admin event cards render the title as a plain heading, not a link.
await page.getByRole("heading", { name: "TestEvent", exact: true }).click();
await expect(page).toHaveURL(/localhost:3000\/$/);
});
test("direct links should not work [no login]", async ({ page }) => {
await page.goto("http://localhost:3000/event/test-event");
await page.waitForTimeout(4000);
await expect([
// two options because of redirect timing
"http://localhost:3000/",
"http://localhost:3000/login",
]).toContain(page.url());
});
});
test.describe("[mixologist]", () => {
test("should not be navigable", async ({ page, context }) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.MIXOLOGIST,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.MIXOLOGIST_LOGIN || ":")}`,
});
await page.goto("/");
// Non-admin event cards render the title as a plain heading, not a link.
await page.getByRole("heading", { name: "TestEvent", exact: true }).click();
await expect(page).toHaveURL(/localhost:3000\/$/);
});
test("direct links should not work", async ({ page, context }) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.MIXOLOGIST,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.MIXOLOGIST_LOGIN || ":")}`,
});
await page.goto("http://localhost:3000/event/test-event");
await expect(page).toHaveURL(/localhost:3000\/$/);
});
});
test.describe("[admin]", () => {
test("should be navigable to an existing event", async ({
page,
context,
}) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.ADMIN,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.ADMIN_LOGIN || ":")}`,
});
await page.goto("/");
// Find an element with the text 'About' and click on it
await page.getByRole("link", { name: "TestEvent" }).click();
await expect(page).toHaveURL("http://localhost:3000/event/test-event");
await expect(page.getByPlaceholder("Enter event name")).toHaveValue(
"TestEvent",
);
await expect(page.getByPlaceholder("Enter event name")).toBeDisabled();
await expect(page.getByPlaceholder("Auto-generated")).toHaveValue(
"test-event",
);
await expect(page.getByPlaceholder("Auto-generated")).toBeDisabled();
await expect(page.getByText("Max Orders Per Customer / Day")).toHaveValue("1860");
await expect(page.getByText("Max Orders Per Customer / Day")).toBeEditable();
await expect(page.getByPlaceholder("Where to find the booth")).toHaveValue(
"Pickup location",
);
await expect(
page.getByRole("button", { name: "Show QR codes" }),
).toBeVisible();
await expect(
page.getByPlaceholder("Shown on first contact with"),
).toHaveValue("Custom Welcome");
await expect(page.getByRole("switch")).toBeChecked({ checked: true });
await expect(page.getByText("Smoothie")).toBeVisible();
await expect(page.getByText("Barista")).toBeVisible();
await expect(page.getByText("Cappuccino", { exact: true })).toBeVisible();
await expect(
page.getByRole("button", { name: "Espresso Strong black coffee" }),
).toHaveAttribute("aria-pressed", "true");
await expect(
page.getByText("whatsapp:+447700161860", { exact: true }),
).toBeVisible();
});
test("should not be able to select more than 9 menu items + navigate to smoothie", async ({
page,
context,
}, testInfo) => {
// This test mutates item selection and mode, unlike its siblings which only
// read "test-event" — give it a private event (keyed by parallelIndex, with
// its own display name) so it never clobbers the shared fixture other spec
// files depend on, and doesn't produce a duplicate "TestEvent" heading on
// the home page while other tests are concurrently asserting against it.
const slug = `test-event-menu-cap-${testInfo.parallelIndex}`;
// Event names are capped at 20 chars by the API (src/app/api/event/route.ts).
// Must not contain "TestEvent" as a substring — other tests query
// getByRole(..., { name: "TestEvent" }) without exact:true, which matches
// on substring, so any name merely starting with "TestEvent" still collides.
const name = `MenuCapEvent${testInfo.parallelIndex}`;
const baseURL = testInfo.project.use.baseURL || "http://localhost:3000";
await deleteIfExists(baseURL, slug);
const response = await createEvent(baseURL, slug, name);
expect(response.status).toBe(201);
try {
await context.addCookies([
{
name: "privilege",
value: Privilege.ADMIN,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.ADMIN_LOGIN || ":")}`,
});
await page.goto(`http://localhost:3000/event/${slug}`);
// Wait for the freshly-created event's menu to actually be rendered
// (Espresso pre-selected) rather than a fixed sleep, since a brand-new
// event's Sync data may take longer to propagate under concurrent load.
await expect(
page.getByRole("button", { name: "Espresso Strong black coffee" }),
).toHaveAttribute("aria-pressed", "true");
// TestEvent starts with 1 item selected (Espresso); select 9 more unselected
// items to reach the 10-item cap. Scoped to the literal aria-pressed="false"
// attribute (not the role=button pressed filter) — Chromium's accessibility
// tree reports pressed:false by default for any plain button, which would
// otherwise also match the header's "Log out" button and toast dismiss buttons.
const unselectedItem = page.locator('button[aria-pressed="false"]');
for (let i = 0; i < 9; i++) {
await unselectedItem.first().click();
// Wait for this click's selection save to land before firing the
// next — the save is a fire-and-forget PUT, and rapid unawaited
// requests can complete out of order under latency, regressing the
// count if a later click's save is overtaken by an earlier one.
await expect(page.getByText(`${i + 2} of 10 items selected`)).toBeVisible();
}
// selecting an 11th item should be blocked
await unselectedItem.first().click();
await expect(
page.getByText("Cannot select more items", { exact: true }),
).toBeVisible();
await page.getByText("Smoothie").click();
} finally {
await deleteIfExists(baseURL, slug);
}
});
test("should show warning for inactive number", async ({ page, context }) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.ADMIN,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.ADMIN_LOGIN || ":")}`,
});
await page.goto("http://localhost:3000/event/test-event");
await expect(
page.getByText(
"The following senders are no longer available: +4915199999999",
),
).toBeVisible();
});
test("should be 404 for invalid event", async ({ page, context }) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.ADMIN,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.ADMIN_LOGIN || ":")}`,
});
await page.goto("http://localhost:3000/event/test-event-not-here");
await expect(page.getByRole("heading", { name: "404" })).toBeVisible();
});
test("should be navigable to a new event", async ({ page, context }) => {
await context.addCookies([
{
name: "privilege",
value: Privilege.ADMIN,
url: "http://localhost:3000",
},
]);
await context.setExtraHTTPHeaders({
Authorization: `Basic ${btoa(process.env.ADMIN_LOGIN || ":")}`,
});
await page.goto("/");
// Find an element with the text 'About' and click on it
await page.getByRole("link", { name: "New Event" }).click();
await expect(page).toHaveURL("http://localhost:3000/event/new");
await expect(page.getByPlaceholder("Enter event name")).toBeEnabled();
await expect(page.getByPlaceholder("Auto-generated")).toBeDisabled();
await expect(page.getByPlaceholder("Enter event name")).toHaveValue("");
await expect(page.getByPlaceholder("Auto-generated")).toHaveValue("");
await expect(page.getByText("Max Orders Per Customer / Day")).toHaveValue("70");
await page.getByPlaceholder("Enter event name").fill("ranDOM23");
await expect(page.getByPlaceholder("Auto-generated")).toHaveValue(
"ran-dom-23",
);
await expect(page.getByPlaceholder("Where to find the booth")).toHaveValue(
"",
);
await expect(
page.getByPlaceholder("Shown on first contact with"),
).toHaveValue("");
await expect(page.getByRole("switch")).toBeHidden();
await expect(page.getByText("Smoothie")).toBeVisible();
await expect(page.getByText("Barista")).toBeVisible();
await expect(page.getByText("Coffee", { exact: true })).toBeVisible();
await expect(page.getByText("Flat White", { exact: true })).toBeVisible();
await expect(page.getByText("Oat Milk")).toBeVisible();
await expect(page.getByText("Almond Milk")).toBeVisible();
await expect(page.getByText("Brewed coffee, black")).toBeVisible();
const createButton = page.getByRole("button", { name: "Create Event" });
await expect(createButton).toBeVisible();
// aria-disabled rather than disabled — this keeps the tooltip explaining
// why the form can't be submitted yet accessible on hover/focus.
await expect(createButton).toHaveAttribute("aria-disabled", "true");
});
});