2016-12-20 17:05:39 +00:00
|
|
|
import test from 'ava'
|
|
|
|
import { resolve } from 'path'
|
2016-12-20 18:25:51 +00:00
|
|
|
const port = 4001
|
2016-12-20 17:05:39 +00:00
|
|
|
// const url = (route) => 'http://localhost:' + port + route
|
|
|
|
|
|
|
|
let nuxt = null
|
|
|
|
let server = null
|
|
|
|
|
|
|
|
// Init nuxt.js and create server listening on localhost:4000
|
2016-12-20 19:44:42 +00:00
|
|
|
test.before('Init Nuxt.js', async t => {
|
2016-12-20 17:05:39 +00:00
|
|
|
const Nuxt = require('../')
|
|
|
|
const options = {
|
2016-12-20 19:44:42 +00:00
|
|
|
rootDir: resolve(__dirname, 'fixtures/children'),
|
2016-12-20 17:05:39 +00:00
|
|
|
dev: false
|
|
|
|
}
|
|
|
|
nuxt = new Nuxt(options)
|
2016-12-20 19:44:42 +00:00
|
|
|
await nuxt.build()
|
|
|
|
server = new nuxt.Server(nuxt)
|
|
|
|
server.listen(port, 'localhost')
|
2016-12-20 17:05:39 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('/parent', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent')
|
|
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
|
|
})
|
|
|
|
|
|
|
|
test('/parent/child', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent/child')
|
|
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
|
|
t.true(html.includes('<h2>I am the child</h2>'))
|
|
|
|
})
|
|
|
|
|
2016-12-20 17:26:46 +00:00
|
|
|
test('/parent should call _id.vue', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent')
|
|
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
|
|
t.true(html.includes('<h2>Id=</h2>'))
|
|
|
|
})
|
|
|
|
|
|
|
|
test('/parent/1', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent/1')
|
|
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
|
|
t.true(html.includes('<h2>Id=1</h2>'))
|
|
|
|
})
|
|
|
|
|
|
|
|
test('/parent/validate-child should display 404', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent/validate-child')
|
|
|
|
t.true(html.includes('This page could not be found'))
|
|
|
|
})
|
|
|
|
|
|
|
|
test('/parent/validate-child?key=12345', async t => {
|
|
|
|
const { html } = await nuxt.renderRoute('/parent/validate-child?key=12345')
|
|
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
|
|
t.true(html.includes('<h2>Child valid</h2>'))
|
|
|
|
})
|
|
|
|
|
2016-12-20 17:05:39 +00:00
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
|
|
|
test.after('Closing server and nuxt.js', t => {
|
|
|
|
server.close()
|
|
|
|
nuxt.close()
|
|
|
|
})
|