Nuxt/test/basic.dev.test.js

76 lines
2.0 KiB
JavaScript
Raw Normal View History

2016-12-21 19:51:43 +00:00
import test from 'ava'
import { resolve } from 'path'
2017-12-13 05:38:46 +00:00
import { interceptLog, release } from './helpers/console'
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
test.before('Init Nuxt.js', async t => {
const options = {
2017-12-05 10:36:54 +00:00
rootDir,
dev: true,
2017-12-13 08:04:57 +00:00
build: {
profile: true
},
2017-12-05 10:36:54 +00:00
plugins: [
'~/plugins/watch.js'
]
2016-12-21 19:51:43 +00:00
}
nuxt = new Nuxt(options)
2017-06-18 17:33:23 +00:00
await new Builder(nuxt).build()
2017-06-20 11:44:47 +00:00
await nuxt.listen(port, 'localhost')
2016-12-21 19:51:43 +00:00
})
2017-12-05 10:36:54 +00:00
test('remove mixins in live reloading', async t => {
2017-12-13 05:38:46 +00:00
const logSpy = await interceptLog()
2017-12-05 10:36:54 +00:00
await nuxt.renderRoute(url('/'))
2017-12-13 05:38:46 +00:00
t.true(logSpy.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-13 05:38:46 +00:00
while (logSpy.neverCalledWithMatch(/Compiled successfully/)) {
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-13 05:38:46 +00:00
logSpy.reset()
2017-12-05 10:36:54 +00:00
await nuxt.renderRoute(url('/'))
2017-12-13 05:38:46 +00:00
t.true(logSpy.neverCalledWith('I am mixin'))
release()
2017-12-05 10:36:54 +00:00
})
2016-12-21 19:51:43 +00:00
test('/stateless', async t => {
const window = await nuxt.renderAndGetWindow(url('/stateless'))
const html = window.document.body.innerHTML
t.true(html.includes('<h1>My component!</h1>'))
})
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-06-18 17:33:23 +00:00
test.after('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
})