import test from 'ava' import { resolve } from 'path' import rp from 'request-promise-native' import { Nuxt, Builder } from '..' import styleLoader from '../lib/builder/webpack/style-loader' import { interceptLog, release } from './helpers/console' const port = 4007 const url = route => 'http://localhost:' + port + route let nuxt = null let builder = null // Init nuxt.js and create server listening on localhost:4000 test.before('Init Nuxt.js', async t => { const rootDir = resolve(__dirname, 'fixtures/with-config') let config = require(resolve(rootDir, 'nuxt.config.js')) config.rootDir = rootDir config.dev = false const logSpy = await interceptLog(async () => { nuxt = new Nuxt(config) builder = new Builder(nuxt) await builder.build() await nuxt.listen(port, 'localhost') }) t.true(logSpy.calledWithMatch('DONE')) t.true(logSpy.calledWithMatch('OPEN')) }) test.serial('/', async t => { const logSpy = await interceptLog() const { html } = await nuxt.renderRoute('/') t.true(html.includes('

I have custom configurations

')) release() t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') }) test('/ (global styles inlined)', async t => { const { html } = await nuxt.renderRoute('/') t.true(html.includes('.global-css-selector')) }) test('/ (preload fonts)', async t => { const { html } = await nuxt.renderRoute('/') t.true( html.includes( ' { const { html } = await nuxt.renderRoute('/') t.true(html.includes('

Made by Nuxt.js team

')) }) test('/ (custom build.publicPath)', async t => { const { html } = await nuxt.renderRoute('/') t.true(html.includes('src="/test/orion/vendor.')) }) test('/ (custom postcss.config.js)', async t => { const { html } = await nuxt.renderRoute('/') t.true(html.includes('::-webkit-input-placeholder')) }) test.serial('/test/ (router base)', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/')) const html = window.document.body.innerHTML t.is(window.__NUXT__.layout, 'default') t.true(html.includes('

Default layout

')) t.true(html.includes('

I have custom configurations

')) release() t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') }) test.serial('/test/about (custom layout)', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/about')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.is(window.__NUXT__.layout, 'custom') t.true(html.includes('

Custom layout

')) t.true(html.includes('

About page

')) }) test.serial('/test/desktop (custom layout in desktop folder)', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/desktop')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.is(window.__NUXT__.layout, 'desktop/default') t.true(html.includes('

Default desktop layout

')) t.true(html.includes('

Desktop page

')) }) test.serial('/test/mobile (custom layout in mobile folder)', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/mobile')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.is(window.__NUXT__.layout, 'mobile/default') t.true(html.includes('

Default mobile layout

')) t.true(html.includes('

Mobile page

')) }) test.serial('/test/env', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/env')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.true(html.includes('

Custom env layout

')) t.true(html.includes('"bool": true')) t.true(html.includes('"num": 23')) t.true(html.includes('"string": "Nuxt.js"')) t.true(html.includes('"bool": false')) t.true(html.includes('"string": "ok"')) t.true(html.includes('"num2": 8.23')) t.true(html.includes('"obj": {')) }) test.serial('/test/error', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/error')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.true(html.includes('Error page')) }) test.serial('/test/user-agent', async t => { const logSpy = await interceptLog() const window = await nuxt.renderAndGetWindow(url('/test/user-agent')) t.true(logSpy.calledOnce) t.is(logSpy.args[0][0], 'Test plugin!') release() const html = window.document.body.innerHTML t.true(html.includes('
Mozilla'))
})

test.serial('/test/about-bis (added with extendRoutes)', async t => {
  const logSpy = await interceptLog()
  const window = await nuxt.renderAndGetWindow(url('/test/about-bis'))
  t.true(logSpy.calledOnce)
  t.is(logSpy.args[0][0], 'Test plugin!')
  release()

  const html = window.document.body.innerHTML
  t.true(html.includes('

Custom layout

')) t.true(html.includes('

About page

')) }) test('Check stats.json generated by build.analyze', t => { const stats = require(resolve( __dirname, 'fixtures/with-config/.nuxt/dist/stats.json' )) t.is(stats.assets.length, 37) }) test('Check /test/test.txt with custom serve-static options', async t => { const { headers } = await rp(url('/test/test.txt'), { resolveWithFullResponse: true }) t.is(headers['cache-control'], 'public, max-age=31536000') }) test('Check /test.txt should return 404', async t => { const err = await t.throws(rp(url('/test.txt'))) t.is(err.response.statusCode, 404) }) test('Check build.styleResources for style-resources-loader', async t => { const loaders = styleLoader.call(builder, 'scss') const loader = loaders.find(l => l.loader === 'style-resources-loader') t.is(typeof loader, 'object') t.deepEqual(loader.options, { patterns: ['~/assets/pre-process.scss'] }) }) // Close server and ask nuxt to stop listening to file changes test.after.always('Closing server and nuxt.js', async t => { await nuxt.close() })