Nuxt/test/unit/module.test.js

76 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
import { normalize } from 'path'
import consola from 'consola'
import { loadFixture, getPort, Nuxt, rp } from '../utils'
2018-03-16 19:52:17 +00:00
2018-03-18 23:41:14 +00:00
let port
2018-01-13 05:22:11 +00:00
const url = route => 'http://localhost:' + port + route
2017-05-14 22:33:31 +00:00
let nuxt = null
2018-03-18 23:41:14 +00:00
// let buildSpies = null
2017-05-14 22:33:31 +00:00
2018-05-03 19:23:45 +00:00
describe('module', () => {
2018-03-30 08:38:22 +00:00
beforeAll(async () => {
const config = loadFixture('module')
nuxt = new Nuxt(config)
port = await getPort()
await nuxt.listen(port, 'localhost')
})
test('Plugin', async () => {
expect(normalize(nuxt.options.plugins[0].src).includes(
normalize('fixtures/module/.nuxt/basic.reverse.')
)).toBe(true)
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<h1>TXUN</h1>')).toBe(true)
})
test('Layout', async () => {
expect(nuxt.options.layouts.layout.includes('layout')).toBe(true)
const { html } = await nuxt.renderRoute('/layout')
expect(html.includes('<h1>Module Layouts</h1>')).toBe(true)
})
test('Hooks', async () => {
expect(nuxt.__module_hook).toBe(1)
expect(nuxt.__renderer_hook).toBe(2)
})
test('Hooks - Functional', async () => {
expect(nuxt.__ready_called__).toBe(true)
})
// test('Hooks - Error', async () => {
// expect(buildSpies.error.calledWithMatch(/build:extendRoutes/)).toBe(true)
// })
test('Middleware', async () => {
2018-08-08 10:54:05 +00:00
const response = await rp(url('/api'))
2018-03-30 08:38:22 +00:00
expect(response).toBe('It works!')
})
test('Hooks - Use external middleware before render', async () => {
2018-08-08 10:54:05 +00:00
const response = await rp(url('/use-middleware'))
2018-03-30 08:38:22 +00:00
expect(response).toBe('Use external middleware')
})
2018-05-03 19:49:37 +00:00
test('Hooks - render context', async () => {
await nuxt.renderRoute('/render-context')
expect(nuxt.__render_context).toBeTruthy()
})
test('AddVendor - deprecated', async () => {
jest.spyOn(consola, 'warn')
nuxt.moduleContainer.addVendor('nuxt-test')
expect(consola.warn).toHaveBeenCalledWith('addVendor has been deprecated due to webpack4 optimization')
consola.warn.mockRestore()
})
2018-03-30 08:38:22 +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-30 08:38:22 +00:00
await nuxt.close()
})
2017-05-14 22:33:31 +00:00
})