Nuxt/test/unit/basic.generate.test.js

243 lines
7.9 KiB
JavaScript
Raw Normal View History

import { existsSync, writeFileSync } from 'fs'
2016-12-21 14:03:37 +00:00
import http from 'http'
2018-03-16 19:52:17 +00:00
import { resolve } from 'path'
import { remove } from 'fs-extra'
2016-12-21 14:03:37 +00:00
import serveStatic from 'serve-static'
2016-12-21 19:51:43 +00:00
import finalhandler from 'finalhandler'
import { Builder, Generator, getPort, loadFixture, Nuxt, rp, listPaths, equalOrStartsWith } from '../utils'
2018-03-16 19:52:17 +00:00
2018-03-18 23:41:14 +00:00
let port
2018-01-13 05:22:11 +00:00
const url = route => 'http://localhost:' + port + route
2018-03-19 10:06:45 +00:00
const rootDir = resolve(__dirname, '..', 'fixtures/basic')
2018-03-19 04:21:04 +00:00
const distDir = resolve(rootDir, '.nuxt-generate')
2016-12-20 19:44:42 +00:00
let builder
2016-12-21 14:03:37 +00:00
let server = null
let generator = null
let pathsBefore
let changedFileName
2016-12-20 19:44:42 +00:00
2018-03-18 19:31:32 +00:00
describe('basic generate', () => {
beforeAll(async () => {
const config = await loadFixture('basic', { generate: { dir: '.nuxt-generate' } })
const nuxt = new Nuxt(config)
pathsBefore = listPaths(nuxt.options.rootDir)
// Make sure our check for changed files is really working
changedFileName = resolve(nuxt.options.generate.dir, '..', '.nuxt-generate-changed')
nuxt.hook('generate:done', () => {
writeFileSync(changedFileName, '')
})
builder = new Builder(nuxt)
builder.build = jest.fn()
generator = new Generator(nuxt, builder)
await generator.generate()
2018-03-19 04:21:04 +00:00
const serve = serveStatic(distDir)
2018-03-18 19:31:32 +00:00
server = http.createServer((req, res) => {
serve(req, res, finalhandler(req, res))
})
2018-03-18 23:41:14 +00:00
port = await getPort()
2018-03-18 19:31:32 +00:00
server.listen(port)
2018-03-18 23:41:14 +00:00
})
2016-12-20 19:44:42 +00:00
test('Check builder', () => {
expect(builder.bundleBuilder.context.isStatic).toBe(true)
expect(builder.build).toHaveBeenCalledTimes(1)
})
test('Check ready hook called', () => {
2018-08-20 14:20:45 +00:00
expect(generator.nuxt.__hook_ready_called__).toBe(true)
})
test('Check changed files', () => {
// When generating Nuxt we only expect files to change
// within nuxt.options.generate.dir, but also allow other
// .nuxt dirs for when tests are runInBand
const allowChangesDir = resolve(generator.nuxt.options.generate.dir, '..', '.nuxt')
let changedFileFound = false
const paths = listPaths(generator.nuxt.options.rootDir, pathsBefore)
paths.forEach((item) => {
if (item.path === changedFileName) {
changedFileFound = true
} else {
expect(equalOrStartsWith(allowChangesDir, item.path)).toBe(true)
}
})
expect(changedFileFound).toBe(true)
})
test('Format errors', () => {
const error = generator._formatErrors([
{ type: 'handled', route: '/h1', error: 'page not found' },
{ type: 'unhandled', route: '/h2', error: { stack: 'unhandled error stack' } }
])
expect(error).toMatch(' /h1')
expect(error).toMatch(' /h2')
expect(error).toMatch('"page not found"')
expect(error).toMatch('unhandled error stack')
2018-03-18 19:31:32 +00:00
})
2017-10-31 11:33:15 +00:00
2018-03-18 19:31:32 +00:00
test('/stateless', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/stateless'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>My component!</h1>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
test('/store-module', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/store-module'))
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>mutated</h1>')
})
2018-03-18 19:31:32 +00:00
test('/css', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/css'))
2018-03-18 19:31:32 +00:00
const headHtml = window.document.head.innerHTML
2018-11-08 09:41:24 +00:00
expect(headHtml).toContain('.red{color:red')
2018-03-18 19:31:32 +00:00
const element = window.document.querySelector('.red')
expect(element).not.toBe(null)
expect(element.textContent).toContain('This is red')
2018-03-18 19:31:32 +00:00
expect(element.className).toBe('red')
// t.is(window.getComputedStyle(element), 'red')
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/stateful', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/stateful'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('<div><p>The answer is 42</p></div>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/head', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/head'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
const metas = window.document.getElementsByTagName('meta')
2018-03-18 23:41:14 +00:00
expect(window.document.title).toBe('My title - Nuxt.js')
2018-03-18 19:31:32 +00:00
expect(metas[0].getAttribute('content')).toBe('my meta')
2018-11-08 09:41:24 +00:00
expect(html).toContain('<div><h1>I can haz meta tags</h1></div>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/async-data', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/async-data'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('<p>Nuxt.js</p>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
test('/тест雨 (test non ascii route)', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/тест雨'))
const html = window.document.body.innerHTML
expect(html).toContain('Hello unicode')
})
2018-03-18 19:31:32 +00:00
test('/users/1/index.html', async () => {
const html = await rp(url('/users/1/index.html'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>User: 1</h1>')
2018-03-18 19:31:32 +00:00
expect(
2018-03-19 04:21:04 +00:00
existsSync(resolve(distDir, 'users/1/index.html'))
2018-03-18 19:31:32 +00:00
).toBe(true)
2018-03-19 04:21:04 +00:00
expect(existsSync(resolve(distDir, 'users/1.html'))).toBe(false)
2018-03-18 19:31:32 +00:00
})
2016-12-21 19:51:43 +00:00
2018-03-18 19:31:32 +00:00
test('/users/2', async () => {
const html = await rp(url('/users/2'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>User: 2</h1>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 19:51:43 +00:00
2018-03-18 19:31:32 +00:00
test('/users/3 (payload given)', async () => {
const html = await rp(url('/users/3'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>User: 3000</h1>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 19:51:43 +00:00
2018-03-18 19:31:32 +00:00
test('/users/4 -> Not found', async () => {
await expect(rp(url('/users/4'))).rejects.toMatchObject({
statusCode: 404,
response: {
body: expect.stringContaining('Cannot GET /users/4')
}
})
})
2016-12-21 19:51:43 +00:00
2018-03-18 19:31:32 +00:00
test('/validate should not be server-rendered', async () => {
const html = await rp(url('/validate'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<div id="__nuxt"></div>')
expect(html).toContain('serverRendered:!1')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/validate -> should display a 404', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/validate'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('This page could not be found')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/validate?valid=true', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/validate?valid=true'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('I am valid</h1>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/redirect should not be server-rendered', async () => {
const html = await rp(url('/redirect'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<div id="__nuxt"></div>')
expect(html).toContain('serverRendered:!1')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/redirect -> check redirected source', async () => {
const window = await generator.nuxt.server.renderAndGetWindow(url('/redirect'))
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>Index page</h1>')
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:37 +00:00
2018-03-18 19:31:32 +00:00
test('/users/1 not found', async () => {
2018-03-19 04:21:04 +00:00
await remove(resolve(distDir, 'users'))
2018-03-18 19:31:32 +00:00
await expect(rp(url('/users/1'))).rejects.toMatchObject({
statusCode: 404,
response: {
body: expect.stringContaining('Cannot GET /users/1')
}
})
})
2018-03-18 19:31:32 +00:00
test('nuxt re-generating with no subfolders', async () => {
generator.nuxt.options.generate.subFolders = false
2018-04-18 15:56:03 +00:00
await expect(generator.generate({ build: false })).resolves.toBeTruthy()
2018-03-18 19:31:32 +00:00
})
2018-03-18 19:31:32 +00:00
test('/users/1.html', async () => {
const html = await rp(url('/users/1.html'))
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>User: 1</h1>')
2018-03-19 04:21:04 +00:00
expect(existsSync(resolve(distDir, 'users/1.html'))).toBe(true)
2018-03-18 19:31:32 +00:00
expect(
2018-03-19 04:21:04 +00:00
existsSync(resolve(distDir, 'users/1/index.html'))
2018-03-18 19:31:32 +00:00
).toBe(false)
})
2018-03-18 19:31:32 +00:00
test('/-ignored', async () => {
await expect(rp(url('/-ignored'))).rejects.toMatchObject({
statusCode: 404,
response: {
body: expect.stringContaining('Cannot GET /-ignored')
}
})
})
2018-03-18 19:31:32 +00:00
test('/ignored.test', async () => {
await expect(rp(url('/ignored.test'))).rejects.toMatchObject({
statusCode: 404,
response: {
body: expect.stringContaining('Cannot GET /ignored.test')
}
})
})
2018-01-15 09:50:42 +00:00
2018-03-18 19:31:32 +00:00
// Close server and ask nuxt to stop listening to file changes
2018-03-30 09:20:16 +00:00
afterAll(async () => {
2018-03-18 19:31:32 +00:00
await server.close()
})
2016-12-21 14:03:37 +00:00
})