b6c2598710
CI / changes (pull_request) Successful in 2s
CI / unit (pull_request) Successful in 11s
CI / integration (pull_request) Successful in 26s
CI / ui (pull_request) Successful in 1m13s
CI / conformance (pull_request) Successful in 10s
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Failing after 16m19s
Robokassa moderation requires the public offer to list every digital good with its price. Move /offer/ off the static landing container to the render sidecar: it splices the live catalog price list (§4.4) into the owner-edited ui/legal/offer_ru.md and renders it with the shared ui/src/lib/offer.ts — one renderer, no drift, always matching the current catalog with no redeploy. - backend: /api/v1/internal/offer/pricing (internal, off the edge allow-list) projects the active catalog into two markdown tables — chip packs priced per rail (roubles / VK votes / Telegram Stars) and chip-priced values — through payments.Money so no float reaches the page. Cached in memory: warmed at boot, marked stale on every catalog mutation, so a served render issues no query. - renderer: GET /offer/ fetches the tables and substitutes them at the <#pricing_template#> marker, then renders; offer_ru.md is baked into the image and marked is bundled from ui. GET /offer -> 301. Only /offer/ is edge-exposed. - caddy: route /offer/ to the sidecar; drop the now-dead landing /offer/ handlers and the vite emit-offer plugin. - offer: fill §4.3 (the chip-payment wording) and drop the in-page back link. - landing footer: a feedback link (the offer's Telegram contact) beside the offer link. - docs (ARCHITECTURE, FUNCTIONAL +_ru, renderer README), CI /offer/ probe, unit + integration + node tests.
77 lines
4.2 KiB
TypeScript
77 lines
4.2 KiB
TypeScript
import { expect, test } from './fixtures';
|
|
|
|
// The landing page is a separate Vite entry (landing.html), served at "/" in production while
|
|
// the game SPA lives at /app/ and /telegram/. In dev it is reachable at /landing.html.
|
|
test('landing defaults to Russian, switches language via the dropdown, and toggles theme', async ({ page }) => {
|
|
await page.goto('/landing.html');
|
|
|
|
// Russian by default regardless of the browser language (the test browser is en-US):
|
|
// crawlers render with arbitrary navigator.language, so the landing never auto-detects.
|
|
await expect(page.getByText(/Играй в «Эрудита»/)).toBeVisible();
|
|
await expect(page).toHaveTitle(/Эрудит \(Скрэббл\)/);
|
|
expect(await page.evaluate(() => document.documentElement.lang)).toBe('ru');
|
|
|
|
// The static SEO head is present (the page is client-rendered; this layer is what
|
|
// non-rendering crawlers and link-preview bots see).
|
|
expect(await page.locator('meta[name="description"]').getAttribute('content')).toContain('Эрудит');
|
|
expect(await page.locator('meta[property="og:image"]').getAttribute('content')).toBe(
|
|
'https://erudit-game.ru/og-image.png',
|
|
);
|
|
const jsonLd = await page.locator('script[type="application/ld+json"]').textContent();
|
|
expect(JSON.parse(jsonLd!)['@type']).toBe('WebApplication');
|
|
|
|
// The language dropdown switches the copy to English, and the document language follows.
|
|
await page.getByRole('button', { name: 'Language' }).click();
|
|
await page.getByRole('menuitem', { name: /English/ }).click();
|
|
await expect(page.getByText(/Play Scrabble/i)).toBeVisible();
|
|
expect(await page.evaluate(() => document.documentElement.lang)).toBe('en');
|
|
|
|
// The theme toggle flips the document theme (ephemeral, light<->dark).
|
|
const before = await page.evaluate(() => document.documentElement.getAttribute('data-theme'));
|
|
await page.getByRole('button', { name: 'Theme' }).click();
|
|
const after = await page.evaluate(() => document.documentElement.getAttribute('data-theme'));
|
|
expect(after).not.toBe(before);
|
|
});
|
|
|
|
// The document-pin that stops the SPA from rubber-banding is scoped to the game app (main.ts
|
|
// adds .app-shell); the landing is a normal scrolling document and must keep scrolling.
|
|
test('the landing is a normal scrolling document (the SPA document-pin does not apply)', async ({ page }) => {
|
|
await page.goto('/landing.html');
|
|
await expect(page.getByText(/Играй в «Эрудита»/)).toBeVisible();
|
|
|
|
const state = await page.evaluate(() => ({
|
|
shell: document.documentElement.classList.contains('app-shell'),
|
|
bodyPosition: getComputedStyle(document.body).position,
|
|
}));
|
|
expect(state.shell).toBe(false);
|
|
expect(state.bodyPosition).not.toBe('fixed');
|
|
});
|
|
|
|
// The web-version entry (/app/) is always present, alongside the build-var-gated Telegram/VK ones
|
|
// (absent here, since e2e sets no VITE_* vars), each with a caption.
|
|
test('the landing shows a web-version entry linking /app/, with a caption', async ({ page }) => {
|
|
await page.goto('/landing.html');
|
|
await expect(page.getByText(/Играй в «Эрудита»/)).toBeVisible(); // Russian by default
|
|
|
|
const web = page.getByRole('link', { name: 'Играть в браузере' });
|
|
await expect(web).toBeVisible();
|
|
expect(await web.getAttribute('href')).toContain('/app/');
|
|
await expect(page.getByText('Веб-версия')).toBeVisible();
|
|
});
|
|
|
|
// The footer carries the public-offer link (/offer/ — the legal document a purchase accepts,
|
|
// rendered by the render sidecar) and, beside it, the feedback link to the Telegram bot the offer
|
|
// lists as the seller's contact.
|
|
test('the landing footer links to the public offer and the feedback bot', async ({ page }) => {
|
|
await page.goto('/landing.html');
|
|
await expect(page.getByText(/Играй в «Эрудита»/)).toBeVisible(); // Russian by default
|
|
|
|
const offer = page.getByRole('link', { name: 'Публичная оферта' });
|
|
await expect(offer).toBeVisible();
|
|
expect(await offer.getAttribute('href')).toBe('/offer/');
|
|
|
|
const feedback = page.getByRole('link', { name: 'Обратная связь' });
|
|
await expect(feedback).toBeVisible();
|
|
expect(await feedback.getAttribute('href')).toBe('https://t.me/Erudit_GameBot');
|
|
});
|