mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
164 lines
4.8 KiB
JavaScript
164 lines
4.8 KiB
JavaScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
import { mount, RouterLinkStub } from '@vue/test-utils'
|
|
import { vmTick, compileTemplate, importComponent } from './__utils__'
|
|
|
|
/* eslint-disable no-console */
|
|
describe('nuxt-link prefetch', () => {
|
|
beforeAll(() => {
|
|
jest.useFakeTimers()
|
|
|
|
jest.spyOn(console, 'warn')
|
|
jest.spyOn(console, 'error')
|
|
})
|
|
|
|
afterAll(() => jest.restoreAllMocks())
|
|
|
|
test('when router.prefetchLinks is set to false, link with no prop should not be prefetched',
|
|
async () => {
|
|
const compiledTemplatePath = await compileTemplate(
|
|
'components/nuxt-link.client.js',
|
|
'nuxt-link.client.prefetch.0.js',
|
|
{ router: { prefetchLinks: false } }
|
|
)
|
|
|
|
const Component = await importComponent(compiledTemplatePath)
|
|
Component.extends = RouterLinkStub
|
|
|
|
const methods = { observe: jest.fn() }
|
|
|
|
const wrapper = mount(Component, {
|
|
propsData: { to: '/link' },
|
|
methods
|
|
})
|
|
|
|
jest.runAllTimers()
|
|
await vmTick(wrapper.vm)
|
|
|
|
expect(console.warn).not.toHaveBeenCalled()
|
|
expect(console.error).not.toHaveBeenCalled()
|
|
|
|
expect(wrapper.props('prefetch')).toBe(false)
|
|
expect(wrapper.props('noPrefetch')).toBe(false)
|
|
expect(methods.observe).not.toHaveBeenCalled()
|
|
})
|
|
|
|
test('when router.prefetchLinks is set to false, link with prefetch prop set to true should be prefetched',
|
|
async () => {
|
|
const compiledTemplatePath = await compileTemplate(
|
|
'components/nuxt-link.client.js',
|
|
'nuxt-link.client.prefetch.1.js',
|
|
{ router: { prefetchLinks: false } }
|
|
)
|
|
|
|
const Component = await importComponent(compiledTemplatePath)
|
|
Component.extends = RouterLinkStub
|
|
|
|
const methods = { observe: jest.fn() }
|
|
|
|
const wrapper = mount(Component, {
|
|
propsData: { to: '/link', prefetch: true },
|
|
methods
|
|
})
|
|
|
|
jest.runAllTimers()
|
|
await vmTick(wrapper.vm)
|
|
|
|
expect(console.warn).not.toHaveBeenCalled()
|
|
expect(console.error).not.toHaveBeenCalled()
|
|
|
|
expect(wrapper.props('prefetch')).toBe(true)
|
|
expect(wrapper.props('noPrefetch')).toBe(false)
|
|
expect(methods.observe).toHaveBeenCalled()
|
|
})
|
|
|
|
test('when router.prefetchLinks is set to true (default), link with no prop should be prefetched',
|
|
async () => {
|
|
const compiledTemplatePath = await compileTemplate(
|
|
'components/nuxt-link.client.js',
|
|
'nuxt-link.client.prefetch.2.js',
|
|
{}
|
|
)
|
|
|
|
const Component = await importComponent(compiledTemplatePath)
|
|
Component.extends = RouterLinkStub
|
|
|
|
const methods = { observe: jest.fn() }
|
|
|
|
const wrapper = mount(Component, {
|
|
propsData: { to: '/link' },
|
|
methods
|
|
})
|
|
|
|
jest.runAllTimers()
|
|
await vmTick(wrapper.vm)
|
|
|
|
expect(console.warn).not.toHaveBeenCalled()
|
|
expect(console.error).not.toHaveBeenCalled()
|
|
|
|
expect(wrapper.props('prefetch')).toBe(true)
|
|
expect(wrapper.props('noPrefetch')).toBe(false)
|
|
expect(methods.observe).toHaveBeenCalled()
|
|
})
|
|
|
|
test('when router.prefetchLinks is set to true (default), link with prefetch prop set to false should not be prefetched',
|
|
async () => {
|
|
const compiledTemplatePath = await compileTemplate(
|
|
'components/nuxt-link.client.js',
|
|
'nuxt-link.client.prefetch.3.js',
|
|
{}
|
|
)
|
|
|
|
const Component = await importComponent(compiledTemplatePath)
|
|
Component.extends = RouterLinkStub
|
|
|
|
const methods = { observe: jest.fn() }
|
|
|
|
const wrapper = mount(Component, {
|
|
propsData: { to: '/link', prefetch: false },
|
|
methods
|
|
})
|
|
|
|
jest.runAllTimers()
|
|
await vmTick(wrapper.vm)
|
|
|
|
expect(console.warn).not.toHaveBeenCalled()
|
|
expect(console.error).not.toHaveBeenCalled()
|
|
|
|
expect(wrapper.props('prefetch')).toBe(false)
|
|
expect(wrapper.props('noPrefetch')).toBe(false)
|
|
expect(methods.observe).not.toHaveBeenCalled()
|
|
})
|
|
|
|
test('when router.prefetchLinks is set to true (default), link with noPrefetch prop should not be prefetched',
|
|
async () => {
|
|
const compiledTemplatePath = await compileTemplate(
|
|
'components/nuxt-link.client.js',
|
|
'nuxt-link.client.prefetch.4.js',
|
|
{}
|
|
)
|
|
|
|
const Component = await importComponent(compiledTemplatePath)
|
|
Component.extends = RouterLinkStub
|
|
|
|
const methods = { observe: jest.fn() }
|
|
|
|
const wrapper = mount(Component, {
|
|
propsData: { to: '/link', noPrefetch: true },
|
|
methods
|
|
})
|
|
|
|
jest.runAllTimers()
|
|
await vmTick(wrapper.vm)
|
|
|
|
expect(console.warn).not.toHaveBeenCalled()
|
|
expect(console.error).not.toHaveBeenCalled()
|
|
|
|
expect(wrapper.props('prefetch')).toBe(true)
|
|
expect(wrapper.props('noPrefetch')).toBe(true)
|
|
expect(methods.observe).not.toHaveBeenCalled()
|
|
})
|
|
})
|
|
/* eslint-enable no-console */
|