test(e2e, playwright): challenge-title.tsx (#51818)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
pull/52248/head
EggSaled 2023-11-06 13:14:34 -08:00 committed by GitHub
parent fb508a2f8f
commit 0c57a3ddef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 124 additions and 0 deletions

124
e2e/challenge-title.spec.ts Normal file
View File

@ -0,0 +1,124 @@
import { test, expect } from '@playwright/test';
import translations from '../client/i18n/locales/english/translations.json';
test.beforeEach(async ({ page }) => {
await page.goto(
'/learn/information-security/python-for-penetration-testing/developing-a-port-scanner'
);
});
test.describe('Challenge Title Component (signed out)', () => {
test.use({ storageState: { cookies: [], origins: [] } });
test('should render correctly', async ({ page }) => {
await expect(page.getByLabel('Passed')).not.toBeVisible();
await expect(
page.getByRole('heading', { name: 'Developing a Port Scanner' })
).toBeVisible();
});
test('should not display GreenPass after challenge completion', async ({
page
}) => {
// Set `force: true` to bypass Playwright's check
// as the radio is visually hidden and the click event is intercepted by the `span` element.
await page
.getByRole('radio', {
name: 'If there is an error or if no host is found, .connect() raises an exception while .connect_ex() returns an error code.'
})
.click({ force: true });
await page
.getByRole('button', { name: translations.buttons['check-answer'] })
.click();
await page
.getByRole('button', { name: translations.buttons['go-to-next'] })
.click();
// After clicking 'go-to-next' button, page redirects to courses list.
// We need to wait for this navigation to be completed before navigating to the next
// or Firefox will throw a NS_BINDING_ABORTED error.
await page.waitForURL(
'/learn/information-security/#python-for-penetration-testing'
);
// Returning back to the challenge, to verify that GreenPass is rendered on the challenge itself.
await page.goto(
'/learn/information-security/python-for-penetration-testing/developing-a-port-scanner'
);
await page.waitForLoadState();
await expect(page.getByLabel('Passed')).not.toBeVisible();
});
test("should appropriately render 'Please Help Us Translate' link", async ({
page
}) => {
const visibleEnglishTitle = await page
.getByRole('heading', { name: 'Developing a Port Scanner' })
.isVisible();
if (process.env.CURRICULUM_LOCALE != 'english' && visibleEnglishTitle) {
// Challenge title has not been translated, expect a
// 'Help us translate' button
await expect(page.getByText('Help us translate')).toBeVisible();
} else {
// CURRICULUM_LOCALE is set to english or curriculum is already
// translated. Do not expect a 'Help us translate' button.
await expect(page.getByText('Help us translate')).not.toBeVisible();
}
});
});
test.describe('Challenge Title Component (signed in)', () => {
test.use({ storageState: 'playwright/.auth/certified-user.json' });
test('should display GreenPass after challenge completion', async ({
page,
browserName
}) => {
test.skip(
browserName === 'webkit',
'user does not seem to be authenticated on Safari'
);
await expect(
page.getByRole('heading', { name: 'Developing a Port Scanner' })
).toBeVisible();
// Set `force: true` to bypass Playwright's check
// as the radio is visually hidden and the click event is intercepted by the `span` element.
await page
.getByRole('radio', {
name: 'If there is an error or if no host is found, .connect() raises an exception while .connect_ex() returns an error code.'
})
.click({ force: true });
await page
.getByRole('button', { name: translations.buttons['check-answer'] })
.click();
await page
.getByRole('button', { name: translations.buttons['go-to-next'] })
.click();
// After clicking 'go-to-next' button, page redirects to courses list.
// We need to wait for this navigation to be completed before navigating to the next
// or Firefox will throw a NS_BINDING_ABORTED error.
await page.waitForURL(
'/learn/information-security/#python-for-penetration-testing'
);
// Returning back to the challenge, to verify that GreenPass is rendered on the challenge itself.
await page.goto(
'/learn/information-security/python-for-penetration-testing/developing-a-port-scanner'
);
await page.waitForLoadState();
await expect(page.getByLabel('Passed')).toBeVisible();
});
});