2018-03-18 19:31:32 +00:00
|
|
|
// import rp from 'request-promise-native'
|
2018-04-18 14:36:23 +00:00
|
|
|
import consola from 'consola'
|
2018-03-27 22:28:17 +00:00
|
|
|
import { loadFixture, getPort, Nuxt } from '../utils'
|
2017-06-14 18:51:14 +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
|
2016-12-20 18:25:51 +00:00
|
|
|
|
|
|
|
let nuxt = null
|
2018-03-18 19:31:32 +00:00
|
|
|
// let logSpy
|
2016-12-20 18:25:51 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
describe('error', () => {
|
|
|
|
beforeAll(async () => {
|
2018-03-18 23:41:14 +00:00
|
|
|
const config = loadFixture('error')
|
2018-01-27 15:29:42 +00:00
|
|
|
nuxt = new Nuxt(config)
|
2018-03-18 23:41:14 +00:00
|
|
|
port = await getPort()
|
2017-12-17 19:30:26 +00:00
|
|
|
await nuxt.listen(port, 'localhost')
|
2018-03-18 23:41:14 +00:00
|
|
|
})
|
2017-12-17 19:30:26 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
test('/ should display an error', async () => {
|
|
|
|
await expect(nuxt.renderRoute('/')).rejects.toMatchObject({
|
|
|
|
message: expect.stringContaining('not_defined is not defined')
|
|
|
|
})
|
|
|
|
})
|
2016-12-20 18:25:51 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
test('/404 should display an error too', async () => {
|
|
|
|
let { error } = await nuxt.renderRoute('/404')
|
|
|
|
expect(error.message.includes('This page could not be found')).toBe(true)
|
|
|
|
})
|
2016-12-20 18:25:51 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
test('/ with renderAndGetWindow()', async () => {
|
|
|
|
await expect(nuxt.renderAndGetWindow(url('/'))).rejects.toMatchObject({
|
|
|
|
statusCode: 500
|
|
|
|
})
|
2018-03-19 02:14:26 +00:00
|
|
|
})
|
2016-12-20 18:25:51 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
test('Error: resolvePath()', async () => {
|
2018-03-27 22:28:17 +00:00
|
|
|
expect(() => nuxt.resolvePath()).toThrowError()
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(() => nuxt.resolvePath('@/pages/about.vue')).toThrowError('Cannot resolve "@/pages/about.vue"')
|
|
|
|
})
|
2018-01-29 03:41:56 +00:00
|
|
|
|
2018-04-18 14:36:23 +00:00
|
|
|
test('Error: callHook()', async () => {
|
|
|
|
const errorHook = jest.fn()
|
|
|
|
const error = new Error('test hook error')
|
|
|
|
jest.spyOn(consola, 'error')
|
|
|
|
|
|
|
|
nuxt.hook('error', errorHook)
|
|
|
|
nuxt.hook('test:error', () => { throw error })
|
|
|
|
await nuxt.callHook('test:error')
|
|
|
|
|
|
|
|
expect(errorHook).toHaveBeenCalledTimes(1)
|
|
|
|
expect(errorHook).toHaveBeenCalledWith(error)
|
|
|
|
expect(consola.error).toHaveBeenCalledTimes(1)
|
|
|
|
expect(consola.error).toHaveBeenCalledWith(error)
|
|
|
|
|
|
|
|
consola.error.mockRestore()
|
|
|
|
})
|
|
|
|
|
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()
|
|
|
|
})
|
2016-12-20 18:25:51 +00:00
|
|
|
})
|