// Mocks the admin API via cy.intercept — no live backend. const adminBody = { id: 1, email: "ops@example.com", name: "Ops", createdAt: "2026-08-01T00:00:00.000Z", lastLoginAt: "2026-08-28T09:00:00.000Z", }; function pendingGroups() { return [ { normalizedName: "piment d espelette", displayNames: ["Piment d'Espelette", "piment d espelette"], ingredientIds: [11, 12], recipeCount: 2, sampleRecipes: [ { id: 1, name: "Poulet basquaise" }, { id: 2, name: "Piperade" }, ], firstSeenAt: "2026-08-20T10:00:00.000Z", allReviewed: false, }, { normalizedName: "sumac", displayNames: ["Sumac"], ingredientIds: [13], recipeCount: 1, sampleRecipes: [{ id: 3, name: "Fattoush" }], firstSeenAt: "2026-08-22T10:00:00.000Z", allReviewed: false, }, ]; } describe("Admin catalog — off-catalog ingredients", () => { beforeEach(() => { cy.viewport(1400, 900); cy.intercept("GET", "**/admin/auth/me", { statusCode: 200, body: adminBody }); }); it("lists placeholder groups newest-impact first with their recipe count and spelling variants", () => { cy.intercept("GET", "**/admin/catalog/placeholders*", { statusCode: 200, body: pendingGroups(), }).as("getPlaceholders"); cy.visit("/catalogue"); cy.wait("@getPlaceholders"); cy.get(".catalog-card").should("have.length", 2); cy.get(".catalog-card").first().should("contain.text", "Piment d'Espelette"); cy.contains(".catalog-card", "Piment d'Espelette") .should("contain.text", "2 recette") .and("contain.text", "piment d espelette") .and("contain.text", "Poulet basquaise"); }); it("marks a group reviewed and reloads the list", () => { cy.intercept("GET", "**/admin/catalog/placeholders*", { statusCode: 200, body: pendingGroups(), }).as("getPlaceholders"); cy.intercept("PATCH", "**/admin/catalog/placeholders/mark-reviewed", { statusCode: 200, body: { reviewed: 1 }, }).as("markReviewed"); cy.visit("/catalogue"); cy.wait("@getPlaceholders"); cy.contains(".catalog-card", "Sumac").contains("button", "Marquer comme traité").click(); cy.wait("@markReviewed") .its("request.body") .should("deep.equal", { ingredientIds: [13] }); // The page re-fetches the list after the PATCH. cy.get("@getPlaceholders.all").should("have.length.greaterThan", 1); }); it("switches to the reviewed archive tab", () => { cy.intercept("GET", "**/admin/catalog/placeholders", { statusCode: 200, body: pendingGroups(), }); cy.intercept("GET", "**/admin/catalog/placeholders?reviewed=true", { statusCode: 200, body: [], }).as("getReviewed"); cy.visit("/catalogue"); cy.contains(".catalog-tabs button", "Traités").click(); cy.wait("@getReviewed"); cy.contains("Aucun ingrédient hors-catalogue").should("be.visible"); }); });