-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrades to react-router 6.20 * init test framework * router tests * cleanup * pause for video recording
- Loading branch information
1 parent
4607581
commit d2a31d0
Showing
7 changed files
with
269 additions
and
99 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
# testing | ||
/coverage | ||
/test-results | ||
|
||
# production | ||
/build | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { expect } from "@playwright/test"; | ||
|
||
export const pauseIfVideoRecording = async (page, pause = 500) => { | ||
let isVideoRecorded = (await page.video()) ? true : false; | ||
if (isVideoRecorded) { | ||
await page.waitForTimeout(pause); | ||
} | ||
}; | ||
|
||
export const setInputAndAssert = async (page, selector, value) => { | ||
await page.fill(selector, value); | ||
const actualValue = await page.inputValue(selector); | ||
expect(actualValue).toBe(value); | ||
}; | ||
|
||
export const selectAndAssert = async (page, selector, value) => { | ||
await page.selectOption(selector, { value: value }); | ||
const selectedValue = await page.$eval(selector, (select) => select.value); | ||
expect(selectedValue).toBe(value); | ||
}; | ||
|
||
export const waitForSelectorToBeVisible = async (page, selector) => { | ||
await page.waitForSelector(selector, { | ||
state: "visible", | ||
}); | ||
}; | ||
|
||
export const clickWhenSelectorIsVisible = async (page, selector) => { | ||
waitForSelectorToBeVisible(page, selector); | ||
await page.click(selector); | ||
}; |
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,55 @@ | ||
import { expect, test } from "@playwright/test"; | ||
import { pauseIfVideoRecording, waitForSelectorToBeVisible } from "../testUtils"; | ||
|
||
test("Verify default route loads successfully and displays expected content", async ({ | ||
page, | ||
}) => { | ||
// Navigate to the default route | ||
await page.goto("/"); | ||
|
||
// Verify the viewer's default route | ||
await waitForSelectorToBeVisible( | ||
page, | ||
'near-social-viewer[src="devs.near/widget/default"]' | ||
); | ||
|
||
// Get the value of the initialProps attribute | ||
const initialProps = await page.evaluate(() => { | ||
const viewer = document.querySelector( | ||
'near-social-viewer[src="devs.near/widget/default"]' | ||
); | ||
return viewer.getAttribute("initialProps"); | ||
}); | ||
|
||
// Assert initialProps parse correctly | ||
expect(JSON.parse(initialProps)).toEqual({ message: "hello world!" }); | ||
|
||
// Verify default component renders | ||
await waitForSelectorToBeVisible( | ||
page, | ||
'div[data-component="devs.near/widget/default"]' | ||
); | ||
|
||
// Verify default props are active | ||
await waitForSelectorToBeVisible(page, 'h4:has-text("hello world!")'); | ||
|
||
await pauseIfVideoRecording(page, 1000); | ||
}); | ||
|
||
test("should load the other routes with params when provided", async ({ | ||
page, | ||
}) => { | ||
// // Navigate to some route | ||
await page.goto("/efiz.near/widget/Tree?rootPath=devs.near"); | ||
|
||
// Verify route loads | ||
await waitForSelectorToBeVisible( | ||
page, | ||
'div[data-component="efiz.near/widget/Node"]' | ||
); | ||
|
||
// Verify provided props are active | ||
await waitForSelectorToBeVisible(page, 'div:has-text("devs.near")'); | ||
|
||
await pauseIfVideoRecording(page, 1000); | ||
}); |
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,102 @@ | ||
// @ts-check | ||
import { defineConfig, devices } from "@playwright/test"; | ||
|
||
/** | ||
* Read environment variables from file. | ||
* https://github.com/motdotla/dotenv | ||
*/ | ||
// require('dotenv').config(); | ||
|
||
/** | ||
* @see https://playwright.dev/docs/test-configuration | ||
*/ | ||
export default defineConfig({ | ||
testDir: "./playwright-tests/tests", | ||
/* Maximum time one test can run for. */ | ||
timeout: 30 * 1000, | ||
expect: { | ||
/** | ||
* Maximum time expect() should wait for the condition to be met. | ||
* For example in `await expect(locator).toHaveText();` | ||
*/ | ||
timeout: 5000, | ||
}, | ||
/* Run tests in files in parallel */ | ||
fullyParallel: true, | ||
/* Fail the build on CI if you accidentally left test.only in the source code. */ | ||
forbidOnly: !!process.env.CI, | ||
/* Retry on CI only */ | ||
retries: process.env.CI ? 2 : 0, | ||
/* Opt out of parallel tests on CI. */ | ||
workers: process.env.CI ? "100%" : undefined, | ||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */ | ||
reporter: "line", | ||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ | ||
use: { | ||
video: "off", | ||
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */ | ||
actionTimeout: 0, | ||
/* Base URL to use in actions like `await page.goto('/')`. */ | ||
baseURL: "http://localhost:3000", | ||
|
||
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ | ||
trace: "on-first-retry", | ||
storageState: { | ||
cookies: [], | ||
origins: [ | ||
{ | ||
origin: "http://localhost:3000", | ||
localStorage: [], | ||
}, | ||
], | ||
}, | ||
}, | ||
|
||
/* Configure projects for major browsers */ | ||
projects: [ | ||
{ | ||
name: "chromium", | ||
use: { ...devices["Desktop Chrome"] }, | ||
}, | ||
|
||
/*{ | ||
name: 'firefox', | ||
use: { ...devices['Desktop Firefox'] }, | ||
}, | ||
{ | ||
name: 'webkit', | ||
use: { ...devices['Desktop Safari'] }, | ||
},*/ | ||
|
||
/* Test against mobile viewports. */ | ||
// { | ||
// name: 'Mobile Chrome', | ||
// use: { ...devices['Pixel 5'] }, | ||
// }, | ||
// { | ||
// name: 'Mobile Safari', | ||
// use: { ...devices['iPhone 12'] }, | ||
// }, | ||
|
||
/* Test against branded browsers. */ | ||
// { | ||
// name: 'Microsoft Edge', | ||
// use: { channel: 'msedge' }, | ||
// }, | ||
// { | ||
// name: 'Google Chrome', | ||
// use: { channel: 'chrome' }, | ||
// }, | ||
], | ||
|
||
/* Folder for test artifacts such as screenshots, videos, traces, etc. */ | ||
outputDir: "test-results/", | ||
|
||
/* Run your local dev server before starting the tests */ | ||
webServer: { | ||
command: "npm run start", | ||
port: 3000, | ||
reuseExistingServer: !process.env.CI, | ||
}, | ||
}); |
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.