- Configure Wagtail database search backend with English search config - Add django.contrib.postgres to INSTALLED_APPS for full PG FTS support - Expand ArticlePage.search_fields: body_text (excl. code blocks), AutocompleteField(title), RelatedFields(tags), FilterFields - Add search view at /search/?q= with query guards (strip, max 200 chars, empty/whitespace handling) and pagination preserving query param - Replace nav Subscribe CTA with compact search box (desktop + mobile) - Add search box to article index page alongside category/tag filters - Create search results template reusing article_card component - Add update_index to deploy entrypoint for automated reindexing - Update existing tests for nav change, add comprehensive search tests Closes #41 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
"""E2E tests for the home page."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
import pytest
|
|
from playwright.sync_api import Page, expect
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_homepage_title_contains_brand(page: Page, base_url: str) -> None:
|
|
page.goto(f"{base_url}/", wait_until="networkidle")
|
|
expect(page).to_have_title(re.compile("No Hype AI"))
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_nav_links_present(page: Page, base_url: str) -> None:
|
|
page.goto(f"{base_url}/", wait_until="networkidle")
|
|
nav = page.locator("nav")
|
|
expect(nav.get_by_role("link", name="Home")).to_be_visible()
|
|
expect(nav.get_by_role("link", name="Articles")).to_be_visible()
|
|
expect(nav.get_by_role("link", name="About")).to_be_visible()
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_theme_toggle_adds_dark_class(page: Page, base_url: str) -> None:
|
|
page.goto(f"{base_url}/", wait_until="networkidle")
|
|
toggle = page.get_by_role("button", name="Toggle theme")
|
|
expect(toggle).to_be_visible()
|
|
# Initial state: html may or may not have dark class
|
|
html = page.locator("html")
|
|
before = "dark" in (html.get_attribute("class") or "")
|
|
toggle.click()
|
|
after = "dark" in (html.get_attribute("class") or "")
|
|
assert before != after, "Theme toggle must flip the dark class on <html>"
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_nav_search_box_present(page: Page, base_url: str) -> None:
|
|
page.goto(f"{base_url}/", wait_until="networkidle")
|
|
nav = page.locator("nav")
|
|
expect(nav.locator('input[name="q"]')).to_be_visible()
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_home_shows_articles(page: Page, base_url: str) -> None:
|
|
"""Latest articles section is populated after seeding."""
|
|
page.goto(f"{base_url}/", wait_until="networkidle")
|
|
# Seeded content means there should be at least one article card link
|
|
article_links = page.locator("main article a")
|
|
expect(article_links.first).to_be_visible()
|