-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: JR Reed <[email protected]>
- Loading branch information
1 parent
a39d038
commit 71e2e1f
Showing
2 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { test, expect } from '@/playwright/utils/next-test' | ||
|
||
test.describe('404 Error Page', () => { | ||
test('Displays the 404 Error page content', async ({ page }) => { | ||
await page.goto('/404') | ||
|
||
await expect(page.locator('h3 >> nth=0')).toContainText( | ||
'Sorry — we can’t find that page' | ||
) | ||
await expect( | ||
page.locator( | ||
'p:has-text("Try the search box or one of the common questions below.")' | ||
) | ||
).toBeVisible() | ||
|
||
await expect(page.locator('form#search_form')).toBeVisible() | ||
|
||
await expect(page.locator('h3 >> nth=1')).toHaveText('Common Questions') | ||
}) | ||
|
||
test('Should render without a11y accessibility errors', async ({ | ||
page, | ||
makeAxeBuilder, | ||
}) => { | ||
await page.goto('/404') | ||
|
||
const accessibilityScanResults = await makeAxeBuilder().analyze() | ||
|
||
expect(accessibilityScanResults.violations).toEqual([]) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
import { useEffect } from 'react' | ||
import { recordEvent } from '@/lib/analytics/recordEvent' | ||
import { Wrapper } from '@/templates/layouts/wrapper' | ||
import { getGlobalElements } from '@/lib/drupal/getGlobalElements' | ||
import { CommonAndPopular } from '@/templates/common/commonAndPopular' | ||
import Head from 'next/head' | ||
import Script from 'next/script' | ||
|
||
const Error404Page = ({ headerFooterData }) => { | ||
useEffect(() => { | ||
recordEvent({ event: 'nav-404-error' }) | ||
}) | ||
return ( | ||
<> | ||
<Head> | ||
<title>VA.gov | Veterans Affairs</title> | ||
</Head> | ||
<Wrapper bannerData={[]} headerFooterData={headerFooterData}> | ||
<div | ||
className="main maintenance-page vads-u-padding-top--4" | ||
role="main" | ||
> | ||
<div className="primary"> | ||
<div className="row"> | ||
<div className="usa-content vads-u-text-align--center vads-u-margin-x--auto"> | ||
<h3>Sorry — we can’t find that page</h3> | ||
<p>Try the search box or one of the common questions below.</p> | ||
<div className="feature vads-u-display--flex vads-u-align-items--center"> | ||
<form | ||
acceptCharset="UTF-8" | ||
action="/search/" | ||
id="search_form" | ||
className="full-width search-form-bottom-margin" | ||
method="get" | ||
> | ||
<div | ||
className="vads-u-display--flex vads-u-align-items--flex-start vads-u-justify-content--center" | ||
style={{ height: '5.7rem' }} | ||
> | ||
<label htmlFor="mobile-query" className="sr-only"> | ||
Search: | ||
</label> | ||
<input | ||
autoComplete="off" | ||
className="usagov-search-autocomplete full-width vads-u-height--full vads-u-margin--0 vads-u-max-width--100" | ||
id="mobile-query" | ||
name="query" | ||
type="text" | ||
/> | ||
<input | ||
type="submit" | ||
value="Search" | ||
style={{ borderRadius: '0 3px 3px 0' }} | ||
className="vads-u-height--full vads-u-margin--0" | ||
/> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<CommonAndPopular /> | ||
|
||
{/* Loads widgets built from vets-website after data has been added to window */} | ||
<Script | ||
id="staticPages" | ||
strategy="afterInteractive" | ||
src={`${process.env.NEXT_PUBLIC_ASSETS_URL}static-pages.entry.js`} | ||
/> | ||
</Wrapper> | ||
</> | ||
) | ||
} | ||
|
||
export async function getStaticProps() { | ||
try { | ||
const { headerFooterData } = await getGlobalElements( | ||
undefined, // no banners on 404 | ||
true // header only | ||
) | ||
return { | ||
props: { | ||
headerFooterData, | ||
}, | ||
} | ||
} catch (error) { | ||
console.error('Failed to fetch global elements:', error) | ||
} | ||
} | ||
|
||
export default Error404Page |