feat: Implement live environment loading and update race storage metadata handling

This commit is contained in:
MaddoScientisto 2026-04-19 16:59:04 +02:00
commit 77e48b8139
8 changed files with 76 additions and 100 deletions

View file

@ -11,11 +11,16 @@ const {
const LIVE_EXPECTED_RACE_STORAGE = {
year: '2026',
monthFolder: '04.APRILE',
monthFolder: '03.MARZO',
raceFolder: 'HMF_2026',
relativeDir: '2026/04.APRILE/HMF_2026'
relativeDir: '2026/03.MARZO/HMF_2026'
};
const LIVE_SAMPLE_PHOTO_IDS = [
'21.ARRIVO_CON TEMPO\\DSC_8385.JPG',
'21.ARRIVO_CON TEMPO\\DSC_8295.JPG'
];
function escapeRegExp(value) {
return String(value).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
}
@ -175,10 +180,7 @@ async function expectLegacyFaceAiGalleryToRemainStable(page, expectedPhotoIds, h
}
test('renders the exact live FaceAI filtered sample URL with visible thumbnails', async ({ page }) => {
const samplePhotoIds = [
'00.PANORAMICA\\GIC_7918.JPG',
'02.PARTENZA\\GIC_7918.JPG'
];
const samplePhotoIds = LIVE_SAMPLE_PHOTO_IDS;
const sampleUrl = `${LIVE_SITE_BASE_URL}/42%20HALF%20MARATHON%20FIRENZE_gara-1018545---48-1.html?faceaiMatchSource=faceai&faceaiMatchCount=2&faceaiPhotoIds=${encodeURIComponent(samplePhotoIds.join(','))}`;
await ensureLiveAuthenticatedRacePage(page);
@ -197,7 +199,7 @@ test('renders the exact live FaceAI filtered sample URL with visible thumbnails'
await expectLegacyFaceAiGalleryToRemainStable(page, samplePhotoIds);
});
test('keeps the live Firenze FaceAI race storage metadata pinned to April 2026', async ({ page }) => {
test('keeps the live Firenze FaceAI race storage metadata pinned to the stored server path', async ({ page }) => {
await ensureLiveAuthenticatedRacePage(page);
await expect(page.locator('#faceAiRaceYear')).toHaveValue(LIVE_EXPECTED_RACE_STORAGE.year);
@ -217,10 +219,7 @@ test('keeps the live Firenze FaceAI race storage metadata pinned to April 2026',
});
test('resolves the live Firenze sample photo lookups inside the current race', async ({ page }) => {
const samplePhotoIds = [
'00.PANORAMICA\\GIC_7918.JPG',
'02.PARTENZA\\GIC_7918.JPG'
];
const samplePhotoIds = LIVE_SAMPLE_PHOTO_IDS;
await ensureLiveAuthenticatedRacePage(page);
@ -302,10 +301,9 @@ test('returns to the live race page from FaceAI without leaving the legacy spinn
expect(bodyState.ariaBusy).not.toBe('true');
});
test.skip(!LIVE_SITE_RUN_UPLOAD_FLOW, 'Set LIVE_SITE_RUN_UPLOAD_FLOW=1 to exercise the live upload flow.');
test('accepts the supplied portrait image for the live upload flow', async ({ page }) => {
test.slow();
test.skip(!LIVE_SITE_RUN_UPLOAD_FLOW, 'Set LIVE_SITE_RUN_UPLOAD_FLOW=1 to exercise the live upload flow.');
requirePortraitFixture();
@ -356,6 +354,12 @@ test('accepts the supplied portrait image for the live upload flow', async ({ pa
const expectedPhotoIds = (finalUrl.searchParams.get('faceaiPhotoIds') || '').split(',').map((value) => value.trim()).filter(Boolean);
expect(expectedPhotoIds.length, 'Expected the final race page URL to include at least one FaceAI photo identifier.').toBeGreaterThan(0);
for (const photoKey of expectedPhotoIds) {
const lookup = await lookupLivePhoto(page, photoKey);
expect(lookup.status, `Expected FaceAI to return a photo key that resolves on the current live race page: ${photoKey}`).toBe(200);
expect(lookup.payload && lookup.payload.found, `Expected FaceAI to return a photo key that exists in the current live race: ${photoKey}`).toBe(true);
}
const visiblePhotoIds = await waitForVisibleLegacyPhotoIds(page, expectedPhotoIds.length);
expect(visiblePhotoIds.length, 'Expected at least one legacy race thumbnail to remain visible after FaceAI filtering.').toBeGreaterThan(0);
expect(visiblePhotoIds.sort()).toEqual(expectedPhotoIds.slice().sort());