2016-12-21 19:51:43 +00:00
|
|
|
import test from 'ava'
|
|
|
|
import { resolve } from 'path'
|
2017-12-17 19:30:26 +00:00
|
|
|
import { intercept, release } from './helpers/console'
|
2017-12-12 09:42:29 +00:00
|
|
|
import { Nuxt, Builder, Utils } from '..'
|
2017-12-05 10:36:54 +00:00
|
|
|
import { truncateSync, readFileSync, writeFileSync } from 'fs'
|
2017-06-16 12:49:35 +00:00
|
|
|
|
2017-05-21 19:00:01 +00:00
|
|
|
const port = 4001
|
2016-12-21 19:51:43 +00:00
|
|
|
const url = (route) => 'http://localhost:' + port + route
|
2017-12-05 10:36:54 +00:00
|
|
|
const rootDir = resolve(__dirname, 'fixtures/basic')
|
|
|
|
const pluginPath = resolve(rootDir, 'plugins', 'watch.js')
|
|
|
|
const pluginContent = readFileSync(pluginPath)
|
2016-12-21 19:51:43 +00:00
|
|
|
|
|
|
|
let nuxt = null
|
|
|
|
|
|
|
|
// Init nuxt.js and create server listening on localhost:4000
|
2017-12-17 19:30:26 +00:00
|
|
|
test.serial('Init Nuxt.js', async t => {
|
2016-12-21 19:51:43 +00:00
|
|
|
const options = {
|
2017-12-05 10:36:54 +00:00
|
|
|
rootDir,
|
2017-12-17 19:30:26 +00:00
|
|
|
buildDir: '.nuxt-dev',
|
2017-12-05 10:36:54 +00:00
|
|
|
dev: true,
|
2017-12-13 08:04:57 +00:00
|
|
|
build: {
|
2017-12-17 19:30:26 +00:00
|
|
|
stats: false,
|
2017-12-13 08:04:57 +00:00
|
|
|
profile: true
|
|
|
|
},
|
2017-12-05 10:36:54 +00:00
|
|
|
plugins: [
|
|
|
|
'~/plugins/watch.js'
|
|
|
|
]
|
2016-12-21 19:51:43 +00:00
|
|
|
}
|
2017-06-20 11:44:47 +00:00
|
|
|
|
2017-12-17 19:30:26 +00:00
|
|
|
const spies = await intercept({ log: true, stderr: true }, async () => {
|
|
|
|
nuxt = new Nuxt(options)
|
|
|
|
await new Builder(nuxt).build()
|
|
|
|
await nuxt.listen(port, 'localhost')
|
|
|
|
})
|
|
|
|
|
|
|
|
t.true(spies.log.calledWithMatch('DONE'))
|
|
|
|
t.true(spies.log.calledWithMatch('OPEN'))
|
2016-12-21 19:51:43 +00:00
|
|
|
})
|
|
|
|
|
2017-12-17 19:30:26 +00:00
|
|
|
test.serial('remove mixins in live reloading', async t => {
|
|
|
|
const spies = await intercept()
|
2017-12-05 10:36:54 +00:00
|
|
|
await nuxt.renderRoute(url('/'))
|
2017-12-17 19:30:26 +00:00
|
|
|
t.true(spies.log.calledWith('I am mixin'))
|
2017-12-05 10:36:54 +00:00
|
|
|
|
|
|
|
truncateSync(pluginPath)
|
|
|
|
await new Promise(async (resolve, reject) => {
|
|
|
|
let waitTimes = 0
|
2017-12-17 19:30:26 +00:00
|
|
|
while (spies.log.neverCalledWithMatch(/Compiled successfully/)) {
|
2017-12-13 05:38:46 +00:00
|
|
|
if (waitTimes++ >= 20) {
|
|
|
|
t.fail('Dev server doesn\'t reload after 2000ms')
|
|
|
|
reject(Error())
|
2017-12-05 10:36:54 +00:00
|
|
|
}
|
2017-12-13 05:38:46 +00:00
|
|
|
await Utils.waitFor(100)
|
2017-12-05 10:36:54 +00:00
|
|
|
}
|
|
|
|
resolve()
|
|
|
|
})
|
2017-12-17 19:30:26 +00:00
|
|
|
spies.log.reset()
|
|
|
|
|
2017-12-05 10:36:54 +00:00
|
|
|
await nuxt.renderRoute(url('/'))
|
2017-12-17 19:30:26 +00:00
|
|
|
t.true(spies.log.neverCalledWith('I am mixin'))
|
|
|
|
t.is(spies.error.getCall(0).args[0].statusCode, 404)
|
2017-12-13 05:38:46 +00:00
|
|
|
release()
|
2017-12-05 10:36:54 +00:00
|
|
|
})
|
|
|
|
|
2017-12-17 19:30:26 +00:00
|
|
|
test.serial('/stateless', async t => {
|
|
|
|
const spies = await intercept()
|
2016-12-21 19:51:43 +00:00
|
|
|
const window = await nuxt.renderAndGetWindow(url('/stateless'))
|
|
|
|
const html = window.document.body.innerHTML
|
|
|
|
t.true(html.includes('<h1>My component!</h1>'))
|
2017-12-17 19:30:26 +00:00
|
|
|
t.true(spies.info.calledWithMatch('You are running Vue in development mode.'))
|
|
|
|
release()
|
2016-12-21 19:51:43 +00:00
|
|
|
})
|
|
|
|
|
2017-07-03 11:17:22 +00:00
|
|
|
// test('/_nuxt/test.hot-update.json should returns empty html', async t => {
|
|
|
|
// try {
|
|
|
|
// await rp(url('/_nuxt/test.hot-update.json'))
|
|
|
|
// } catch (err) {
|
|
|
|
// t.is(err.statusCode, 404)
|
|
|
|
// t.is(err.response.body, '')
|
|
|
|
// }
|
|
|
|
// })
|
2017-05-16 13:12:30 +00:00
|
|
|
|
2016-12-21 19:51:43 +00:00
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
2017-12-17 19:30:26 +00:00
|
|
|
test.after.always('Closing server and nuxt.js', async t => {
|
2017-12-05 10:36:54 +00:00
|
|
|
writeFileSync(pluginPath, pluginContent)
|
2017-06-20 12:55:52 +00:00
|
|
|
await nuxt.close()
|
2016-12-21 19:51:43 +00:00
|
|
|
})
|