2026-07-06 17:53:22 -07:00
|
|
|
import { describe, test, expect } from 'vitest';
|
|
|
|
|
import { DEFAULT_HEADER_STATE } from './PageContext';
|
|
|
|
|
import { exportBodyHtml } from '../utils/html-export';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The default header is seeded as a hand-authored serialized Craft state. A
|
|
|
|
|
* malformed node map would not fail typecheck but would break the header on
|
|
|
|
|
* every new site at runtime, so we validate it deserializes + exports through
|
|
|
|
|
* the same path the editor preview and the WHP publish step use.
|
|
|
|
|
*/
|
|
|
|
|
describe('DEFAULT_HEADER_STATE seed', () => {
|
|
|
|
|
test('is valid JSON with a ROOT header + a Navbar child', () => {
|
|
|
|
|
const parsed = JSON.parse(DEFAULT_HEADER_STATE);
|
|
|
|
|
expect(parsed.ROOT).toBeDefined();
|
|
|
|
|
expect(parsed.ROOT.type.resolvedName).toBe('Container');
|
|
|
|
|
expect(parsed.ROOT.props.tag).toBe('header');
|
|
|
|
|
expect(parsed.ROOT.nodes).toContain('header-navbar');
|
|
|
|
|
expect(parsed['header-navbar'].type.resolvedName).toBe('Navbar');
|
|
|
|
|
expect(parsed['header-navbar'].parent).toBe('ROOT');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('exports to header HTML containing the nav and its default links', () => {
|
|
|
|
|
const { html } = exportBodyHtml(DEFAULT_HEADER_STATE);
|
|
|
|
|
expect(html).toContain('<nav');
|
|
|
|
|
expect(html).toContain('MySite');
|
2026-07-12 20:56:11 -07:00
|
|
|
// Item 15: the default nav only links pages/anchors that actually exist
|
|
|
|
|
// on a brand new site (just "Home") plus an inert CTA -- no dead links
|
|
|
|
|
// to About/Services/Contact pages that were never seeded.
|
|
|
|
|
for (const link of ['Home', 'Get Started']) {
|
2026-07-06 17:53:22 -07:00
|
|
|
expect(html).toContain(link);
|
|
|
|
|
}
|
2026-07-12 20:56:11 -07:00
|
|
|
expect(html).not.toContain('About');
|
|
|
|
|
expect(html).not.toContain('Services');
|
|
|
|
|
expect(html).not.toContain('Contact');
|
2026-07-06 17:53:22 -07:00
|
|
|
});
|
|
|
|
|
});
|