mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
8141dcf12e
### What?
Converts every test under `test/integration/` to an isolated test
running through `nextTestSetup` (under `test/e2e/`, `test/production/`,
`test/development/`, or `test/unit/`), then deletes `test/integration/`
along with the legacy CI orchestration that was specific to it.
- `test/integration/` removed entirely (~327 test suites)
- New isolated suites added across the existing folders:
- `test/e2e/` — 175
- `test/production/` — 130
- `test/development/` — 43
- `test/unit/` — 1
- `.github/workflows/build_and_test.yml` and `run-tests.js` no longer
have any `integration` branches
- `nextTestSetup` gained a `baseUrl` option on `next.browser()` so a
small number of tests that drive their own proxy/static-export server
can keep using `next.browser(...)` instead of importing `next-webdriver`
directly
### Why?
`test/integration/` predated `nextTestSetup` and ran tests directly
against the source checkout via custom helpers (`launchApp`,
`nextBuild`, `nextStart`, `runNextCommand`, `webdriver`, `fetchViaHTTP`,
…). Each suite hand-rolled its own dev/start/build orchestration,
fixture mutation, and process management.
The isolated test model used by the rest of the repo gives each suite an
isolated working directory containing a packed `next.tgz` install, a
uniform `next.start()` / `next.build()` / `next.fetch()` /
`next.browser()` API, and the same lifecycle for dev, start, and deploy
modes — so a single set of assertions covers all three. Deploy-mode
skips and per-feature gates are expressed declaratively
(`skipDeployment`, `disableAutoSkewProtection`, `if (skipped) return`)
instead of branching on `process.env`.
Removing `test/integration/` lets us:
- Delete the bespoke orchestration code in the CI workflow and
`run-tests.js`
- Run every converted suite consistently in dev, start, and deploy modes
(where applicable)
- Reproduce every test locally with the same `pnpm
test-{dev,start}-{turbo,webpack}` commands; no separate `integration`
path
- Open the door to running `test/production` against deployments in the
future (the converted suites already declare `skipDeployment` so they
can be flipped on)
### How?
Mechanical conversion per suite, with targeted clean-ups:
1. **Per-suite conversion.** Each
`test/integration/<name>/test/index.test.{js,ts}` was rewritten into a
single `<name>.test.ts` under the right folder based on what the
original exercised:
- `launchApp` / dev-only assertions → `test/development/`
- `nextBuild` + `nextStart` / start-only assertions → `test/production/`
- Both → `test/e2e/`
- The one pure jsdom render check (`link-without-router`) → `test/unit/`
2. **API mapping.** Custom helpers were replaced by `nextTestSetup`
equivalents: `launchApp` → `next.start()`, `nextBuild` → `next.build()`,
`runNextCommand` → `next.runCommand`, `fetchViaHTTP` → `next.fetch`,
`webdriver(...)` → `next.browser(...)`. Fixture mutations switched from
raw `fs.writeFile`/`fs.rename` to `next.patchFile` (with the 3-arg
`runWithTempContent` callback when the change has a defined scope) and
`next.deleteFile`.
3. **Deploy-mode handling.** Suites that can't run in deploy mode (use
`patchFile` / `next.build()` / depend on local CLI output) declare
`skipDeployment: true` and early-return on the `skipped` boolean. Suites
where Vercel's edge mutates URLs (`&dpl=`, immutable assets) declare
`disableAutoSkewProtection: true`.
4. **`next.browser({ baseUrl })`.** A handful of tests
(`prerender-export`, `cdn-cache-busting`, `preload-viewport`, both
`react-virtualized` suites) need to drive a separate server (a
static-export server or an `http-proxy` instance) rather than the
Next.js process. Instead of importing `next-webdriver` directly, those
tests now pass `{ baseUrl: <port|url> }` to `next.browser()`. For the
proxy cases, the proxy was moved into `server.js` inside the fixture and
`http-proxy` declared via the `dependencies` option of `nextTestSetup`,
so the test runs with a fully isolated dependency graph.
5. **CI clean-up.** With `test/integration` gone, the `test
integration*` jobs and `integration-tests-manifest`-related logic in
`.github/workflows/build_and_test.yml` were removed, and `run-tests.js`
no longer has the `integration` test-folder branch.
6. **Validation.** The PR was iterated against multiple full CI runs;
the remaining failures on the latest run are pre-existing flakes
(segment-cache 60s `act` timeouts in turbopack-prod) or transient
infrastructure issues unrelated to the conversion.
215 lines
6.4 KiB
TypeScript
215 lines
6.4 KiB
TypeScript
import { nextTestSetup, isNextDev, isNextStart } from 'e2e-utils'
|
|
import { retry } from 'next-test-utils'
|
|
import {
|
|
GSP_NO_RETURNED_VALUE,
|
|
GSSP_NO_RETURNED_VALUE,
|
|
} from '../../../packages/next/dist/lib/constants'
|
|
|
|
describe('GS(S)P Page Errors', () => {
|
|
;(isNextDev ? describe : describe.skip)('development mode', () => {
|
|
const { next, skipped } = nextTestSetup({
|
|
files: __dirname,
|
|
skipDeployment: true,
|
|
})
|
|
if (skipped) return
|
|
|
|
it('should show error for getStaticProps as component member', async () => {
|
|
const outputIndex = next.cliOutput.length
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
const Page = () => 'hi'
|
|
Page.getStaticProps = () => ({ props: { hello: 'world' }})
|
|
export default Page
|
|
`
|
|
)
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getStaticProps can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show error for getServerSideProps as component member', async () => {
|
|
const outputIndex = next.cliOutput.length
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
import React from 'react'
|
|
export default class MyPage extends React.Component {
|
|
static async getServerSideProps() {
|
|
return {
|
|
props: {
|
|
hello: 'world'
|
|
}
|
|
}
|
|
}
|
|
render() {
|
|
return 'hi'
|
|
}
|
|
}
|
|
`
|
|
)
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getServerSideProps can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show error for getStaticPaths as component member', async () => {
|
|
const outputIndex = next.cliOutput.length
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
const Page = () => 'hi'
|
|
Page.getStaticPaths = () => ({ paths: [], fallback: true })
|
|
export default Page
|
|
`
|
|
)
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getStaticPaths can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show error for undefined getStaticProps', async () => {
|
|
const outputIndex = next.cliOutput.length
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
export function getStaticProps() {}
|
|
export default function Page() {
|
|
return <div />;
|
|
}
|
|
`
|
|
)
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(GSP_NO_RETURNED_VALUE)
|
|
})
|
|
|
|
it('should show error for undefined getServerSideProps', async () => {
|
|
const outputIndex = next.cliOutput.length
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
export function getServerSideProps() {}
|
|
export default function Page() {
|
|
return <div />;
|
|
}
|
|
`
|
|
)
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
GSSP_NO_RETURNED_VALUE
|
|
)
|
|
})
|
|
})
|
|
;(isNextStart ? describe : describe.skip)('production mode', () => {
|
|
const { next, skipped } = nextTestSetup({
|
|
files: __dirname,
|
|
skipStart: true,
|
|
skipDeployment: true,
|
|
})
|
|
if (skipped) return
|
|
|
|
it('should show build error for getStaticProps as component member', async () => {
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
const Page = () => 'hi'
|
|
Page.getStaticProps = () => ({ props: { hello: 'world' }})
|
|
export default Page
|
|
`
|
|
)
|
|
const outputIndex = next.cliOutput.length
|
|
await next.build()
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getStaticProps can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show build error for getServerSideProps as component member', async () => {
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
import React from 'react'
|
|
export default class MyPage extends React.Component {
|
|
static async getServerSideProps() {
|
|
return {
|
|
props: {
|
|
hello: 'world'
|
|
}
|
|
}
|
|
}
|
|
render() {
|
|
return 'hi'
|
|
}
|
|
}
|
|
`
|
|
)
|
|
const outputIndex = next.cliOutput.length
|
|
await next.build()
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getServerSideProps can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show build error for getStaticPaths as component member', async () => {
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
const Page = () => 'hi'
|
|
Page.getStaticPaths = () => ({ paths: [], fallback: true })
|
|
export default Page
|
|
`
|
|
)
|
|
const outputIndex = next.cliOutput.length
|
|
await next.build()
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(
|
|
`getStaticPaths can not be attached to a page's component and must be exported from the page`
|
|
)
|
|
})
|
|
|
|
it('should show build error for undefined getStaticProps', async () => {
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`
|
|
export function getStaticProps() {}
|
|
export default function Page() {
|
|
return <div />;
|
|
}
|
|
`
|
|
)
|
|
const outputIndex = next.cliOutput.length
|
|
await next.build()
|
|
expect(next.cliOutput.slice(outputIndex)).toContain(GSP_NO_RETURNED_VALUE)
|
|
})
|
|
|
|
it('Error stack printed to stderr', async () => {
|
|
await next.patchFile(
|
|
'pages/index.js',
|
|
`export default function Page() {
|
|
return <div/>
|
|
}
|
|
export function getStaticProps() {
|
|
// Make it pass on the build phase
|
|
if(process.env.NEXT_PHASE === "phase-production-build") {
|
|
return { props: { foo: 'bar' }, revalidate: 1 }
|
|
}
|
|
|
|
throw new Error("Oops")
|
|
}
|
|
`
|
|
)
|
|
|
|
await next.build()
|
|
await next.start()
|
|
const outputIndex = next.cliOutput.length
|
|
await retry(async () => {
|
|
await next.render('/')
|
|
expect(next.cliOutput.slice(outputIndex)).toMatch(/error: oops/i)
|
|
})
|
|
expect(next.cliOutput.slice(outputIndex)).toContain('Error: Oops')
|
|
})
|
|
})
|
|
})
|