| import express from 'express' |
| import { |
| existsSync, |
| readFileSync, |
| unlinkSync, |
| writeFileSync, |
| createReadStream, |
| } from 'fs' |
| import { promisify } from 'util' |
| import http from 'http' |
| import path from 'path' |
|
|
| import type cheerio from 'cheerio' |
| import spawn from 'cross-spawn' |
| import { writeFile } from 'fs-extra' |
| import getPort from 'get-port' |
| import { getRandomPort } from 'get-port-please' |
| import fetch from 'node-fetch' |
| import qs from 'querystring' |
| import treeKill from 'tree-kill' |
| import { once } from 'events' |
|
|
| import server from 'next/dist/server/next' |
| import _pkg from 'next/package.json' |
|
|
| import type { SpawnOptions, ChildProcess } from 'child_process' |
| import type { RequestInit, Response } from 'node-fetch' |
| import type { NextServer } from 'next/dist/server/next' |
| import { Playwright } from 'next-webdriver' |
|
|
| import { getTurbopackFlag, shouldRunTurboDevTest } from './turbo' |
| import stripAnsi from 'strip-ansi' |
| |
| |
| import './add-redbox-matchers' |
|
|
| export { shouldRunTurboDevTest } |
|
|
| export const nextServer = server |
| export const pkg = _pkg |
|
|
| export function initNextServerScript( |
| scriptPath: string, |
| successRegexp: RegExp, |
| env: NodeJS.ProcessEnv, |
| failRegexp?: RegExp, |
| opts?: { |
| cwd?: string |
| nodeArgs?: string[] |
| onStdout?: (data: any) => void |
| onStderr?: (data: any) => void |
| // If true, the promise will reject if the process exits with a non-zero code |
| shouldRejectOnError?: boolean |
| } |
| ): Promise<ChildProcess> { |
| return new Promise((resolve, reject) => { |
| const instance = spawn( |
| 'node', |
| [...((opts && opts.nodeArgs) || []), '--no-deprecation', scriptPath], |
| { |
| env: { HOSTNAME: '::', ...env }, |
| cwd: opts && opts.cwd, |
| } |
| ) |
|
|
| function handleStdout(data) { |
| const message = data.toString() |
| if (successRegexp.test(message)) { |
| resolve(instance) |
| } |
| process.stdout.write(message) |
|
|
| if (opts && opts.onStdout) { |
| opts.onStdout(message.toString()) |
| } |
| } |
|
|
| function handleStderr(data) { |
| const message = data.toString() |
| if (failRegexp && failRegexp.test(message)) { |
| instance.kill() |
| return reject(new Error('received failRegexp')) |
| } |
| process.stderr.write(message) |
|
|
| if (opts && opts.onStderr) { |
| opts.onStderr(message.toString()) |
| } |
| } |
|
|
| if (opts?.shouldRejectOnError) { |
| instance.on('exit', (code) => { |
| if (code !== 0) { |
| reject(new Error('exited with code: ' + code)) |
| } |
| }) |
| } |
|
|
| instance.stdout!.on('data', handleStdout) |
| instance.stderr!.on('data', handleStderr) |
|
|
| instance.on('close', () => { |
| instance.stdout!.removeListener('data', handleStdout) |
| instance.stderr!.removeListener('data', handleStderr) |
| }) |
|
|
| instance.on('error', (err) => { |
| reject(err) |
| }) |
| }) |
| } |
|
|
| export function getFullUrl( |
| appPortOrUrl: string | number, |
| url?: string, |
| hostname?: string |
| ) { |
| let fullUrl = |
| typeof appPortOrUrl === 'string' && appPortOrUrl.startsWith('http') |
| ? appPortOrUrl |
| : `http://${hostname ? hostname : 'localhost'}:${appPortOrUrl}${url}` |
|
|
| if (typeof appPortOrUrl === 'string' && url) { |
| const parsedUrl = new URL(fullUrl) |
| const parsedPathQuery = new URL(url, fullUrl) |
|
|
| parsedUrl.hash = parsedPathQuery.hash |
| parsedUrl.search = parsedPathQuery.search |
| parsedUrl.pathname = parsedPathQuery.pathname |
|
|
| if (hostname && parsedUrl.hostname === 'localhost') { |
| parsedUrl.hostname = hostname |
| } |
| fullUrl = parsedUrl.toString() |
| } |
| return fullUrl |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function withQuery( |
| pathname: string, |
| query: Record<string, any> | string |
| ) { |
| const querystring = typeof query === 'string' ? query : qs.stringify(query) |
| if (querystring.length === 0) { |
| return pathname |
| } |
|
|
| |
| |
| if (querystring.startsWith('?') || pathname.endsWith('?')) { |
| return `${pathname}${querystring}` |
| } |
|
|
| return `${pathname}?${querystring}` |
| } |
|
|
| export function getFetchUrl( |
| appPort: string | number, |
| pathname: string, |
| query?: Record<string, any> | string | null | undefined |
| ) { |
| const url = query ? withQuery(pathname, query) : pathname |
| return getFullUrl(appPort, url) |
| } |
|
|
| export function fetchViaHTTP( |
| appPort: string | number, |
| pathname: string, |
| query?: Record<string, any> | string | null | undefined, |
| opts?: RequestInit |
| ): Promise<Response> { |
| const url = query ? withQuery(pathname, query) : pathname |
| return fetch(getFullUrl(appPort, url), opts) |
| } |
|
|
| export function renderViaHTTP( |
| appPort: string | number, |
| pathname: string, |
| query?: Record<string, any> | string | undefined, |
| opts?: RequestInit |
| ) { |
| return fetchViaHTTP(appPort, pathname, query, opts).then((res) => res.text()) |
| } |
|
|
| export function findPort() { |
| |
| |
| |
| |
| |
| |
| try { |
| return getRandomPort() |
| } catch (e) { |
| require('console').warn('get-port-please failed, falling back to get-port') |
| return getPort() |
| } |
| } |
|
|
| export interface NextOptions { |
| cwd?: string |
| env?: NodeJS.Dict<string> |
| nodeArgs?: string[] |
|
|
| spawnOptions?: SpawnOptions |
| instance?: (instance: ChildProcess) => void |
| stderr?: true | 'log' |
| stdout?: true | 'log' |
| ignoreFail?: boolean |
|
|
| |
| |
| |
| |
| lint?: boolean |
|
|
| onStdout?: (data: any) => void |
| onStderr?: (data: any) => void |
| } |
|
|
| export function runNextCommand( |
| argv: string[], |
| options: NextOptions = {} |
| ): Promise<{ |
| code: number | null |
| signal: NodeJS.Signals | null |
| stdout: string |
| stderr: string |
| }> { |
| const nextDir = path.dirname(require.resolve('next/package')) |
| const nextBin = path.join(nextDir, 'dist/bin/next') |
| const cwd = options.cwd || nextDir |
| |
| const env = { |
| ...process.env, |
| |
| NODE_ENV: undefined as NodeJS.ProcessEnv['NODE_ENV'], |
| __NEXT_TEST_MODE: 'true', |
| ...options.env, |
| } |
|
|
| return new Promise((resolve, reject) => { |
| console.log(`Running command "next ${argv.join(' ')}"`) |
| const instance = spawn( |
| 'node', |
| [...(options.nodeArgs || []), '--no-deprecation', nextBin, ...argv], |
| { |
| ...options.spawnOptions, |
| cwd, |
| env, |
| stdio: ['ignore', 'pipe', 'pipe'], |
| } |
| ) |
|
|
| if (typeof options.instance === 'function') { |
| options.instance(instance) |
| } |
|
|
| let mergedStdio = '' |
|
|
| let stderrOutput = '' |
| if (options.stderr || options.onStderr) { |
| instance.stderr!.on('data', function (chunk) { |
| mergedStdio += chunk |
| stderrOutput += chunk |
|
|
| if (options.stderr === 'log') { |
| console.log(chunk.toString()) |
| } |
| if (typeof options.onStderr === 'function') { |
| options.onStderr(chunk.toString()) |
| } |
| }) |
| } else { |
| instance.stderr!.on('data', function (chunk) { |
| mergedStdio += chunk |
| }) |
| } |
|
|
| let stdoutOutput = '' |
| if (options.stdout || options.onStdout) { |
| instance.stdout!.on('data', function (chunk) { |
| mergedStdio += chunk |
| stdoutOutput += chunk |
|
|
| if (options.stdout === 'log') { |
| console.log(chunk.toString()) |
| } |
| if (typeof options.onStdout === 'function') { |
| options.onStdout(chunk.toString()) |
| } |
| }) |
| } else { |
| instance.stdout!.on('data', function (chunk) { |
| mergedStdio += chunk |
| }) |
| } |
|
|
| instance.on('close', (code, signal) => { |
| if ( |
| !options.stderr && |
| !options.stdout && |
| !options.ignoreFail && |
| (code !== 0 || signal) |
| ) { |
| return reject( |
| new Error( |
| `command failed with code ${code} signal ${signal}\n${mergedStdio}` |
| ) |
| ) |
| } |
|
|
| if (code || signal) { |
| console.error(`process exited with code ${code} and signal ${signal}`) |
| } |
| resolve({ |
| code, |
| signal, |
| stdout: stdoutOutput, |
| stderr: stderrOutput, |
| }) |
| }) |
|
|
| instance.on('error', (err) => { |
| err['stdout'] = stdoutOutput |
| err['stderr'] = stderrOutput |
| reject(err) |
| }) |
| }) |
| } |
|
|
| export interface NextDevOptions { |
| cwd?: string |
| env?: NodeJS.Dict<string> |
| nodeArgs?: string[] |
| nextBin?: string |
|
|
| bootupMarker?: RegExp |
| nextStart?: boolean |
| turbo?: boolean |
|
|
| stderr?: false |
| stdout?: false |
|
|
| onStdout?: (data: any) => void |
| onStderr?: (data: any) => void |
| } |
|
|
| export function runNextCommandDev( |
| argv: string[], |
| stdOut?: boolean, |
| opts: NextDevOptions = {} |
| ): Promise<(typeof stdOut extends true ? string : ChildProcess) | undefined> { |
| const nextDir = path.dirname(require.resolve('next/package')) |
| const nextBin = opts.nextBin || path.join(nextDir, 'dist/bin/next') |
| const cwd = opts.cwd || nextDir |
| const env = { |
| ...process.env, |
| |
| NODE_ENV: undefined as NodeJS.ProcessEnv['NODE_ENV'], |
| __NEXT_TEST_MODE: 'true', |
| ...opts.env, |
| } |
|
|
| const nodeArgs = opts.nodeArgs || [] |
| return new Promise((resolve, reject) => { |
| const instance = spawn( |
| 'node', |
| [...nodeArgs, '--no-deprecation', nextBin, ...argv], |
| { |
| cwd, |
| env, |
| } |
| ) |
| let didResolve = false |
|
|
| const bootType = |
| opts.nextStart || stdOut ? 'start' : opts?.turbo ? 'turbo' : 'dev' |
|
|
| function handleStdout(data) { |
| const message = data.toString() |
| const bootupMarkers = { |
| dev: /✓ ready/i, |
| turbo: /✓ ready/i, |
| start: /✓ ready/i, |
| } |
|
|
| const strippedMessage = stripAnsi(message) as any |
|
|
| if ( |
| (opts.bootupMarker && opts.bootupMarker.test(strippedMessage)) || |
| bootupMarkers[bootType].test(strippedMessage) |
| ) { |
| if (!didResolve) { |
| didResolve = true |
| |
| resolve(stdOut ? message : instance) |
| } |
| } |
|
|
| if (typeof opts.onStdout === 'function') { |
| opts.onStdout(message) |
| } |
|
|
| if (opts.stdout !== false) { |
| process.stdout.write(message) |
| } |
| } |
|
|
| function handleStderr(data) { |
| const message = data.toString() |
|
|
| if (typeof opts.onStderr === 'function') { |
| opts.onStderr(message) |
| } |
|
|
| if (opts.stderr !== false) { |
| process.stderr.write(message) |
| } |
| } |
|
|
| instance.stderr!.on('data', handleStderr) |
| instance.stdout!.on('data', handleStdout) |
|
|
| instance.on('close', () => { |
| instance.stderr!.removeListener('data', handleStderr) |
| instance.stdout!.removeListener('data', handleStdout) |
| if (!didResolve) { |
| didResolve = true |
| resolve(undefined) |
| } |
| }) |
|
|
| instance.on('error', (err) => { |
| reject(err) |
| }) |
| }) |
| } |
|
|
| |
| export function launchApp( |
| dir: string, |
| port: string | number, |
| opts?: NextDevOptions |
| ) { |
| const options = opts ?? {} |
| const useTurbo = shouldRunTurboDevTest() |
|
|
| return runNextCommandDev( |
| [ |
| useTurbo ? getTurbopackFlag() : undefined, |
| dir, |
| '-p', |
| port as string, |
| '--hostname', |
| '::', |
| ].filter((flag: string | undefined): flag is string => Boolean(flag)), |
| undefined, |
| { ...options, turbo: useTurbo } |
| ) |
| } |
|
|
| export function nextBuild( |
| dir: string, |
| args: string[] = [], |
| opts: NextOptions = {} |
| ) { |
| |
| |
| if (!opts.lint && !args.includes('--no-lint')) { |
| args.push('--no-lint') |
| } |
|
|
| return runNextCommand(['build', dir, ...args], opts) |
| } |
|
|
| export function nextLint( |
| dir: string, |
| args: string[] = [], |
| opts: NextOptions = {} |
| ) { |
| return runNextCommand(['lint', dir, ...args], opts) |
| } |
|
|
| export function nextTest( |
| dir: string, |
| args: string[] = [], |
| opts: NextOptions = {} |
| ) { |
| return runNextCommand(['experimental-test', dir, ...args], { |
| ...opts, |
| env: { |
| JEST_WORKER_ID: undefined, |
| ...opts.env, |
| }, |
| }) |
| } |
|
|
| export function nextStart( |
| dir: string, |
| port: string | number, |
| opts: NextDevOptions = {} |
| ) { |
| return runNextCommandDev( |
| ['start', '-p', port as string, '--hostname', '::', dir], |
| undefined, |
| { ...opts, nextStart: true } |
| ) |
| } |
|
|
| export function buildTS( |
| args: string[] = [], |
| cwd?: string, |
| env?: any |
| ): Promise<void> { |
| cwd = cwd || path.dirname(require.resolve('next/package')) |
| env = { ...process.env, NODE_ENV: undefined, ...env } |
|
|
| return new Promise((resolve, reject) => { |
| const instance = spawn( |
| 'node', |
| ['--no-deprecation', require.resolve('typescript/lib/tsc'), ...args], |
| { cwd, env } |
| ) |
| let output = '' |
|
|
| const handleData = (chunk) => { |
| output += chunk.toString() |
| } |
|
|
| instance.stdout!.on('data', handleData) |
| instance.stderr!.on('data', handleData) |
|
|
| instance.on('exit', (code) => { |
| if (code) { |
| return reject(new Error('exited with code: ' + code + '\n' + output)) |
| } |
| resolve() |
| }) |
| }) |
| } |
|
|
| export async function killProcess( |
| pid: number, |
| signal: NodeJS.Signals | number = 'SIGTERM' |
| ): Promise<void> { |
| return await new Promise((resolve, reject) => { |
| treeKill(pid, signal, (err) => { |
| if (err) { |
| if ( |
| process.platform === 'win32' && |
| typeof err.message === 'string' && |
| (err.message.includes(`no running instance of the task`) || |
| err.message.includes(`not found`)) |
| ) { |
| |
| |
| |
| |
| |
| return resolve() |
| } |
| return reject(err) |
| } |
|
|
| resolve() |
| }) |
| }) |
| } |
|
|
| |
| export async function killApp( |
| instance?: ChildProcess, |
| signal: NodeJS.Signals | number = 'SIGKILL' |
| ) { |
| if (!instance) { |
| return |
| } |
| if ( |
| instance?.pid && |
| instance.exitCode === null && |
| instance.signalCode === null |
| ) { |
| const exitPromise = once(instance, 'exit') |
| await killProcess(instance.pid, signal) |
| await exitPromise |
| } |
| } |
|
|
| async function startListen(server: http.Server, port?: number) { |
| const listenerPromise = new Promise((resolve) => { |
| server['__socketSet'] = new Set() |
| const listener = server.listen(port, () => { |
| resolve(null) |
| }) |
|
|
| listener.on('connection', function (socket) { |
| server['__socketSet'].add(socket) |
| socket.on('close', () => { |
| server['__socketSet'].delete(socket) |
| }) |
| }) |
| }) |
| await listenerPromise |
| } |
|
|
| export async function startApp(app: NextServer) { |
| |
| |
| process.env.__NEXT_TEST_MODE = 'jest' |
|
|
| |
| |
| |
| await app.prepare() |
| const handler = app.getRequestHandler() |
| const server = http.createServer(handler) |
| server['__app'] = app |
|
|
| await startListen(server) |
|
|
| return server |
| } |
|
|
| export async function stopApp(server: http.Server | undefined) { |
| if (!server) { |
| return |
| } |
|
|
| if (server['__app']) { |
| await server['__app'].close() |
| } |
|
|
| |
| |
| |
| |
| |
| server['__socketSet']?.forEach(function (socket) { |
| if (!socket.closed && !socket.destroyed) { |
| socket.destroy() |
| } |
| }) |
|
|
| await promisify(server.close).apply(server) |
| } |
|
|
| export async function waitFor( |
| millisOrCondition: number | (() => boolean) |
| ): Promise<void> { |
| if (typeof millisOrCondition === 'number') { |
| return new Promise((resolve) => setTimeout(resolve, millisOrCondition)) |
| } |
|
|
| return new Promise((resolve) => { |
| const interval = setInterval(() => { |
| if (millisOrCondition()) { |
| clearInterval(interval) |
| resolve() |
| } |
| }, 100) |
| }) |
| } |
|
|
| export async function startStaticServer( |
| dir: string, |
| notFoundFile?: string, |
| fixedPort?: number |
| ) { |
| const app = express() |
| const server = http.createServer(app) |
| app.use(express.static(dir)) |
|
|
| if (notFoundFile) { |
| app.use((req, res) => { |
| createReadStream(notFoundFile).pipe(res) |
| }) |
| } |
|
|
| await startListen(server, fixedPort) |
| return server |
| } |
|
|
| export async function startCleanStaticServer(dir: string) { |
| const app = express() |
| const server = http.createServer(app) |
| app.use(express.static(dir, { extensions: ['html'] })) |
|
|
| await startListen(server) |
| return server |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export async function check( |
| contentFn: () => any | Promise<any>, |
| regex: any, |
| hardError = true, |
| maxRetries = 30 |
| ) { |
| let content |
| let lastErr |
|
|
| for (let tries = 0; tries < maxRetries; tries++) { |
| try { |
| content = await contentFn() |
| if (typeof regex !== typeof /regex/) { |
| if (regex === content) { |
| return true |
| } |
| } else if (regex.test(content)) { |
| |
| return true |
| } |
| await waitFor(1000) |
| } catch (err) { |
| await waitFor(1000) |
| lastErr = err |
| } |
| } |
| console.error('TIMED OUT CHECK: ', { regex, content, lastErr }) |
|
|
| if (hardError) { |
| throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr) |
| } |
| return false |
| } |
|
|
| export class File { |
| path: string |
| originalContent: string | null |
|
|
| constructor(path: string) { |
| this.path = path |
| this.originalContent = existsSync(this.path) |
| ? readFileSync(this.path, 'utf8') |
| : null |
| } |
|
|
| write(content: string) { |
| if (!this.originalContent) { |
| this.originalContent = content |
| } |
| writeFileSync(this.path, content, 'utf8') |
| } |
|
|
| replace(pattern: RegExp | string, newValue: string) { |
| const currentContent = readFileSync(this.path, 'utf8') |
| if (pattern instanceof RegExp) { |
| if (!pattern.test(currentContent)) { |
| throw new Error( |
| `Failed to replace content.\n\nPattern: ${pattern.toString()}\n\nContent: ${currentContent}` |
| ) |
| } |
| } else if (typeof pattern === 'string') { |
| if (!currentContent.includes(pattern)) { |
| throw new Error( |
| `Failed to replace content.\n\nPattern: ${pattern}\n\nContent: ${currentContent}` |
| ) |
| } |
| } else { |
| throw new Error(`Unknown replacement attempt type: ${pattern}`) |
| } |
|
|
| const newContent = currentContent.replace(pattern, newValue) |
| this.write(newContent) |
| } |
|
|
| prepend(str: string) { |
| const content = readFileSync(this.path, 'utf8') |
| this.write(str + content) |
| } |
|
|
| delete() { |
| unlinkSync(this.path) |
| } |
|
|
| restore() { |
| this.write(this.originalContent!) |
| } |
| } |
|
|
| export async function retry<T>( |
| fn: () => T | Promise<T>, |
| duration: number = 3000, |
| interval: number = 500, |
| description?: string |
| ): Promise<T> { |
| if (duration % interval !== 0) { |
| throw new Error( |
| `invalid duration ${duration} and interval ${interval} mix, duration must be evenly divisible by interval` |
| ) |
| } |
|
|
| for (let i = duration; i >= 0; i -= interval) { |
| try { |
| return await fn() |
| } catch (err) { |
| if (i === 0) { |
| console.error( |
| `Failed to retry${ |
| description ? ` ${description}` : '' |
| } within ${duration}ms` |
| ) |
| throw err |
| } |
| console.log( |
| `Retrying${description ? ` ${description}` : ''} in ${interval}ms` |
| ) |
| await waitFor(interval) |
| } |
| } |
|
|
| throw new Error('Duration cannot be less than 0.') |
| } |
|
|
| export async function assertHasRedbox(browser: Playwright) { |
| const redbox = browser.locateRedbox() |
| try { |
| await redbox.waitFor({ timeout: 5000 }) |
| } catch (errorCause) { |
| const error = new Error('Expected Redbox but found no visible one.') |
| Error.captureStackTrace(error, assertHasRedbox) |
| throw error |
| } |
|
|
| try { |
| await redbox |
| .locator('[data-nextjs-error-suspended]') |
| .waitFor({ state: 'detached', timeout: 10000 }) |
| } catch (cause) { |
| const error = new Error('Redbox still had suspended content after 10s', { |
| cause, |
| }) |
| Error.captureStackTrace(error, assertHasRedbox) |
| throw error |
| } |
| } |
|
|
| export async function assertNoRedbox( |
| browser: Playwright, |
| { waitInMs = 5000 }: { waitInMs?: number } = {} |
| ) { |
| await waitFor(waitInMs) |
| const redbox = browser.locateRedbox() |
|
|
| if (await redbox.isVisible()) { |
| const [redboxHeader, redboxDescription, redboxSource] = await Promise.all([ |
| getRedboxHeader(browser).catch(() => '<missing>'), |
| getRedboxDescription(browser).catch(() => '<missing>'), |
| getRedboxSource(browser).catch(() => '<missing>'), |
| ]) |
|
|
| const error = new Error( |
| 'Expected no visible Redbox but found one\n' + |
| `header: ${redboxHeader}\n` + |
| `description: ${redboxDescription}\n` + |
| `source: ${redboxSource}` |
| ) |
| Error.captureStackTrace(error, assertNoRedbox) |
| throw error |
| } |
| } |
|
|
| export async function assertNoErrorToast(browser: Playwright): Promise<void> { |
| let didOpenRedbox = false |
|
|
| try { |
| await browser.waitForElementByCss('[data-issues]').click() |
| didOpenRedbox = true |
| } catch { |
| |
| } |
|
|
| if (didOpenRedbox) { |
| |
| |
| await assertNoRedbox(browser, { |
| |
| waitInMs: 0, |
| }) |
| } |
| } |
|
|
| export async function hasErrorToast(browser: Playwright): Promise<boolean> { |
| return Boolean( |
| await browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-issues]')) |
|
|
| const root = portal?.shadowRoot |
| const node = root?.querySelector('[data-issues-count]') |
| return !!node |
| }) |
| ) |
| } |
|
|
| export async function getToastErrorCount(browser: Playwright): Promise<number> { |
| return parseInt( |
| (await browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-issues]')) |
|
|
| const root = portal?.shadowRoot |
| const node = root?.querySelector('[data-issues-count]') |
| return node?.innerText || '0' |
| })) ?? '0' |
| ) |
| } |
|
|
| |
| |
| |
| |
| export async function openRedbox(browser: Playwright): Promise<void> { |
| const redbox = browser.locateRedbox() |
| if (await redbox.isVisible()) { |
| const error = new Error( |
| 'Redbox is already open. Use `assertHasRedbox` instead.' |
| ) |
| Error.captureStackTrace(error, openRedbox) |
| throw error |
| } |
|
|
| try { |
| await browser.waitForElementByCss('[data-issues]').click() |
| } catch (cause) { |
| const error = new Error('Redbox did not open.') |
| Error.captureStackTrace(error, openRedbox) |
| throw error |
| } |
| await assertHasRedbox(browser) |
| } |
|
|
| export async function openDevToolsIndicatorPopover( |
| browser: Playwright |
| ): Promise<void> { |
| const devToolsIndicator = await assertHasDevToolsIndicator(browser) |
|
|
| try { |
| await devToolsIndicator.click() |
| } catch (cause) { |
| const error = new Error('No DevTools Indicator to open.', { cause }) |
| Error.captureStackTrace(error, openDevToolsIndicatorPopover) |
| throw error |
| } |
| } |
|
|
| export async function getSegmentExplorerRoute(browser: Playwright) { |
| return await browser |
| .elementByCss('.segment-explorer-page-route-bar-path') |
| .text() |
| } |
|
|
| export async function getSegmentExplorerContent(browser: Playwright) { |
| |
| await openDevToolsIndicatorPopover(browser) |
|
|
| |
| await browser.elementByCss('[data-segment-explorer]').click() |
|
|
| |
| await browser.waitForElementByCss('[data-nextjs-devtool-segment-explorer]') |
|
|
| const rows = await browser.elementsByCss('.segment-explorer-item') |
| let result: string[] = [] |
| for (const row of rows) { |
| |
| const segment = ( |
| (await (await row.$('.segment-explorer-filename--path'))?.innerText()) || |
| '' |
| ).trim() |
| const files = ( |
| (await (await row.$('.segment-explorer-files'))?.innerText()) || '' |
| ) |
| .split(/\n+/) |
| .map((file) => file.trim()) |
|
|
| |
| result.push(`${segment} [${files.join(', ')}]`) |
| } |
| return result.join('\n') |
| } |
|
|
| export async function hasDevToolsPanel(browser: Playwright) { |
| const result = await browser.eval(() => { |
| const portal = document.querySelector('nextjs-portal') |
| return ( |
| portal?.shadowRoot?.querySelector('[data-nextjs-dialog-overlay]') != null |
| ) |
| }) |
| return result |
| } |
|
|
| export async function assertHasDevToolsIndicator(browser: Playwright) { |
| const devToolsIndicator = browser.locateDevToolsIndicator() |
| try { |
| await devToolsIndicator.waitFor({ timeout: 5000 }) |
| } catch (errorCause) { |
| const error = new Error( |
| 'Expected DevTools Indicator but found no visible one.' |
| ) |
| Error.captureStackTrace(error, assertHasDevToolsIndicator) |
| throw error |
| } |
|
|
| return devToolsIndicator |
| } |
|
|
| export async function assertNoDevToolsIndicator(browser: Playwright) { |
| const devToolsIndicator = browser.locateDevToolsIndicator() |
|
|
| if (await devToolsIndicator.isVisible()) { |
| const error = new Error( |
| 'Expected no visible DevTools Indicator but found one.' |
| ) |
| Error.captureStackTrace(error, assertNoDevToolsIndicator) |
| throw error |
| } |
| } |
|
|
| export async function getRouteTypeFromDevToolsIndicator( |
| browser: Playwright |
| ): Promise<'Static' | 'Dynamic'> { |
| await openDevToolsIndicatorPopover(browser) |
|
|
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-toast]')) |
|
|
| const root = portal?.shadowRoot |
|
|
| |
| const routeTypeText = root?.querySelector( |
| '[data-nextjs-route-type]' |
| )?.innerText |
|
|
| if (!routeTypeText) { |
| throw new Error('No Route Type Text Found') |
| } |
|
|
| |
| const routeType = routeTypeText.split('\n').pop() |
| if (routeType !== 'Static' && routeType !== 'Dynamic') { |
| throw new Error(`Invalid Route Type: ${routeType}`) |
| } |
|
|
| return routeType as 'Static' | 'Dynamic' |
| }) |
| } |
|
|
| export function getRedboxHeader(browser: Playwright): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal?.shadowRoot |
| return root?.querySelector('[data-nextjs-dialog-header]')?.innerText ?? null |
| }) |
| } |
|
|
| export async function getRedboxTotalErrorCount( |
| browser: Playwright |
| ): Promise<number> { |
| const text = await browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => |
| p.shadowRoot.querySelector('[data-nextjs-dialog-header-total-count]') |
| ) |
|
|
| const root = portal?.shadowRoot |
| return root?.querySelector('[data-nextjs-dialog-header-total-count]') |
| ?.innerText |
| }) |
| return parseInt(text || '-1') |
| } |
|
|
| export function getRedboxSource(browser: Playwright): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => |
| p.shadowRoot.querySelector( |
| '#nextjs__container_errors_label, #nextjs__container_errors_label' |
| ) |
| ) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('[data-nextjs-codeframe], [data-nextjs-terminal]') |
| ?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getRedboxTitle(browser: Playwright): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector( |
| '[data-nextjs-dialog-header] .nextjs__container_errors__error_title' |
| )?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getRedboxLabel(browser: Playwright): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('#nextjs__container_errors_label')?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getRedboxEnvironmentLabel( |
| browser: Playwright |
| ): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('[data-nextjs-environment-name-label]')?.innerText ?? |
| null |
| ) |
| }) |
| } |
|
|
| export function getRedboxDescription( |
| browser: Playwright |
| ): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('#nextjs__container_errors_desc')?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getRedboxDescriptionWarning( |
| browser: Playwright |
| ): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('#nextjs__container_errors__notes')?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getRedboxErrorLink( |
| browser: Playwright |
| ): Promise<string | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-header]')) |
| const root = portal.shadowRoot |
| return ( |
| root.querySelector('#nextjs__container_errors__link')?.innerText ?? null |
| ) |
| }) |
| } |
|
|
| export function getBrowserBodyText(browser: Playwright) { |
| return browser.eval<string>( |
| 'document.getElementsByTagName("body")[0].innerText' |
| ) |
| } |
|
|
| export function normalizeRegEx(src: string) { |
| return new RegExp(src).source.replace(/\^\//g, '^\\/') |
| } |
|
|
| function readJson(path: string) { |
| return JSON.parse(readFileSync(path, 'utf-8')) |
| } |
|
|
| export function getBuildManifest(dir: string) { |
| return readJson(path.join(dir, '.next/build-manifest.json')) |
| } |
|
|
| export function getImagesManifest(dir: string) { |
| return readJson(path.join(dir, '.next/images-manifest.json')) |
| } |
|
|
| export function getPageFilesFromBuildManifest(dir: string, page: string) { |
| const buildManifest = getBuildManifest(dir) |
| const pageFiles = buildManifest.pages[page] |
| if (!pageFiles) { |
| throw new Error(`No files for page ${page}`) |
| } |
|
|
| return pageFiles |
| } |
|
|
| export function getContentOfPageFilesFromBuildManifest( |
| dir: string, |
| page: string |
| ): string { |
| const pageFiles = getPageFilesFromBuildManifest(dir, page) |
|
|
| return pageFiles |
| .map((file) => readFileSync(path.join(dir, '.next', file), 'utf8')) |
| .join('\n') |
| } |
|
|
| export function getPageFileFromBuildManifest(dir: string, page: string) { |
| const pageFiles = getPageFilesFromBuildManifest(dir, page) |
|
|
| const pageFile = pageFiles[pageFiles.length - 1] |
| expect(pageFile).toEndWith('.js') |
| if (!process.env.IS_TURBOPACK_TEST) { |
| expect(pageFile).toInclude(`pages${page === '' ? '/index' : page}`) |
| } |
| if (!pageFile) { |
| throw new Error(`No page file for page ${page}`) |
| } |
|
|
| return pageFile |
| } |
|
|
| export function readNextBuildClientPageFile(appDir: string, page: string) { |
| const pageFile = getPageFileFromBuildManifest(appDir, page) |
| return readFileSync(path.join(appDir, '.next', pageFile), 'utf8') |
| } |
|
|
| export function getPagesManifest(dir: string) { |
| const serverFile = path.join(dir, '.next/server/pages-manifest.json') |
|
|
| return readJson(serverFile) |
| } |
|
|
| export function updatePagesManifest(dir: string, content: any) { |
| const serverFile = path.join(dir, '.next/server/pages-manifest.json') |
|
|
| return writeFile(serverFile, content) |
| } |
|
|
| export function getPageFileFromPagesManifest(dir: string, page: string) { |
| const pagesManifest = getPagesManifest(dir) |
| const pageFile = pagesManifest[page] |
| if (!pageFile) { |
| throw new Error(`No file for page ${page}`) |
| } |
|
|
| return pageFile |
| } |
|
|
| export function readNextBuildServerPageFile(appDir: string, page: string) { |
| const pageFile = getPageFileFromPagesManifest(appDir, page) |
| return readFileSync(path.join(appDir, '.next', 'server', pageFile), 'utf8') |
| } |
|
|
| export function getClientBuildManifest(dir: string) { |
| let buildId = readFileSync(path.join(dir, '.next/BUILD_ID'), 'utf8') |
| let code = readFileSync( |
| path.join(dir, '.next/static', buildId, '_buildManifest.js'), |
| 'utf8' |
| ) |
| |
| let manifest = (0, eval)(`var self = global;${code};self.__BUILD_MANIFEST`) |
| return manifest |
| } |
|
|
| export function getClientBuildManifestLoaderChunkUrlPath( |
| dir: string, |
| page: string |
| ) { |
| let manifest = getClientBuildManifest(dir) |
| let chunk: string[] | undefined = manifest[page] |
| if (chunk == null) { |
| throw new Error(`Couldn't find page "${page}" in _buildManifest.js`) |
| } |
| if (chunk.length !== 1) { |
| throw new Error( |
| `Expected a single chunk, but found ${chunk.length} for "${page}" in _buildManifest.js` |
| ) |
| } |
| |
| return encodeURI(chunk[0].replace(/^\.\//, '')) |
| } |
|
|
| function runSuite( |
| suiteName: string, |
| context: { env: 'prod' | 'dev'; appDir: string } & Partial<{ |
| stderr: string |
| stdout: string |
| appPort: number |
| code: number | null |
| server: ChildProcess |
| }>, |
| options: { |
| beforeAll?: Function |
| afterAll?: Function |
| runTests: Function |
| } & NextDevOptions |
| ) { |
| const { appDir, env } = context |
| describe(`${suiteName} ${env}`, () => { |
| beforeAll(async () => { |
| options.beforeAll?.(env) |
| context.stderr = '' |
| const onStderr = (msg) => { |
| context.stderr += msg |
| } |
| context.stdout = '' |
| const onStdout = (msg) => { |
| context.stdout += msg |
| } |
| if (env === 'prod') { |
| context.appPort = await findPort() |
| const { stdout, stderr, code } = await nextBuild(appDir, [], { |
| stderr: true, |
| stdout: true, |
| env: options.env || {}, |
| nodeArgs: options.nodeArgs, |
| }) |
| context.stdout = stdout |
| context.stderr = stderr |
| context.code = code |
| context.server = await nextStart(context.appDir, context.appPort, { |
| onStderr, |
| onStdout, |
| env: options.env || {}, |
| nodeArgs: options.nodeArgs, |
| }) |
| } else if (env === 'dev') { |
| context.appPort = await findPort() |
| context.server = await launchApp(context.appDir, context.appPort, { |
| onStderr, |
| onStdout, |
| env: options.env || {}, |
| nodeArgs: options.nodeArgs, |
| }) |
| } |
| }) |
| afterAll(async () => { |
| options.afterAll?.(env) |
| if (context.server) { |
| await killApp(context.server) |
| } |
| }) |
| options.runTests(context, env) |
| }) |
| } |
|
|
| export function runDevSuite( |
| suiteName: string, |
| appDir: string, |
| options: { |
| beforeAll?: Function |
| afterAll?: Function |
| runTests: Function |
| env?: NodeJS.ProcessEnv |
| } |
| ) { |
| return runSuite(suiteName, { appDir, env: 'dev' }, options) |
| } |
|
|
| export function runProdSuite( |
| suiteName: string, |
| appDir: string, |
| options: { |
| beforeAll?: Function |
| afterAll?: Function |
| runTests: Function |
| env?: NodeJS.ProcessEnv |
| } |
| ) { |
| ;(process.env.TURBOPACK_DEV ? describe.skip : describe)( |
| 'production mode', |
| () => { |
| runSuite(suiteName, { appDir, env: 'prod' }, options) |
| } |
| ) |
| } |
|
|
| |
| |
| |
| |
| |
| |
| export function findAllTelemetryEvents(output: string, eventName: string) { |
| const regex = /\[telemetry\] ({.+?^})/gms |
| |
| const events = [...output.matchAll(regex)].map((entry) => |
| JSON.parse(entry.pop()!) |
| ) |
| return events.filter((e) => e.eventName === eventName).map((e) => e.payload) |
| } |
|
|
| type TestVariants = 'default' | 'turbo' |
|
|
| |
| |
| |
| export function getSnapshotTestDescribe(variant: TestVariants) { |
| const runningEnv = variant ?? 'default' |
| if (runningEnv !== 'default' && runningEnv !== 'turbo') { |
| throw new Error( |
| `An invalid test env was passed: ${variant} (only "default" and "turbo" are valid options)` |
| ) |
| } |
|
|
| const shouldRunTurboDev = shouldRunTurboDevTest() |
| const shouldSkip = |
| (runningEnv === 'turbo' && !shouldRunTurboDev) || |
| (runningEnv === 'default' && shouldRunTurboDev) |
|
|
| return shouldSkip ? describe.skip : describe |
| } |
|
|
| |
| |
| |
| export async function getRedboxComponentStack( |
| browser: Playwright |
| ): Promise<string | null> { |
| const componentStackFrameElements = await browser.elementsByCss( |
| '[data-nextjs-container-errors-pseudo-html] code' |
| ) |
| if (componentStackFrameElements.length === 0) { |
| return null |
| } |
|
|
| const componentStackFrameTexts = await Promise.all( |
| componentStackFrameElements.map((f) => f.innerText()) |
| ) |
|
|
| return componentStackFrameTexts.join('\n').trim() |
| } |
|
|
| export async function hasRedboxCallStack(browser: Playwright) { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-dialog-body]')) |
| const root = portal?.shadowRoot |
|
|
| return root?.querySelectorAll('[data-nextjs-call-stack-frame]').length > 0 |
| }) |
| } |
|
|
| export async function getRedboxCallStack( |
| browser: Playwright |
| ): Promise<string[] | null> { |
| return browser.eval(() => { |
| const portal = [].slice |
| .call(document.querySelectorAll('nextjs-portal')) |
| .find((p) => p.shadowRoot.querySelector('[data-nextjs-call-stack-frame]')) |
| const root = portal?.shadowRoot |
| const frameElements = root?.querySelectorAll( |
| '[data-nextjs-call-stack-frame]' |
| ) |
|
|
| const stack: string[] = [] |
| if (frameElements !== undefined) { |
| let foundInternalFrame = false |
| for (const frameElement of frameElements) { |
| |
| |
| |
| const frame = frameElement.innerText.replace('\n', ' ') |
|
|
| |
|
|
| |
| const isInternalFrame = |
| |
| |
| / .\/dist\//.test(frame) |
|
|
| if (isInternalFrame) { |
| |
| |
| if (!foundInternalFrame) { |
| stack.push('<FIXME-internal-frame>') |
| } |
| foundInternalFrame = true |
| } else if (frame.includes('file://')) { |
| stack.push('<FIXME-file-protocol>') |
| } else if (frame.includes('.next/')) { |
| stack.push('<FIXME-next-dist-dir>') |
| } else { |
| stack.push(frame) |
| } |
| } |
| } |
|
|
| return stack |
| }) |
| } |
|
|
| export async function getRedboxCallStackCollapsed( |
| browser: Playwright |
| ): Promise<string> { |
| const callStackFrameElements = await browser.elementsByCss( |
| '.nextjs-container-errors-body > [data-nextjs-codeframe] > :first-child, ' + |
| '.nextjs-container-errors-body > [data-nextjs-call-stack-frame], ' + |
| '.nextjs-container-errors-body > [data-nextjs-collapsed-call-stack-details] > summary' |
| ) |
| const callStackFrameTexts = await Promise.all( |
| callStackFrameElements.map((f) => f.innerText()) |
| ) |
|
|
| return callStackFrameTexts.join('\n---\n').trim() |
| } |
|
|
| export async function getVersionCheckerText( |
| browser: Playwright |
| ): Promise<string> { |
| await browser.waitForElementByCss('[data-nextjs-version-checker]', 30000) |
| const versionCheckerElement = await browser.elementByCss( |
| '[data-nextjs-version-checker]' |
| ) |
| const versionCheckerText = await versionCheckerElement.innerText() |
| return versionCheckerText.trim() |
| } |
|
|
| export function colorToRgb(color) { |
| switch (color) { |
| case 'blue': |
| return 'rgb(0, 0, 255)' |
| case 'red': |
| return 'rgb(255, 0, 0)' |
| case 'green': |
| return 'rgb(0, 128, 0)' |
| case 'yellow': |
| return 'rgb(255, 255, 0)' |
| case 'purple': |
| return 'rgb(128, 0, 128)' |
| case 'black': |
| return 'rgb(0, 0, 0)' |
| default: |
| throw new Error('Unknown color') |
| } |
| } |
|
|
| export function getUrlFromBackgroundImage(backgroundImage: string) { |
| const matches = backgroundImage.match(/url\("[^)]+"\)/g)!.map((match) => { |
| |
| return match.slice(5, -2) |
| }) |
|
|
| return matches |
| } |
|
|
| export const getTitle = (browser: Playwright) => |
| browser.elementByCss('title').text() |
|
|
| async function checkMeta( |
| browser: Playwright, |
| queryValue: string, |
| expected: RegExp | string | string[] | undefined | null, |
| queryKey: string = 'property', |
| tag: string = 'meta', |
| domAttributeField: string = 'content' |
| ) { |
| const values = await browser.eval<(string | null)[]>( |
| `[...document.querySelectorAll('${tag}[${queryKey}="${queryValue}"]')].map((el) => el.getAttribute("${domAttributeField}"))` |
| ) |
| if (expected instanceof RegExp) { |
| expect(values[0]).toMatch(expected) |
| } else { |
| if (Array.isArray(expected)) { |
| expect(values).toEqual(expected) |
| } else { |
| |
| |
| if (expected === undefined) { |
| expect(values).not.toContain(undefined) |
| } else { |
| expect(values).toContain(expected) |
| } |
| } |
| } |
| } |
|
|
| export function createDomMatcher(browser: Playwright) { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| return async ( |
| tag: string, |
| query: string, |
| expectedObject: Record<string, string | null | undefined> |
| ) => { |
| const props = await browser.eval(` |
| const el = document.querySelector('${tag}[${query}]'); |
| const res = {} |
| const keys = ${JSON.stringify(Object.keys(expectedObject))} |
| for (const k of keys) { |
| res[k] = el?.getAttribute(k) |
| } |
| res |
| `) |
| expect(props).toEqual(expectedObject) |
| } |
| } |
|
|
| export function createMultiHtmlMatcher($: ReturnType<typeof cheerio.load>) { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| return ( |
| tag: string, |
| queryKey: string, |
| domAttributeField: string, |
| expected: Record<string, string | string[] | undefined> |
| ) => { |
| const res = {} |
| for (const key of Object.keys(expected)) { |
| const el = $(`${tag}[${queryKey}="${key}"]`) |
| if (el.length > 1) { |
| res[key] = el.toArray().map((el) => el.attribs[domAttributeField]) |
| } else { |
| res[key] = el.attr(domAttributeField) |
| } |
| } |
| expect(res).toEqual(expected) |
| } |
| } |
|
|
| export function createMultiDomMatcher(browser: Playwright) { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| return async ( |
| tag: string, |
| queryKey: string, |
| domAttributeField: string, |
| expected: Record<string, string | string[] | undefined | null> |
| ) => { |
| await Promise.all( |
| Object.keys(expected).map(async (key) => { |
| return checkMeta( |
| browser, |
| key, |
| expected[key], |
| queryKey, |
| tag, |
| domAttributeField |
| ) |
| }) |
| ) |
| } |
| } |
|
|
| export const checkMetaNameContentPair = ( |
| browser: Playwright, |
| name: string, |
| content: string | string[] |
| ) => checkMeta(browser, name, content, 'name') |
|
|
| export const checkLink = ( |
| browser: Playwright, |
| rel: string, |
| content: string | string[] |
| ) => checkMeta(browser, rel, content, 'rel', 'link', 'href') |
|
|
| export async function getStackFramesContent(browser) { |
| const stackFrameElements = await browser.elementsByCss( |
| '[data-nextjs-call-stack-frame]' |
| ) |
| const stackFramesContent = ( |
| await Promise.all( |
| stackFrameElements.map(async (frame) => { |
| const functionNameEl = await frame.$('.call-stack-frame-method-name') |
| const sourceEl = await frame.$('[data-has-source="true"]') |
| const functionName = functionNameEl |
| ? await functionNameEl.innerText() |
| : '' |
| const source = sourceEl ? await sourceEl.innerText() : '' |
|
|
| if (!functionName) { |
| return '' |
| } |
| return `at ${functionName} (${source})` |
| }) |
| ) |
| ) |
| .filter(Boolean) |
| .join('\n') |
|
|
| return stackFramesContent |
| } |
|
|
| export async function toggleCollapseCallStackFrames(browser: Playwright) { |
| const button = await browser.elementByCss( |
| '[data-nextjs-call-stack-ignored-list-toggle-button]' |
| ) |
| const lastExpanded = await button.getAttribute( |
| 'data-nextjs-call-stack-ignored-list-toggle-button' |
| ) |
| await button.click() |
|
|
| await retry(async () => { |
| const currExpanded = await button.getAttribute( |
| 'data-nextjs-call-stack-ignored-list-toggle-button' |
| ) |
| expect(currExpanded).not.toBe(lastExpanded) |
| }) |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| export function createNowRouteMatches( |
| params: Record<string, string>, |
| extraQueryParams: Record<string, string> = {} |
| ): URLSearchParams { |
| const urlSearchParams = new URLSearchParams() |
| for (const [key, value] of Object.entries(params)) { |
| urlSearchParams.append(`nxtP${key}`, value) |
| } |
| for (const [key, value] of Object.entries(extraQueryParams)) { |
| urlSearchParams.append(key, value) |
| } |
|
|
| return urlSearchParams |
| } |
|
|
| export async function assertNoConsoleErrors(browser: Playwright) { |
| const logs = await browser.log() |
| const warningsAndErrors = logs.filter((log) => { |
| return ( |
| log.source === 'warning' || |
| (log.source === 'error' && |
| |
| !log.message.startsWith( |
| 'Failed to load resource: the server responded with a status of 404' |
| )) |
| ) |
| }) |
|
|
| expect(warningsAndErrors).toEqual([]) |
| } |
|
|
| export async function getHighlightedDiffLines( |
| browser: Playwright |
| ): Promise<[string, string][]> { |
| const lines = await browser.elementsByCss( |
| '[data-nextjs-container-errors-pseudo-html--diff]' |
| ) |
| return Promise.all( |
| lines.map(async (line) => [ |
| (await line.getAttribute( |
| 'data-nextjs-container-errors-pseudo-html--diff' |
| ))!, |
| (await line.innerText())[0], |
| ]) |
| ) |
| } |
|
|
| export function trimEndMultiline(str: string) { |
| return str |
| .split('\n') |
| .map((line) => line.trimEnd()) |
| .join('\n') |
| } |
|
|