dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
100 lines
3.1 KiB
TypeScript
100 lines
3.1 KiB
TypeScript
import { execSync } from 'node:child_process';
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
import translations from '../client/i18n/locales/english/translations.json';
|
|
import { authedRequest } from './utils/request';
|
|
import { allowTrailingSlash } from './utils/url';
|
|
|
|
const nextChallengeURL =
|
|
'/learn/data-analysis-with-python/data-analysis-with-python-projects/demographic-data-analyzer';
|
|
|
|
test.beforeAll(() => {
|
|
execSync('node ../tools/scripts/seed/seed-demo-user --certified-user');
|
|
});
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto(
|
|
'/learn/data-analysis-with-python/data-analysis-with-python-projects/mean-variance-standard-deviation-calculator'
|
|
);
|
|
await page.getByLabel('Solution Link').fill('https://example.com');
|
|
await page
|
|
.getByRole('button', { name: "I've completed this challenge" })
|
|
.click();
|
|
});
|
|
|
|
test.describe('Challenge Completion Modal Tests (Signed Out)', () => {
|
|
test.use({ storageState: { cookies: [], origins: [] } });
|
|
test('should redirect to /learn after sign in', async ({ page }) => {
|
|
await page
|
|
.getByRole('link', { name: translations.learn['sign-in-save'] })
|
|
.click();
|
|
await expect(page).toHaveURL(allowTrailingSlash('/learn'));
|
|
});
|
|
|
|
test('should redirect to next challenge', async ({ page }) => {
|
|
await page
|
|
.getByRole('button', { name: translations.buttons['go-to-next'] })
|
|
.click();
|
|
await expect(page).toHaveURL(nextChallengeURL);
|
|
});
|
|
});
|
|
|
|
test.describe('Challenge Completion Modal Tests (Signed In)', () => {
|
|
test('should close the modal after user presses escape while having keyboard shortcuts disabled', async ({
|
|
page,
|
|
request
|
|
}) => {
|
|
await authedRequest({
|
|
request,
|
|
endpoint: 'update-my-keyboard-shortcuts',
|
|
method: 'put',
|
|
data: {
|
|
keyboardShortcuts: false
|
|
}
|
|
});
|
|
await expect(page.getByRole('dialog')).toBeVisible();
|
|
await page.keyboard.press('Escape');
|
|
await expect(page.getByRole('dialog')).not.toBeVisible();
|
|
});
|
|
|
|
test('should close the modal after user presses escape while having keyboard shortcuts enabled', async ({
|
|
page,
|
|
request
|
|
}) => {
|
|
await authedRequest({
|
|
request,
|
|
endpoint: 'update-my-keyboard-shortcuts',
|
|
method: 'put',
|
|
data: {
|
|
keyboardShortcuts: true
|
|
}
|
|
});
|
|
await expect(page.getByRole('dialog')).toBeVisible();
|
|
await page.keyboard.press('Escape');
|
|
await expect(page.getByRole('dialog')).toBeVisible();
|
|
});
|
|
|
|
test('should submit and go to the next challenge when the user clicks the submit button', async ({
|
|
page
|
|
}) => {
|
|
await page
|
|
.getByRole('button', { name: translations.buttons['submit-and-go'] })
|
|
.click();
|
|
await expect(page).toHaveURL(nextChallengeURL);
|
|
});
|
|
|
|
test('should submit and go to the next challenge when the user presses Ctrl + Enter', async ({
|
|
page
|
|
}) => {
|
|
await page.keyboard.press('Control+Enter');
|
|
await expect(page).toHaveURL(nextChallengeURL);
|
|
});
|
|
|
|
test('should submit and go to the next challenge when the user presses Command + Enter', async ({
|
|
page
|
|
}) => {
|
|
await page.keyboard.press('Meta+Enter');
|
|
await expect(page).toHaveURL(nextChallengeURL);
|
|
});
|
|
});
|