Nuxt/test/unit/spa.test.js

146 lines
5.5 KiB
JavaScript
Raw Normal View History

2018-04-18 15:12:27 +00:00
import consola from 'consola'
2018-11-21 13:08:03 +00:00
import { loadFixture, getPort, Nuxt, wChunk } from '../utils'
2017-10-07 09:07:52 +00:00
2018-08-16 15:46:42 +00:00
let nuxt, port
2018-01-13 05:22:11 +00:00
const url = route => 'http://localhost:' + port + route
2017-10-07 09:07:52 +00:00
const renderRoute = async (_url) => {
const window = await nuxt.server.renderAndGetWindow(url(_url))
2018-03-18 23:41:14 +00:00
const head = window.document.head.innerHTML
const html = window.document.body.innerHTML
return { window, head, html }
}
2017-10-07 09:07:52 +00:00
2018-04-18 15:12:27 +00:00
describe('spa', () => {
2018-03-18 19:31:32 +00:00
beforeAll(async () => {
const config = await loadFixture('spa')
nuxt = new Nuxt(config)
await nuxt.ready()
2018-03-18 23:41:14 +00:00
port = await getPort()
await nuxt.server.listen(port, 'localhost')
2018-03-18 23:41:14 +00:00
})
2017-10-07 09:07:52 +00:00
2018-03-18 19:31:32 +00:00
test('/ (basic spa)', async () => {
const { html } = await renderRoute('/')
2018-04-18 15:12:27 +00:00
expect(html).toMatch('Hello SPA!')
expect(consola.log).not.toHaveBeenCalledWith('created')
expect(consola.log).toHaveBeenCalledWith('mounted')
2018-08-16 15:46:42 +00:00
consola.log.mockClear()
2018-03-18 19:31:32 +00:00
})
2017-10-07 09:07:52 +00:00
2018-11-21 13:08:03 +00:00
test('/ (include preload and prefetch resources)', async () => {
const { head } = await renderRoute('/')
expect(head).toMatch(`<link rel="preload" href="/_nuxt/runtime.js" as="script">`)
expect(head).toMatch(`<link rel="preload" href="/_nuxt/commons.app.js" as="script">`)
expect(head).toMatch(`<link rel="preload" href="/_nuxt/app.js" as="script">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/custom.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/error-handler-async.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/error-handler-object.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/error-handler-string.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/error-handler.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/index.js')}">`)
expect(head).toMatch(`<link rel="prefetch" href="/_nuxt/${wChunk('pages/mounted.js')}">`)
consola.log.mockClear()
})
2018-03-18 19:31:32 +00:00
test('/custom (custom layout)', async () => {
const { html } = await renderRoute('/custom')
2018-04-18 15:12:27 +00:00
expect(html).toMatch('Custom layout')
expect(consola.log).toHaveBeenCalledWith('created')
expect(consola.log).toHaveBeenCalledWith('mounted')
2018-08-16 15:46:42 +00:00
consola.log.mockClear()
2018-03-18 19:31:32 +00:00
})
2018-03-18 19:31:32 +00:00
test('/mounted', async () => {
const { html } = await renderRoute('/mounted')
2018-04-18 15:12:27 +00:00
expect(html).toMatch('<h1>Test: updated</h1>')
2018-03-18 19:31:32 +00:00
})
test('/error-handler', async () => {
const { html } = await renderRoute('/error-handler')
expect(html).toMatch('error handler triggered: fetch error!')
})
test('/error-handler-object', async () => {
const { html } = await renderRoute('/error-handler-object')
expect(html).toMatch('error handler triggered: fetch error!')
})
test('/error-handler-string', async () => {
const { html } = await renderRoute('/error-handler-string')
expect(html).toMatch('error handler triggered: fetch error!')
})
test('/error-handler-async', async () => {
const { html } = await renderRoute('/error-handler-async')
expect(html).toMatch('error handler triggered: asyncData error!')
})
test('/тест雨 (test non ascii route)', async () => {
const { html } = await renderRoute('/тест雨')
expect(html).toMatch('Hello unicode SPA!')
expect(consola.log).not.toHaveBeenCalledWith('created')
expect(consola.log).toHaveBeenCalledWith('mounted')
consola.log.mockClear()
})
test('/async no asyncData leak', async () => {
const window = await nuxt.server.renderAndGetWindow(url('/async'))
const navigate = url => new Promise((resolve, reject) => {
window.$nuxt.$router.push(url, resolve, reject)
})
for (let i = 0; i < 3; i++) {
await navigate('/')
await navigate('/async')
}
const { $data } = window.$nuxt.$route.matched[0].instances.default
expect(Object.keys($data).length).toBe(1)
consola.log.mockClear()
})
test('/redirect-done (no redirect)', async () => {
const { html } = await renderRoute('/redirect-done')
expect(html).toContain('<div>Redirect Done Page</div>')
expect(consola.log).toHaveBeenCalledWith('redirect-done created')
expect(consola.log).toHaveBeenCalledWith('redirect-done mounted')
expect(consola.log).toHaveBeenCalledTimes(2)
consola.log.mockClear()
})
test('/redirect1 (redirect 1 time)', async () => {
const { html } = await renderRoute('/redirect1')
expect(html).toContain('<div>Redirect Done Page</div>')
expect(consola.log).toHaveBeenCalledWith('redirect-done created')
expect(consola.log).toHaveBeenCalledWith('redirect-done mounted')
expect(consola.log).toHaveBeenCalledTimes(2)
consola.log.mockClear()
})
test('/redirect2 (redirect 2 times)', async () => {
const { html } = await renderRoute('/redirect2')
expect(html).toContain('<div>Redirect Done Page</div>')
expect(consola.log).toHaveBeenCalledWith('redirect-done created')
expect(consola.log).toHaveBeenCalledWith('redirect-done mounted')
expect(consola.log).toHaveBeenCalledTimes(2)
consola.log.mockClear()
})
test('/redirect10 (redirect 10 times)', async () => {
const { html } = await renderRoute('/redirect10')
expect(html).toContain('<div>Redirect Done Page</div>')
expect(consola.log).toHaveBeenCalledWith('redirect-done created')
expect(consola.log).toHaveBeenCalledWith('redirect-done mounted')
expect(consola.log).toHaveBeenCalledTimes(2)
consola.log.mockClear()
})
2018-03-18 19:31:32 +00:00
// Close server and ask nuxt to stop listening to file changes
2018-03-30 09:20:16 +00:00
afterAll(async () => {
2018-03-18 19:31:32 +00:00
await nuxt.close()
})
2017-10-07 09:07:52 +00:00
})