File size: 15,662 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
import path from 'path'
import { nextTestSetup } from 'e2e-utils'
import {
renderViaHTTP,
startStaticServer,
check,
getBrowserBodyText,
} from 'next-test-utils'
import { AddressInfo, Server } from 'net'
import cheerio from 'cheerio'
import webdriver from 'next-webdriver'
describe('static export', () => {
const { next, skipped } = nextTestSetup({
files: __dirname,
skipStart: true,
})
if (skipped) {
return
}
const nextConfigPath = 'next.config.js'
const outdir = 'out'
const outNoTrailSlash = 'outNoTrailSlash'
let server: Server
let port: number
let serverNoTrailSlash: Server
let portNoTrailSlash: number
beforeAll(async () => {
const nextConfig = await next.readFile(nextConfigPath)
await next.build()
await next.patchFile(
nextConfigPath,
nextConfig
.replace(`trailingSlash: true`, `trailingSlash: false`)
.replace(`distDir: 'out'`, `distDir: '${outNoTrailSlash}'`)
)
await next.build()
await next.patchFile(nextConfigPath, nextConfig)
server = await startStaticServer(path.join(next.testDir, outdir))
serverNoTrailSlash = await startStaticServer(
path.join(next.testDir, outNoTrailSlash)
)
port = (server.address() as AddressInfo).port
portNoTrailSlash = (serverNoTrailSlash.address() as AddressInfo).port
})
afterAll(async () => {
await Promise.all([
new Promise((resolve) => server.close(resolve)),
new Promise((resolve) => serverNoTrailSlash.close(resolve)),
])
})
it('should delete existing exported files', async () => {
const tmpOutDir = 'tmpOutDir'
const tempfile = path.join(tmpOutDir, 'temp.txt')
await next.patchFile(tempfile, 'test')
const nextConfig = await next.readFile(nextConfigPath)
await next.patchFile(
nextConfigPath,
nextConfig.replace(`distDir: 'out'`, `distDir: '${tmpOutDir}'`)
)
await next.build()
await next.patchFile(nextConfigPath, nextConfig)
await expect(next.readFile(tempfile)).rejects.toThrow()
})
const fileExist = async (file: string) =>
await next
.readFile(file)
.then(() => true)
.catch(() => false)
it('should honor trailingSlash for 404 page', async () => {
expect(await fileExist(path.join(outdir, '404/index.html'))).toBe(true)
// we still output 404.html for backwards compat
expect(await fileExist(path.join(outdir, '404.html'))).toBe(true)
})
it('should handle trailing slash in getStaticPaths', async () => {
expect(await fileExist(path.join(outdir, 'gssp/foo/index.html'))).toBe(true)
expect(await fileExist(path.join(outNoTrailSlash, 'gssp/foo.html'))).toBe(
true
)
})
it('should only output 404.html without trailingSlash', async () => {
expect(await fileExist(path.join(outNoTrailSlash, '404/index.html'))).toBe(
false
)
expect(await fileExist(path.join(outNoTrailSlash, '404.html'))).toBe(true)
})
it('should not duplicate /index with trailingSlash', async () => {
expect(await fileExist(path.join(outdir, 'index/index.html'))).toBe(false)
expect(await fileExist(path.join(outdir, 'index.html'))).toBe(true)
})
describe('Dynamic routes export', () => {
it('Should throw error not matched route', async () => {
const outdir = 'outDynamic'
const nextConfig = await next.readFile(nextConfigPath)
await next.patchFile(
nextConfigPath,
nextConfig
.replace('/blog/nextjs/comment/test', '/bad/path')
.replace(`distDir: 'out'`, `distDir: '${outdir}'`)
)
const { cliOutput } = await next.build()
await next.patchFile(nextConfigPath, nextConfig)
expect(cliOutput).toContain(
'https://nextjs.org/docs/messages/export-path-mismatch'
)
})
})
describe('Render via browser', () => {
it('should render the home page', async () => {
const browser = await webdriver(port, '/')
const text = await browser.elementByCss('#home-page p').text()
expect(text).toBe('This is the home page')
await browser.close()
})
it('should add trailing slash on Link', async () => {
const browser = await webdriver(port, '/')
const link = await browser
.elementByCss('#about-via-link')
.getAttribute('href')
expect(link.slice(-1)).toBe('/')
})
it('should not add any slash on hash Link', async () => {
const browser = await webdriver(port, '/hash-link')
const link = await browser.elementByCss('#hash-link').getAttribute('href')
expect(link).toMatch(/\/hash-link\/#hash$/)
})
it('should preserve hash symbol on empty hash Link', async () => {
const browser = await webdriver(port, '/empty-hash-link')
const link = await browser
.elementByCss('#empty-hash-link')
.getAttribute('href')
expect(link).toMatch(/\/hello\/#$/)
})
it('should preserve question mark on empty query Link', async () => {
const browser = await webdriver(port, '/empty-query-link')
const link = await browser
.elementByCss('#empty-query-link')
.getAttribute('href')
expect(link).toMatch(/\/hello\/\?$/)
})
it('should not add trailing slash on Link when disabled', async () => {
const browser = await webdriver(portNoTrailSlash, '/')
const link = await browser
.elementByCss('#about-via-link')
.getAttribute('href')
expect(link.slice(-1)).not.toBe('/')
})
it('should do navigations via Link', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#about-via-link')
.click()
.waitForElementByCss('#about-page')
.elementByCss('#about-page p')
.text()
expect(text).toBe('This is the About page foo')
await browser.close()
})
it('should do navigations via Router', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#about-via-router')
.click()
.waitForElementByCss('#about-page')
.elementByCss('#about-page p')
.text()
expect(text).toBe('This is the About page foo')
await browser.close()
})
it('should do run client side javascript', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#counter')
.click()
.waitForElementByCss('#counter-page')
.elementByCss('#counter-increase')
.click()
.elementByCss('#counter-increase')
.click()
.elementByCss('#counter-page p')
.text()
expect(text).toBe('Counter: 2')
await browser.close()
})
it('should render pages using getInitialProps', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#get-initial-props')
.click()
.waitForElementByCss('#dynamic-page')
.elementByCss('#dynamic-page p')
.text()
expect(text).toBe('cool dynamic text')
await browser.close()
})
it('should render dynamic pages with custom urls', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#dynamic-1')
.click()
.waitForElementByCss('#dynamic-page')
.elementByCss('#dynamic-page p')
.text()
expect(text).toBe('next export is nice')
await browser.close()
})
it('should support client side navigation', async () => {
const browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#counter')
.click()
.waitForElementByCss('#counter-page')
.elementByCss('#counter-increase')
.click()
.elementByCss('#counter-increase')
.click()
.elementByCss('#counter-page p')
.text()
expect(text).toBe('Counter: 2')
// let's go back and come again to this page:
const textNow = await browser
.elementByCss('#go-back')
.click()
.waitForElementByCss('#home-page')
.elementByCss('#counter')
.click()
.waitForElementByCss('#counter-page')
.elementByCss('#counter-page p')
.text()
expect(textNow).toBe('Counter: 2')
await browser.close()
})
it('should render dynamic import components in the client', async () => {
const browser = await webdriver(port, '/')
await browser
.elementByCss('#dynamic-imports-link')
.click()
.waitForElementByCss('#dynamic-imports-page')
await check(
() => getBrowserBodyText(browser),
/Welcome to dynamic imports/
)
await browser.close()
})
it('should render pages with url hash correctly', async () => {
let browser
try {
browser = await webdriver(port, '/')
// Check for the query string content
const text = await browser
.elementByCss('#with-hash')
.click()
.waitForElementByCss('#dynamic-page')
.elementByCss('#dynamic-page p')
.text()
expect(text).toBe('Vercel is awesome')
await check(() => browser.elementByCss('#hash').text(), /cool/)
} finally {
if (browser) {
await browser.close()
}
}
})
it('should render 404 when visiting a page that returns notFound from gsp', async () => {
let browser
try {
browser = await webdriver(port, '/')
const text = await browser
.elementByCss('#gsp-notfound-link')
.click()
.waitForElementByCss('pre')
.elementByCss('pre')
.text()
expect(text).toBe('Cannot GET /gsp-notfound/')
} finally {
if (browser) {
await browser.close()
}
}
})
it('should navigate even if used a button inside <Link />', async () => {
const browser = await webdriver(port, '/button-link')
const text = await browser
.elementByCss('button')
.click()
.waitForElementByCss('#home-page')
.elementByCss('#home-page p')
.text()
expect(text).toBe('This is the home page')
await browser.close()
})
it('should update query after mount', async () => {
const browser = await webdriver(port, '/query-update?hello=world')
const query = await browser.elementByCss('#query').text()
expect(JSON.parse(query)).toEqual({ hello: 'world', a: 'blue' })
await browser.close()
})
describe('pages in the nested level: level1', () => {
it('should render the home page', async () => {
const browser = await webdriver(port, '/')
await browser.eval(
'document.getElementById("level1-home-page").click()'
)
await check(
() => getBrowserBodyText(browser),
/This is the Level1 home page/
)
await browser.close()
})
it('should render the about page', async () => {
const browser = await webdriver(port, '/')
await browser.eval(
'document.getElementById("level1-about-page").click()'
)
await check(
() => getBrowserBodyText(browser),
/This is the Level1 about page/
)
await browser.close()
})
})
})
describe('Render via SSR', () => {
it('should render the home page', async () => {
const html = await renderViaHTTP(port, '/')
expect(html).toMatch(/This is the home page/)
})
it('should render the about page', async () => {
const html = await renderViaHTTP(port, '/about')
expect(html).toMatch(/This is the About page foobar/)
})
it('should render links correctly', async () => {
const html = await renderViaHTTP(port, '/')
const $ = cheerio.load(html)
const dynamicLink = $('#dynamic-1').prop('href')
const filePathLink = $('#path-with-extension').prop('href')
expect(dynamicLink).toEqual('/dynamic/one/')
expect(filePathLink).toEqual('/file-name.md')
})
it('should render a page with getInitialProps', async () => {
const html = await renderViaHTTP(port, '/dynamic')
expect(html).toMatch(/cool dynamic text/)
})
it('should render a dynamically rendered custom url page', async () => {
const html = await renderViaHTTP(port, '/dynamic/one')
expect(html).toMatch(/next export is nice/)
})
it('should render pages with dynamic imports', async () => {
const html = await renderViaHTTP(port, '/dynamic-imports')
expect(html).toMatch(/Welcome to dynamic imports/)
})
it('should render paths with extensions', async () => {
const html = await renderViaHTTP(port, '/file-name.md')
expect(html).toMatch(/this file has an extension/)
})
it('should give empty object for query if there is no query', async () => {
const html = await renderViaHTTP(port, '/get-initial-props-with-no-query')
expect(html).toMatch(/Query is: {}/)
})
it('should render _error on 404.html even if not provided in exportPathMap', async () => {
const html = await renderViaHTTP(port, '/404.html')
// The default error page from the test server
// contains "404", so need to be specific here
expect(html).toMatch(/404.*page.*not.*found/i)
})
// since exportTrailingSlash is enabled we should allow this
it('should render _error on /404/index.html', async () => {
const html = await renderViaHTTP(port, '/404/index.html')
// The default error page from the test server
// contains "404", so need to be specific here
expect(html).toMatch(/404.*page.*not.*found/i)
})
it('Should serve static files', async () => {
const data = await renderViaHTTP(port, '/static/data/item.txt')
expect(data).toBe('item')
})
it('Should serve public files', async () => {
const html = await renderViaHTTP(port, '/about')
const data = await renderViaHTTP(port, '/about/data.txt')
expect(html).toMatch(/This is the About page foobar/)
expect(data).toBe('data')
})
it('Should render dynamic files with query', async () => {
const html = await renderViaHTTP(port, '/blog/nextjs/comment/test')
expect(html).toMatch(/Blog post nextjs comment test/)
})
})
describe('API routes export', () => {
it('Should throw if a route is matched', async () => {
const outdir = 'outApi'
const nextConfig = await next.readFile(nextConfigPath)
await next.patchFile(
nextConfigPath,
nextConfig
.replace('// API route', `'/data': { page: '/api/data' },`)
.replace(`distDir: 'out'`, `distDir: '${outdir}'`)
)
const { cliOutput } = await next.build()
await next.patchFile(nextConfigPath, nextConfig)
expect(cliOutput).toContain(
'https://nextjs.org/docs/messages/api-routes-static-export'
)
})
})
it('exportTrailingSlash is not ignored', async () => {
const nextConfig = await next.readFile(nextConfigPath)
const tmpOutdir = 'exportTrailingSlash-out'
await next.patchFile(
nextConfigPath,
nextConfig
.replace(`trailingSlash: true`, `exportTrailingSlash: true`)
.replace(`distDir: 'out'`, `distDir: '${tmpOutdir}'`)
)
await next.build()
await next.patchFile(nextConfigPath, nextConfig)
expect(await fileExist(path.join(tmpOutdir, '404/index.html'))).toBeTrue()
})
})
|