mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-19 23:21:09 +00:00
Intercept console output in tests
This commit is contained in:
parent
ff96145dd3
commit
87bb0dea64
@ -156,6 +156,7 @@
|
|||||||
"rollup-plugin-node-resolve": "^3.0.0",
|
"rollup-plugin-node-resolve": "^3.0.0",
|
||||||
"rollup-plugin-replace": "^2.0.0",
|
"rollup-plugin-replace": "^2.0.0",
|
||||||
"rollup-watch": "^4.3.1",
|
"rollup-watch": "^4.3.1",
|
||||||
|
"sinon": "^4.1.2",
|
||||||
"std-mocks": "^1.0.1",
|
"std-mocks": "^1.0.1",
|
||||||
"uglify-js": "^3.1.7"
|
"uglify-js": "^3.1.7"
|
||||||
},
|
},
|
||||||
|
92
test/helpers/console.js
Normal file
92
test/helpers/console.js
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import sinon from 'sinon'
|
||||||
|
|
||||||
|
const getContext = t => { return t.context ? t.context : t }
|
||||||
|
|
||||||
|
export function release(t) {
|
||||||
|
const context = getContext(t)
|
||||||
|
|
||||||
|
if (context.log) {
|
||||||
|
console.log = context.log // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
if (context.info) {
|
||||||
|
console.info = context.info // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
if (context.warn) {
|
||||||
|
console.warn = context.warn // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
if (context.error) {
|
||||||
|
console.error = context.error // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function intercept(t, types, msg, cb) {
|
||||||
|
const context = getContext(t)
|
||||||
|
|
||||||
|
if (cb === undefined && typeof msg === 'function') {
|
||||||
|
cb = msg
|
||||||
|
msg = undefined
|
||||||
|
|
||||||
|
if (typeof types === 'string') {
|
||||||
|
msg = types
|
||||||
|
types = undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cb === undefined && msg === undefined && typeof types === 'function') {
|
||||||
|
cb = types
|
||||||
|
types = undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
const all = types === undefined || types === {}
|
||||||
|
const { log, info, warn, error } = types || {}
|
||||||
|
|
||||||
|
if (log || all) {
|
||||||
|
context.log = console.log // eslint-disable-line no-console
|
||||||
|
console.log = sinon.spy() // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info || all) {
|
||||||
|
context.info = console.info // eslint-disable-line no-console
|
||||||
|
console.info = sinon.spy() // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
|
||||||
|
if (warn || all) {
|
||||||
|
context.warn = console.warn // eslint-disable-line no-console
|
||||||
|
console.warn = sinon.spy() // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error || all) {
|
||||||
|
context.error = console.error // eslint-disable-line no-console
|
||||||
|
console.error = sinon.spy() // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cb) {
|
||||||
|
if (msg) {
|
||||||
|
process.stdout.write(` ${msg}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
await cb()
|
||||||
|
|
||||||
|
if (msg) {
|
||||||
|
process.stdout.write('\n')
|
||||||
|
}
|
||||||
|
|
||||||
|
release(context)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function interceptLog(t, msg, cb) {
|
||||||
|
await intercept(t, { log: true }, msg, cb)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function interceptInfo(t, msg, cb) {
|
||||||
|
await intercept(t, { info: true }, msg, cb)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function interceptWarn(t, msg, cb) {
|
||||||
|
await intercept(t, { warn: true }, msg, cb)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function interceptError(t, msg, cb) {
|
||||||
|
await intercept(t, { error: true }, msg, cb)
|
||||||
|
}
|
@ -2,6 +2,7 @@ import test from 'ava'
|
|||||||
import { resolve } from 'path'
|
import { resolve } from 'path'
|
||||||
import rp from 'request-promise-native'
|
import rp from 'request-promise-native'
|
||||||
import { Nuxt, Builder } from '../index.js'
|
import { Nuxt, Builder } from '../index.js'
|
||||||
|
import * as testconsole from './helpers/console'
|
||||||
|
|
||||||
const port = 4007
|
const port = 4007
|
||||||
const url = (route) => 'http://localhost:' + port + route
|
const url = (route) => 'http://localhost:' + port + route
|
||||||
@ -15,13 +16,18 @@ test.before('Init Nuxt.js', async t => {
|
|||||||
config.rootDir = rootDir
|
config.rootDir = rootDir
|
||||||
config.dev = false
|
config.dev = false
|
||||||
nuxt = new Nuxt(config)
|
nuxt = new Nuxt(config)
|
||||||
await new Builder(nuxt).build()
|
|
||||||
await nuxt.listen(port, 'localhost')
|
await testconsole.interceptLog(t, 'building nuxt', async () => {
|
||||||
|
await new Builder(nuxt).build()
|
||||||
|
await nuxt.listen(port, 'localhost')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
test('/', async t => {
|
test('/', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const { html } = await nuxt.renderRoute('/')
|
const { html } = await nuxt.renderRoute('/')
|
||||||
t.true(html.includes('<h1>I have custom configurations</h1>'))
|
t.true(html.includes('<h1>I have custom configurations</h1>'))
|
||||||
|
testconsole.release(t)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('/ (global styles inlined)', async t => {
|
test('/ (global styles inlined)', async t => {
|
||||||
@ -50,7 +56,11 @@ test('/ (custom postcss.config.js)', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/ (router base)', async t => {
|
test('/test/ (router base)', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/'))
|
const window = await nuxt.renderAndGetWindow(url('/test/'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.is(window.__NUXT__.layout, 'default')
|
t.is(window.__NUXT__.layout, 'default')
|
||||||
t.true(html.includes('<h1>Default layout</h1>'))
|
t.true(html.includes('<h1>Default layout</h1>'))
|
||||||
@ -58,7 +68,11 @@ test('/test/ (router base)', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/about (custom layout)', async t => {
|
test('/test/about (custom layout)', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/about'))
|
const window = await nuxt.renderAndGetWindow(url('/test/about'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.is(window.__NUXT__.layout, 'custom')
|
t.is(window.__NUXT__.layout, 'custom')
|
||||||
t.true(html.includes('<h1>Custom layout</h1>'))
|
t.true(html.includes('<h1>Custom layout</h1>'))
|
||||||
@ -66,7 +80,11 @@ test('/test/about (custom layout)', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/desktop (custom layout in desktop folder)', async t => {
|
test('/test/desktop (custom layout in desktop folder)', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/desktop'))
|
const window = await nuxt.renderAndGetWindow(url('/test/desktop'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.is(window.__NUXT__.layout, 'desktop/default')
|
t.is(window.__NUXT__.layout, 'desktop/default')
|
||||||
t.true(html.includes('<h1>Default desktop layout</h1>'))
|
t.true(html.includes('<h1>Default desktop layout</h1>'))
|
||||||
@ -74,7 +92,11 @@ test('/test/desktop (custom layout in desktop folder)', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/mobile (custom layout in mobile folder)', async t => {
|
test('/test/mobile (custom layout in mobile folder)', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/mobile'))
|
const window = await nuxt.renderAndGetWindow(url('/test/mobile'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.is(window.__NUXT__.layout, 'mobile/default')
|
t.is(window.__NUXT__.layout, 'mobile/default')
|
||||||
t.true(html.includes('<h1>Default mobile layout</h1>'))
|
t.true(html.includes('<h1>Default mobile layout</h1>'))
|
||||||
@ -82,7 +104,11 @@ test('/test/mobile (custom layout in mobile folder)', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/env', async t => {
|
test('/test/env', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/env'))
|
const window = await nuxt.renderAndGetWindow(url('/test/env'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.true(html.includes('<h1>Custom env layout</h1>'))
|
t.true(html.includes('<h1>Custom env layout</h1>'))
|
||||||
t.true(html.includes('"bool": true'))
|
t.true(html.includes('"bool": true'))
|
||||||
@ -95,19 +121,31 @@ test('/test/env', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
test('/test/error', async t => {
|
test('/test/error', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/error'))
|
const window = await nuxt.renderAndGetWindow(url('/test/error'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.true(html.includes('Error page'))
|
t.true(html.includes('Error page'))
|
||||||
})
|
})
|
||||||
|
|
||||||
test('/test/user-agent', async t => {
|
test('/test/user-agent', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/user-agent'))
|
const window = await nuxt.renderAndGetWindow(url('/test/user-agent'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.true(html.includes('<pre>Mozilla'))
|
t.true(html.includes('<pre>Mozilla'))
|
||||||
})
|
})
|
||||||
|
|
||||||
test('/test/about-bis (added with extendRoutes)', async t => {
|
test('/test/about-bis (added with extendRoutes)', async t => {
|
||||||
|
testconsole.interceptLog(t)
|
||||||
const window = await nuxt.renderAndGetWindow(url('/test/about-bis'))
|
const window = await nuxt.renderAndGetWindow(url('/test/about-bis'))
|
||||||
|
t.true(console.log.calledOnce) // eslint-disable-line no-console
|
||||||
|
testconsole.release(t)
|
||||||
|
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
t.true(html.includes('<h1>Custom layout</h1>'))
|
t.true(html.includes('<h1>Custom layout</h1>'))
|
||||||
t.true(html.includes('<h1>About page</h1>'))
|
t.true(html.includes('<h1>About page</h1>'))
|
||||||
@ -129,6 +167,6 @@ test('Check /test.txt should return 404', async t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// Close server and ask nuxt to stop listening to file changes
|
// Close server and ask nuxt to stop listening to file changes
|
||||||
test.after('Closing server and nuxt.js', t => {
|
test.after('Closing server and nuxt.js', async t => {
|
||||||
nuxt.close()
|
await nuxt.close()
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user