Le conteneur de prod ne peuplait jamais la table Source : seed-runtime.ts (l'entrée seed de l'image Docker, exécutée après `prisma migrate deploy`) n'appelait que seedReferenceData(), jamais registerAllRecipeSources()/ syncRecipeSources() — contrairement à prisma/seed.ts (dev). server.ts enregistre bien les adaptateurs dans son propre registre en mémoire, mais c'est un processus distinct de celui qui lance seed-runtime.js dans la chaîne CMD du Dockerfile ; sans ce sync, GET /reference/sources renvoyait toujours [], et HouseholdSettingsPage masquait silencieusement toute la section sources (sources.length === 0 → return null). C'est ce que l'utilisateur a remarqué : impossible de paramétrer les sources visibles du foyer en prod. Vérifié en local : Source/HouseSource vidées, seed-runtime.js compilé relancé exactement comme le ferait le conteneur (migrate deploy déjà appliqué, puis ce script) → les deux sources (TheMealDB, JSON-LD) sont bien resynchronisées. Ajoute aussi la couverture Cypress du parcours "sources" qui manquait : - onboarding.feature : nouveau scénario où le catalogue de sources n'est pas vide — l'étape /onboarding/sources s'affiche et se soumet, au lieu du seul scénario existant qui la voyait toujours skippée (catalogue vide). - household-settings.feature : nouveaux scénarios pour la section sources de /parametres/foyer — affichage + sauvegarde (autosave incluse) quand des sources existent, et disparition complète de la section quand le catalogue est vide. - Nouvelles steps partagées (reference-data.steps.ts pour le catalogue, household-mutations.steps.ts pour la sélection par foyer). Non exécutés localement : Chromium/Electron headless plante au lancement du process GPU dans cet environnement (limitation documentée du README, reproductible sur main, sans lien avec ce changement) — vérifiés par relecture attentive contre le code source réel (libellés de traduction, routes, formes de requête/réponse) et en suivant le même gabarit que les scénarios existants déjà verts en CI. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
94 lines
4.3 KiB
Gherkin
94 lines
4.3 KiB
Gherkin
Feature: Onboarding wizard
|
|
As a newly signed-up user
|
|
I want to set my diet, household, and allergens
|
|
So that my profile is ready before I start planning meals
|
|
|
|
Background:
|
|
Given the planning request returns nothing
|
|
|
|
Scenario: Walks through the wizard, creating a household on the way (which surfaces the sources step), and lands on the home page
|
|
Given the diets reference list has options
|
|
And selecting the diet will succeed
|
|
And the household request returns no household
|
|
And creating a household will succeed
|
|
And the sources reference list is empty
|
|
And the allergies reference list has options
|
|
And updating allergies will succeed
|
|
And I have signed up
|
|
Then the URL should include "/onboarding/regime"
|
|
And I should see "Étape 1 sur 3"
|
|
When I select "Végétarien" from the "diet" field
|
|
And I click the button "Continuer"
|
|
Then the diet update request should have been made with diet id 2
|
|
And the URL should include "/onboarding/foyer"
|
|
And I should see "Étape 2 sur 3"
|
|
When I fill in the "houseName" field with "Chez Alice"
|
|
And I click the button "Créer"
|
|
Then the household creation request should have been made with name "Chez Alice"
|
|
And the URL should include "/onboarding/allergenes"
|
|
And I should see "Étape 4 sur 4"
|
|
And I should see the section "Allergies"
|
|
And I should see the section "Intolérances"
|
|
When I check the checkbox "Arachides"
|
|
And I click the button "Terminer"
|
|
Then the allergies update request should have been made with allergy id 1
|
|
And the URL should be the home page
|
|
And I should see the heading "Planning de la semaine"
|
|
|
|
Scenario: Lets the regime and allergens steps be skipped without changing anything
|
|
Given the diets reference list is empty
|
|
And selecting the diet will succeed
|
|
And the household request returns no household
|
|
And the allergies reference list is empty
|
|
And updating allergies will succeed
|
|
And I have signed up
|
|
Then the URL should include "/onboarding/regime"
|
|
When I click the button "Continuer"
|
|
Then the diet update request should have been made with no diet id
|
|
And the URL should include "/onboarding/foyer"
|
|
When I click the button "Passer cette étape"
|
|
Then the URL should include "/onboarding/allergenes"
|
|
When I click the button "Terminer"
|
|
Then the allergies update request should have been made with no allergy ids
|
|
And the URL should be the home page
|
|
|
|
Scenario: Shows and saves the sources step instead of skipping it, when sources are available
|
|
Given the diets reference list is empty
|
|
And selecting the diet will succeed
|
|
And the household request returns no household
|
|
And creating a household will succeed
|
|
And the sources reference list has options
|
|
And the household's enabled sources are empty
|
|
And saving the source selection will succeed
|
|
And the allergies reference list is empty
|
|
And updating allergies will succeed
|
|
And I have signed up
|
|
When I click the button "Continuer"
|
|
Then the URL should include "/onboarding/foyer"
|
|
When I fill in the "houseName" field with "Chez Alice"
|
|
And I click the button "Créer"
|
|
Then the household creation request should have been made with name "Chez Alice"
|
|
And the URL should include "/onboarding/sources"
|
|
And I should see "Étape 3 sur 4"
|
|
And I should see the section "Sources disponibles"
|
|
And I should see "TheMealDB"
|
|
When I check the checkbox "TheMealDB"
|
|
And I click the button "Continuer"
|
|
Then the source selection update request should have been made with source id 1
|
|
And the URL should include "/onboarding/allergenes"
|
|
|
|
Scenario: Lets the household step be completed by joining an existing household instead of creating one
|
|
Given the diets reference list is empty
|
|
And selecting the diet will succeed
|
|
And the household request returns no household
|
|
And joining a household will succeed
|
|
And the sources reference list is empty
|
|
And the allergies reference list is empty
|
|
And updating allergies will succeed
|
|
And I have signed up
|
|
When I click the button "Continuer"
|
|
Then the URL should include "/onboarding/foyer"
|
|
When I fill in the "inviteCode" field with "abcd2345"
|
|
And I click the button "Rejoindre"
|
|
Then the household join request should have been made with invite code "ABCD2345"
|
|
And the URL should include "/onboarding/allergenes"
|