Nuxt/test/unit/with-config.test.js

200 lines
7.1 KiB
JavaScript
Raw Normal View History

import jsdom from 'jsdom'
import { getPort, loadFixture, Nuxt, rp } 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
2016-12-21 14:03:23 +00:00
let nuxt = null
2018-03-18 19:31:32 +00:00
describe('with-config', () => {
beforeAll(async () => {
const config = await loadFixture('with-config')
nuxt = new Nuxt(config)
2018-03-18 23:41:14 +00:00
port = await getPort()
await nuxt.listen(port, 'localhost')
2018-03-18 23:41:14 +00:00
})
2018-03-18 19:31:32 +00:00
test('/', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<h1>I have custom configurations</h1>')).toBe(true)
2017-11-24 21:19:39 +00:00
})
test('/ (asset name for analyze mode)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html).toContain('<script src="/test/orion/app.js"')
})
test.skip('/ (global styles inlined)', async () => {
2018-03-18 19:31:32 +00:00
const { html } = await nuxt.renderRoute('/')
expect(html).toContain('.global-css-selector')
2018-03-18 19:31:32 +00:00
})
2017-08-30 14:18:37 +00:00
2018-03-18 19:31:32 +00:00
test.skip('/ (preload fonts)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes(
2018-01-13 05:22:11 +00:00
'<link rel="preload" href="/test/orion/fonts/roboto.7cf5d7c.woff2" as="font" type="font/woff2" crossorigin'
2018-03-18 19:31:32 +00:00
)).toBe(true)
})
test('/ (styleResources styles inlined)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html).toContain('.pre-process-selector')
})
2018-03-18 19:31:32 +00:00
test('/ (custom app.html)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<p>Made by Nuxt.js team</p>')).toBe(true)
})
2017-03-24 17:35:30 +00:00
2018-03-18 19:31:32 +00:00
test('/ (custom build.publicPath)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<script src="/test/orion/')).toBe(true)
})
2017-03-24 17:35:30 +00:00
2018-03-18 19:31:32 +00:00
test('/ (custom postcss.config.js)', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('::-webkit-input-placeholder')).toBe(true)
})
2017-11-21 01:54:02 +00:00
test('/test/ (custom globalName)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/'))
const html = window.document.body.innerHTML
expect(html.includes('id="custom-nuxt-id">')).toBe(true)
expect(html.includes('id="__nuxt">')).toBe(false)
expect(window.__NOXXT__).toBeDefined()
expect(window.__NUXT__).toBeUndefined()
expect(window.$noxxt).toBeDefined()
expect(window.$nuxt).toBeDefined() // for Vue Dev Tools detection
})
2018-03-18 19:31:32 +00:00
test('/test/ (router base)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/'))
const html = window.document.body.innerHTML
expect(window.__NOXXT__.layout).toBe('default')
2018-03-18 19:31:32 +00:00
expect(html.includes('<h1>Default layout</h1>')).toBe(true)
expect(html.includes('<h1>I have custom configurations</h1>')).toBe(true)
expect(window.__test_plugin).toBe(true)
2018-03-18 19:31:32 +00:00
})
2016-12-21 14:03:23 +00:00
2018-03-18 19:31:32 +00:00
test('/test/about (custom layout)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/about'))
const html = window.document.body.innerHTML
expect(window.__NOXXT__.layout).toBe('custom')
2018-03-18 19:31:32 +00:00
expect(html.includes('<h1>Custom layout</h1>')).toBe(true)
expect(html.includes('<h1>About page</h1>')).toBe(true)
})
2016-12-24 17:50:40 +00:00
2018-03-18 19:31:32 +00:00
test('/test/desktop (custom layout in desktop folder)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/desktop'))
const html = window.document.body.innerHTML
expect(window.__NOXXT__.layout).toBe('desktop/default')
2018-03-18 19:31:32 +00:00
expect(html.includes('<h1>Default desktop layout</h1>')).toBe(true)
expect(html.includes('<h1>Desktop page</h1>')).toBe(true)
})
2017-10-15 19:31:01 +00:00
2018-03-18 19:31:32 +00:00
test('/test/mobile (custom layout in mobile folder)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/mobile'))
const html = window.document.body.innerHTML
expect(window.__NOXXT__.layout).toBe('mobile/default')
2018-03-18 19:31:32 +00:00
expect(html.includes('<h1>Default mobile layout</h1>')).toBe(true)
expect(html.includes('<h1>Mobile page</h1>')).toBe(true)
})
2017-10-15 19:31:01 +00:00
2018-03-18 19:31:32 +00:00
test('/test/env', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/env'))
const html = window.document.body.innerHTML
expect(html.includes('<h1>Custom env layout</h1>')).toBe(true)
expect(html.includes('"bool": true')).toBe(true)
expect(html.includes('"num": 23')).toBe(true)
expect(html.includes('"string": "Nuxt.js"')).toBe(true)
expect(html.includes('"bool": false')).toBe(true)
expect(html.includes('"string": "ok"')).toBe(true)
expect(html.includes('"num2": 8.23')).toBe(true)
expect(html.includes('"obj": {')).toBe(true)
expect(html).toContain('"NUXT_ENV_FOO": "manniL"')
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('/test/error', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/error'))
const html = window.document.body.innerHTML
expect(html.includes('Error page')).toBe(true)
})
2017-03-25 17:59:46 +00:00
2018-03-18 19:31:32 +00:00
test('/test/user-agent', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/user-agent'))
const html = window.document.body.innerHTML
expect(html.includes('<pre>Mozilla')).toBe(true)
})
2017-02-09 23:45:49 +00:00
2018-03-18 19:31:32 +00:00
test('/test/about-bis (added with extendRoutes)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/about-bis'))
const html = window.document.body.innerHTML
expect(html.includes('<h1>Custom layout</h1>')).toBe(true)
expect(html.includes('<h1>About page</h1>')).toBe(true)
})
2017-01-19 15:26:30 +00:00
test('/test/not-existed should return 404', async () => {
await expect(rp(url('/test/not-existed')))
.rejects.toMatchObject({ statusCode: 404 })
})
2018-03-18 19:31:32 +00:00
test('/test/redirect/about-bis (redirect with extendRoutes)', async () => {
const window = await nuxt.renderAndGetWindow(url('/test/redirect/about-bis'))
const windowHref = window.location.href
expect(windowHref.includes('/test/about-bis')).toBe(true)
2018-03-15 11:57:00 +00:00
2018-03-18 19:31:32 +00:00
const html = window.document.body.innerHTML
expect(html.includes('<h1>Custom layout</h1>')).toBe(true)
expect(html.includes('<h1>About page</h1>')).toBe(true)
})
2018-03-15 11:57:00 +00:00
2018-03-18 19:31:32 +00:00
test('Check /test/test.txt with custom serve-static options', async () => {
const { headers } = await rp(url('/test/test.txt'), {
resolveWithFullResponse: true
})
expect(headers['cache-control']).toBe('public, max-age=31536000')
2018-01-13 05:22:11 +00:00
})
2018-03-18 19:31:32 +00:00
test('Check /test.txt should return 404', async () => {
await expect(rp(url('/test.txt')))
.rejects.toMatchObject({ statusCode: 404 })
})
2017-08-25 12:01:16 +00:00
test('renderAndGetWindow options', async () => {
const fakeErrorLog = jest.fn()
const mockOptions = {
beforeParse: jest.fn((window) => {
// Mock window.scrollTo
window.scrollTo = () => {}
window._virtualConsole.emit('jsdomError', new Error('test'))
}),
virtualConsole: new jsdom.VirtualConsole().sendTo({ error: fakeErrorLog })
}
try {
await nuxt.renderAndGetWindow(url('/test/error'), mockOptions)
} catch (e) {}
expect(mockOptions.beforeParse).toHaveBeenCalled()
expect(fakeErrorLog).toHaveBeenCalled()
})
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 nuxt.close()
})
2016-12-21 14:03:23 +00:00
})
describe('server config', () => {
test('opens on port defined in server.port', async () => {
const config = await loadFixture('with-config')
config.server.port = port = await getPort()
nuxt = new Nuxt(config)
await nuxt.listen()
await nuxt.renderAndGetWindow(url('/test/'))
})
afterAll(async () => {
await nuxt.close()
})
})