2026-08-01 21:09:18 +01:00
|
|
|
/**
|
|
|
|
|
* The single seam between the characterization tests and the component tree.
|
|
|
|
|
*
|
|
|
|
|
* Task 7 of the server/client split rewrites the bodies of these functions to
|
|
|
|
|
* render the new shell + server-sections composition. Nothing else in the test
|
|
|
|
|
* suite may change — the characterization assertions passing unmodified across
|
|
|
|
|
* that rewrite is the proof that behaviour was preserved.
|
|
|
|
|
*
|
2026-08-01 21:11:08 +01:00
|
|
|
* National averages now arrive as a server-supplied prop rather than a client
|
|
|
|
|
* fetch, so no fetch stub is needed.
|
2026-08-01 21:09:18 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
|
import type { ReactNode } from 'react';
|
|
|
|
|
import { SchoolDetailView } from '@/components/SchoolDetailView';
|
|
|
|
|
import { SecondarySchoolDetailView } from '@/components/SecondarySchoolDetailView';
|
|
|
|
|
import { ComparisonProvider } from '@/context/ComparisonProvider';
|
|
|
|
|
import { nationalAveragesFixture } from './schoolFixtures';
|
|
|
|
|
|
|
|
|
|
// Both views call useComparison(), which throws outside the provider. In the
|
|
|
|
|
// app this wrapper comes from app/layout.tsx.
|
|
|
|
|
function withProviders(ui: ReactNode) {
|
|
|
|
|
return <ComparisonProvider>{ui}</ComparisonProvider>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function renderSchoolDetail(fixture: any) {
|
2026-08-01 21:11:08 +01:00
|
|
|
return render(
|
|
|
|
|
withProviders(<SchoolDetailView {...fixture} nationalAvg={nationalAveragesFixture} />),
|
|
|
|
|
);
|
2026-08-01 21:09:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function renderSecondarySchoolDetail(fixture: any) {
|
2026-08-01 21:11:08 +01:00
|
|
|
return render(
|
|
|
|
|
withProviders(
|
|
|
|
|
<SecondarySchoolDetailView {...fixture} nationalAvg={nationalAveragesFixture} />,
|
|
|
|
|
),
|
|
|
|
|
);
|
2026-08-01 21:09:18 +01:00
|
|
|
}
|