-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into task/block-deployments-over-change-freeze-pe…
…riod/CDD-2369
- Loading branch information
Showing
68 changed files
with
1,105 additions
and
1,837 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 |
---|---|---|
|
@@ -38,4 +38,3 @@ yarn-error.log* | |
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"cSpell.words": ["Colour"] | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
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,122 @@ | ||
import type { Page } from '@playwright/test' | ||
import { expect } from '@playwright/test' | ||
|
||
export class LandingPage { | ||
readonly page: Page | ||
|
||
constructor(page: Page) { | ||
this.page = page | ||
} | ||
|
||
async goto() { | ||
await this.page.goto('/') | ||
} | ||
|
||
async hasMetadata() { | ||
const title = await this.page.title() | ||
await expect(title).toBe('UKHSA data dashboard') | ||
await expect(this.page.locator('meta[name="description"]')).toHaveAttribute( | ||
'content', | ||
'Overall summary of the respiratory viruses in circulation within the UK' | ||
) | ||
} | ||
|
||
async hasHeading() { | ||
await expect(this.page.getByRole('heading', { name: /UKHSA data dashboard/, level: 1 })).toBeVisible() | ||
} | ||
|
||
async hasNotLastUpdated() { | ||
await expect(this.page.getByText(/Last updated/)).toBeHidden() | ||
} | ||
|
||
async hasPageDescription() { | ||
await expect( | ||
this.page.getByText( | ||
'The UKHSA data dashboard shows public health data across England. It builds on the success and is an iteration of the COVID-19 in the UK dashboard.' | ||
) | ||
).toBeVisible() | ||
} | ||
|
||
async hasSection(sections: string[]) { | ||
for (const name of sections) { | ||
await expect(this.page.getByRole('heading', { level: 2, name })).toBeVisible() | ||
} | ||
} | ||
|
||
async hasCategories(categories: string[]) { | ||
for (const name of categories) { | ||
await expect(this.page.getByRole('region', { name })).toBeVisible() | ||
} | ||
} | ||
|
||
async hasHealthTopicColumns(columns: string[]) { | ||
const section = this.page.getByRole('region', { name: 'Respiratory viruses' }) | ||
|
||
await expect(await section.getByRole('heading', { level: 3 }).count()).toEqual(columns.length) | ||
|
||
for (const name of columns) { | ||
await expect( | ||
section.getByTestId('chart-row-cards').getByRole('heading', { level: 3, name }).isVisible | ||
).toBeTruthy() | ||
} | ||
} | ||
|
||
async hasLandingPageCard({ title, sub_title }: { title: string; sub_title: string }) { | ||
const section = this.page.getByRole('region', { name: 'Respiratory viruses' }) | ||
const card = section.getByRole('link', { name: title }) | ||
|
||
await expect(card.getByRole('heading', { level: 3, name: title })).toBeVisible() | ||
await expect(card.getByText(sub_title)).toBeVisible() | ||
} | ||
|
||
async hasHealthTopicCard( | ||
name: string, | ||
{ tagline, trendPercent, trendDescription }: { tagline: string; trendPercent: string; trendDescription: string } | ||
) { | ||
const section = this.page.getByRole('region', { name: 'Respiratory viruses' }) | ||
const card = section.getByRole('link', { name }) | ||
|
||
await expect(card.getByRole('heading', { name })).toBeVisible() | ||
await expect(card.getByText(tagline)).toBeVisible() | ||
await expect(card.getByTestId('chart-image')).toBeVisible() | ||
await expect(card.getByText(trendPercent, { exact: true })).toBeVisible() | ||
await expect(card.getByText(trendDescription, { exact: true })).toBeVisible() | ||
} | ||
|
||
async hasWeatherHealthAlertsCard(name: string, { tagline, map = true }: { tagline: string; map?: boolean }) { | ||
const section = this.page.getByRole('region', { name: 'Weather health alerts' }) | ||
const card = section.getByRole('link', { name }) | ||
|
||
await expect(section).toBeVisible() | ||
await expect(card).toBeVisible() | ||
await expect(card.getByRole('heading', { name, level: 3 })).toBeVisible() | ||
await expect(card.getByText(tagline)).toBeVisible() | ||
|
||
if (map) { | ||
await expect(card.getByRole('application', { name: 'Map of weather health alerts' })).toBeVisible() | ||
} else { | ||
await expect(card.getByRole('application', { name: 'Map of weather health alerts' })).toBeHidden() | ||
} | ||
|
||
const regions = this.page.getByRole('list', { name: 'Weather health alerts by region' }) | ||
await expect(regions).toBeVisible() | ||
await expect(await regions.getByRole('listitem').all()).toHaveLength(13) | ||
await expect(card.getByRole('button', { name: 'Enter fullscreen' })).toBeVisible() | ||
} | ||
|
||
async clickMinimapCard(name: string) { | ||
const section = this.page.getByRole('region', { name: 'Weather health alerts' }) | ||
const card = section.getByRole('link', { name }) | ||
await card.click() | ||
} | ||
|
||
async clickMinimapCardRegionByMap(name: string, regionId: string) { | ||
const section = this.page.getByRole('region', { name: 'Weather health alerts' }) | ||
const card = section.getByRole('link', { name }) | ||
const map = card.getByRole('application', { name: 'Map of weather health alerts' }) | ||
await expect(map).toBeVisible() | ||
const region = map.getByTestId(`feature-${regionId}`) | ||
await expect(region).toBeVisible() | ||
await region.click() | ||
} | ||
} |
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
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
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
Oops, something went wrong.