2023-07-02 08:59:16 +00:00
/// <reference path="../fixtures/basic/.nuxt/nuxt.d.ts" />
import { describe , expect , it , vi } from 'vitest'
2023-09-19 21:31:18 +00:00
import { defineEventHandler } from 'h3'
2023-12-11 18:20:11 +00:00
import { mountSuspended , registerEndpoint } from '@nuxt/test-utils/runtime'
2023-07-02 08:59:16 +00:00
import * as composables from '#app/composables'
import { clearNuxtData , refreshNuxtData , useAsyncData , useNuxtData } from '#app/composables/asyncData'
import { clearError , createError , isNuxtError , showError , useError } from '#app/composables/error'
import { onNuxtReady } from '#app/composables/ready'
import { setResponseStatus , useRequestEvent , useRequestFetch , useRequestHeaders } from '#app/composables/ssr'
import { clearNuxtState , useState } from '#app/composables/state'
import { useRequestURL } from '#app/composables/url'
2023-09-19 21:31:18 +00:00
import { getAppManifest , getRouteRules } from '#app/composables/manifest'
2023-12-19 11:00:11 +00:00
import { callOnce } from '#app/composables/once'
2023-12-19 10:18:10 +00:00
import { useLoadingIndicator } from '#app/composables/loading-indicator'
2023-07-02 08:59:16 +00:00
vi . mock ( '#app/compat/idle-callback' , ( ) = > ( {
requestIdleCallback : ( cb : Function ) = > cb ( )
} ) )
2023-09-19 21:31:18 +00:00
const timestamp = Date . now ( )
registerEndpoint ( '/_nuxt/builds/latest.json' , defineEventHandler ( ( ) = > ( {
2023-10-07 06:30:10 +00:00
id : 'override' ,
2023-09-19 21:31:18 +00:00
timestamp
} ) ) )
2023-10-07 06:30:10 +00:00
registerEndpoint ( '/_nuxt/builds/meta/override.json' , defineEventHandler ( ( ) = > ( {
id : 'override' ,
2023-09-19 21:31:18 +00:00
timestamp ,
2023-10-16 22:28:42 +00:00
matcher : {
static : {
'/' : null ,
'/pre' : null ,
'/pre/test' : { redirect : true }
} ,
wildcard : { '/pre' : { prerender : true } } ,
dynamic : { }
} ,
2023-09-19 21:31:18 +00:00
prerendered : [ '/specific-prerendered' ]
} ) ) )
2023-11-15 19:40:55 +00:00
registerEndpoint ( '/api/test' , defineEventHandler ( ( event ) = > ( {
method : event.method ,
headers : Object.fromEntries ( event . headers . entries ( ) )
} ) ) )
2023-09-19 21:31:18 +00:00
2023-11-14 12:44:39 +00:00
describe ( 'app config' , ( ) = > {
it ( 'can be updated' , ( ) = > {
const appConfig = useAppConfig ( )
expect ( appConfig ) . toMatchInlineSnapshot ( `
{
"nuxt" : {
"buildId" : "override" ,
} ,
}
` )
updateAppConfig ( {
new : 'value' ,
// @ts-expect-error property does not exist
nuxt : { nested : 42 }
} )
expect ( appConfig ) . toMatchInlineSnapshot ( `
{
"new" : "value" ,
"nuxt" : {
"buildId" : "override" ,
"nested" : 42 ,
} ,
}
` )
} )
} )
2023-07-02 08:59:16 +00:00
describe ( 'composables' , ( ) = > {
it ( 'are all tested' , ( ) = > {
const testedComposables : string [ ] = [
'clearNuxtData' ,
'refreshNuxtData' ,
'useAsyncData' ,
'useNuxtData' ,
'createError' ,
'isNuxtError' ,
'clearError' ,
'showError' ,
'useError' ,
2023-09-19 21:31:18 +00:00
'getAppManifest' ,
2023-11-14 12:44:39 +00:00
'useHydration' ,
2023-09-19 21:31:18 +00:00
'getRouteRules' ,
2023-07-02 08:59:16 +00:00
'onNuxtReady' ,
2023-12-19 11:00:11 +00:00
'callOnce' ,
2023-07-02 08:59:16 +00:00
'setResponseStatus' ,
2023-09-28 10:54:22 +00:00
'prerenderRoutes' ,
2023-07-02 08:59:16 +00:00
'useRequestEvent' ,
'useRequestFetch' ,
2023-09-19 21:31:18 +00:00
'isPrerendered' ,
2023-07-02 08:59:16 +00:00
'useRequestHeaders' ,
'clearNuxtState' ,
'useState' ,
2023-11-14 12:44:39 +00:00
'useRequestURL' ,
'useRoute' ,
'navigateTo' ,
'abortNavigation' ,
'setPageLayout' ,
'defineNuxtComponent' ,
2023-07-02 08:59:16 +00:00
]
const skippedComposables : string [ ] = [
'addRouteMiddleware' ,
'defineNuxtRouteMiddleware' ,
'definePayloadReducer' ,
'definePayloadReviver' ,
'loadPayload' ,
'onBeforeRouteLeave' ,
'onBeforeRouteUpdate' ,
'prefetchComponents' ,
'preloadComponents' ,
'preloadPayload' ,
'preloadRouteComponents' ,
'reloadNuxtApp' ,
'useCookie' ,
'useFetch' ,
'useHead' ,
'useLazyFetch' ,
'useLazyAsyncData' ,
'useRouter' ,
'useSeoMeta' ,
'useServerSeoMeta'
]
expect ( Object . keys ( composables ) . sort ( ) ) . toEqual ( [ . . . new Set ( [ . . . testedComposables , . . . skippedComposables ] ) ] . sort ( ) )
} )
} )
describe ( 'useAsyncData' , ( ) = > {
it ( 'should work at basic level' , async ( ) = > {
const res = useAsyncData ( ( ) = > Promise . resolve ( 'test' ) )
expect ( Object . keys ( res ) ) . toMatchInlineSnapshot ( `
[
"data" ,
"pending" ,
"error" ,
"status" ,
"execute" ,
"refresh" ,
]
` )
expect ( res instanceof Promise ) . toBeTruthy ( )
expect ( res . data . value ) . toBe ( null )
await res
expect ( res . data . value ) . toBe ( 'test' )
} )
it ( 'should not execute with immediate: false' , async ( ) = > {
const immediate = await useAsyncData ( ( ) = > Promise . resolve ( 'test' ) )
expect ( immediate . data . value ) . toBe ( 'test' )
expect ( immediate . status . value ) . toBe ( 'success' )
expect ( immediate . pending . value ) . toBe ( false )
const nonimmediate = await useAsyncData ( ( ) = > Promise . resolve ( 'test' ) , { immediate : false } )
expect ( nonimmediate . data . value ) . toBe ( null )
expect ( nonimmediate . status . value ) . toBe ( 'idle' )
expect ( nonimmediate . pending . value ) . toBe ( true )
} )
it ( 'should capture errors' , async ( ) = > {
2023-11-08 13:28:52 +00:00
const { data , error , status , pending } = await useAsyncData ( 'error-test' , ( ) = > Promise . reject ( new Error ( 'test' ) ) , { default : ( ) = > 'default' } )
expect ( data . value ) . toMatchInlineSnapshot ( '"default"' )
2023-07-02 08:59:16 +00:00
expect ( error . value ) . toMatchInlineSnapshot ( '[Error: test]' )
expect ( status . value ) . toBe ( 'error' )
expect ( pending . value ) . toBe ( false )
2023-11-08 13:28:52 +00:00
expect ( useNuxtApp ( ) . payload . _errors [ 'error-test' ] ) . toMatchInlineSnapshot ( '[Error: test]' )
// TODO: fix the below
// const { data: syncedData, error: syncedError, status: syncedStatus, pending: syncedPending } = await useAsyncData('error-test', () => ({}), { immediate: false })
// expect(syncedData.value).toEqual(null)
// expect(syncedError.value).toEqual(error.value)
// expect(syncedStatus.value).toEqual('idle')
// expect(syncedPending.value).toEqual(true)
2023-07-02 08:59:16 +00:00
} )
2023-09-27 13:43:53 +00:00
// https://github.com/nuxt/nuxt/issues/23411
it ( 'should initialize with error set to null when immediate: false' , async ( ) = > {
const { error , execute } = useAsyncData ( ( ) = > ( { } ) , { immediate : false } )
expect ( error . value ) . toBe ( null )
await execute ( )
expect ( error . value ) . toBe ( null )
} )
2023-07-02 08:59:16 +00:00
it ( 'should be accessible with useNuxtData' , async ( ) = > {
await useAsyncData ( 'key' , ( ) = > Promise . resolve ( 'test' ) )
const data = useNuxtData ( 'key' )
expect ( data . data . value ) . toMatchInlineSnapshot ( '"test"' )
clearNuxtData ( 'key' )
expect ( data . data . value ) . toBeUndefined ( )
expect ( useNuxtData ( 'key' ) . data . value ) . toBeUndefined ( )
} )
2023-10-16 19:20:02 +00:00
it ( 'should be usable _after_ a useNuxtData call' , async ( ) = > {
useNuxtApp ( ) . payload . data . call = null
const { data : cachedData } = useNuxtData ( 'call' )
expect ( cachedData . value ) . toMatchInlineSnapshot ( 'null' )
const { data } = await useAsyncData ( 'call' , ( ) = > Promise . resolve ( { resolved : true } ) , { server : false } )
expect ( cachedData . value ) . toMatchInlineSnapshot ( `
{
"resolved" : true ,
}
` )
expect ( data . value ) . toEqual ( cachedData . value )
clearNuxtData ( 'call' )
} )
2023-07-02 08:59:16 +00:00
it ( 'should be refreshable' , async ( ) = > {
await useAsyncData ( 'key' , ( ) = > Promise . resolve ( 'test' ) )
clearNuxtData ( 'key' )
const data = useNuxtData ( 'key' )
expect ( data . data . value ) . toBeUndefined ( )
await refreshNuxtData ( 'key' )
expect ( data . data . value ) . toMatchInlineSnapshot ( '"test"' )
} )
2023-10-16 19:54:39 +00:00
it ( 'allows custom access to a cache' , async ( ) = > {
const { data } = await useAsyncData ( ( ) = > ( { val : true } ) , { getCachedData : ( ) = > ( { val : false } ) } )
expect ( data . value ) . toMatchInlineSnapshot ( `
{
"val" : false ,
}
` )
} )
2023-11-08 13:28:52 +00:00
it ( 'should use default while pending' , async ( ) = > {
const promise = useAsyncData ( ( ) = > Promise . resolve ( 'test' ) , { default : ( ) = > 'default' } )
const { data , pending } = promise
expect ( pending . value ) . toBe ( true )
expect ( data . value ) . toMatchInlineSnapshot ( '"default"' )
await promise
expect ( data . value ) . toMatchInlineSnapshot ( '"test"' )
} )
it ( 'should use default after reject' , async ( ) = > {
const { data } = await useAsyncData ( ( ) = > Promise . reject ( new Error ( 'test' ) ) , { default : ( ) = > 'default' } )
expect ( data . value ) . toMatchInlineSnapshot ( '"default"' )
} )
2023-12-14 11:08:43 +00:00
it ( 'should execute the promise function once when dedupe option is "defer" for multiple calls' , async ( ) = > {
const promiseFn = vi . fn ( ( ) = > Promise . resolve ( 'test' ) )
useAsyncData ( 'dedupedKey' , promiseFn , { dedupe : 'defer' } )
useAsyncData ( 'dedupedKey' , promiseFn , { dedupe : 'defer' } )
useAsyncData ( 'dedupedKey' , promiseFn , { dedupe : 'defer' } )
expect ( promiseFn ) . toHaveBeenCalledTimes ( 1 )
} )
it ( 'should execute the promise function multiple times when dedupe option is not specified for multiple calls' , async ( ) = > {
const promiseFn = vi . fn ( ( ) = > Promise . resolve ( 'test' ) )
useAsyncData ( 'dedupedKey' , promiseFn )
useAsyncData ( 'dedupedKey' , promiseFn )
useAsyncData ( 'dedupedKey' , promiseFn )
expect ( promiseFn ) . toHaveBeenCalledTimes ( 3 )
} )
it ( 'should execute the promise function as per dedupe option when different dedupe options are used for multiple calls' , async ( ) = > {
const promiseFn = vi . fn ( ( ) = > Promise . resolve ( 'test' ) )
useAsyncData ( 'dedupedKey' , promiseFn , { dedupe : 'defer' } )
useAsyncData ( 'dedupedKey' , promiseFn )
useAsyncData ( 'dedupedKey' , promiseFn , { dedupe : 'defer' } )
expect ( promiseFn ) . toHaveBeenCalledTimes ( 2 )
} )
2023-07-02 08:59:16 +00:00
} )
2023-11-15 19:40:55 +00:00
describe ( 'useFetch' , ( ) = > {
it ( 'should match with/without computed values' , async ( ) = > {
const nuxtApp = useNuxtApp ( )
const getPayloadEntries = ( ) = > Object . keys ( nuxtApp . payload . data ) . length
const baseCount = getPayloadEntries ( )
await useFetch ( '/api/test' )
expect ( getPayloadEntries ( ) ) . toBe ( baseCount + 1 )
/* @ts-expect-error Overriding auto-key */
await useFetch ( '/api/test' , { method : 'POST' } , '' )
/* @ts-expect-error Overriding auto-key */
await useFetch ( '/api/test' , { method : ref ( 'POST' ) } , '' )
expect . soft ( getPayloadEntries ( ) ) . toBe ( baseCount + 2 )
/* @ts-expect-error Overriding auto-key */
2023-11-16 14:04:48 +00:00
await useFetch ( '/api/test' , { query : { id : '3' } } , '' )
2023-11-15 19:40:55 +00:00
/* @ts-expect-error Overriding auto-key */
2023-11-16 14:04:48 +00:00
await useFetch ( '/api/test' , { query : { id : ref ( '3' ) } } , '' )
2023-11-15 19:40:55 +00:00
/* @ts-expect-error Overriding auto-key */
2023-11-16 14:04:48 +00:00
await useFetch ( '/api/test' , { params : { id : '3' } } , '' )
2023-11-15 19:40:55 +00:00
/* @ts-expect-error Overriding auto-key */
2023-11-16 14:04:48 +00:00
await useFetch ( '/api/test' , { params : { id : ref ( '3' ) } } , '' )
2023-11-15 19:40:55 +00:00
expect . soft ( getPayloadEntries ( ) ) . toBe ( baseCount + 3 )
} )
2023-11-20 13:59:41 +00:00
it ( 'should timeout' , async ( ) = > {
const { status , error } = await useFetch (
( ) = > new Promise ( resolve = > setTimeout ( resolve , 5000 ) ) ,
{ timeout : 1 }
)
await new Promise ( resolve = > setTimeout ( resolve , 2 ) )
expect ( status . value ) . toBe ( 'error' )
expect ( error . value ) . toMatchInlineSnapshot ( '[Error: [GET] "[object Promise]": <no response> The operation was aborted.]' )
} )
2023-11-15 19:40:55 +00:00
} )
2023-07-02 08:59:16 +00:00
describe ( 'errors' , ( ) = > {
it ( 'createError' , ( ) = > {
expect ( createError ( { statusCode : 404 } ) . toJSON ( ) ) . toMatchInlineSnapshot ( `
{
"message" : "" ,
"statusCode" : 404 ,
}
` )
expect ( createError ( 'Message' ) . toJSON ( ) ) . toMatchInlineSnapshot ( `
{
"message" : "Message" ,
"statusCode" : 500 ,
}
` )
} )
it ( 'isNuxtError' , ( ) = > {
const error = createError ( { statusCode : 404 } )
expect ( isNuxtError ( error ) ) . toBe ( true )
expect ( isNuxtError ( new Error ( 'test' ) ) ) . toBe ( false )
} )
it ( 'global nuxt errors' , ( ) = > {
const err = useError ( )
expect ( err . value ) . toBeUndefined ( )
showError ( 'new error' )
expect ( err . value ) . toMatchInlineSnapshot ( '[Error: new error]' )
clearError ( )
// TODO: should this return to being undefined?
expect ( err . value ) . toBeNull ( )
} )
} )
describe ( 'onNuxtReady' , ( ) = > {
2023-12-11 18:20:11 +00:00
it ( 'should call callback once nuxt is hydrated' , async ( ) = > {
2023-07-02 08:59:16 +00:00
const fn = vi . fn ( )
onNuxtReady ( fn )
2023-12-11 18:20:11 +00:00
await new Promise ( resolve = > setTimeout ( resolve , 1 ) )
2023-07-02 08:59:16 +00:00
expect ( fn ) . toHaveBeenCalled ( )
} )
} )
describe ( 'ssr composables' , ( ) = > {
it ( 'work on client' , ( ) = > {
// @ts-expect-error This should work for backward compatibility
expect ( setResponseStatus ( ) ) . toBeUndefined ( )
expect ( useRequestEvent ( ) ) . toBeUndefined ( )
expect ( useRequestFetch ( ) ) . toEqual ( $fetch )
expect ( useRequestHeaders ( ) ) . toEqual ( { } )
2023-09-28 10:54:22 +00:00
expect ( prerenderRoutes ( '/' ) ) . toBeUndefined ( )
2023-07-02 08:59:16 +00:00
} )
} )
2023-11-14 12:44:39 +00:00
describe ( 'useHydration' , ( ) = > {
it ( 'should hydrate value from payload' , async ( ) = > {
let val : any
const nuxtApp = useNuxtApp ( )
useHydration ( 'key' , ( ) = > { } , ( fromPayload ) = > { val = fromPayload } )
await nuxtApp . hooks . callHook ( 'app:created' , nuxtApp . vueApp )
expect ( val ) . toMatchInlineSnapshot ( 'undefined' )
nuxtApp . payload . key = 'from payload'
await nuxtApp . hooks . callHook ( 'app:created' , nuxtApp . vueApp )
expect ( val ) . toMatchInlineSnapshot ( '"from payload"' )
} )
} )
2023-07-02 08:59:16 +00:00
describe ( 'useState' , ( ) = > {
it ( 'default' , ( ) = > {
expect ( useState ( ( ) = > 'default' ) . value ) . toBe ( 'default' )
} )
it ( 'registers state in payload' , ( ) = > {
useState ( 'key' , ( ) = > 'value' )
expect ( Object . entries ( useNuxtApp ( ) . payload . state ) ) . toContainEqual ( [ '$skey' , 'value' ] )
} )
2023-10-01 08:37:53 +00:00
} )
2023-07-02 08:59:16 +00:00
2023-10-01 08:37:53 +00:00
describe ( 'clearNuxtState' , ( ) = > {
it ( 'clears state in payload for single key' , ( ) = > {
const key = 'clearNuxtState-test'
const state = useState ( key , ( ) = > 'test' )
2023-07-02 08:59:16 +00:00
expect ( state . value ) . toBe ( 'test' )
2023-10-01 08:37:53 +00:00
clearNuxtState ( key )
expect ( state . value ) . toBeUndefined ( )
} )
it ( 'clears state in payload for array of keys' , ( ) = > {
const key1 = 'clearNuxtState-test'
const key2 = 'clearNuxtState-test2'
const state1 = useState ( key1 , ( ) = > 'test' )
const state2 = useState ( key2 , ( ) = > 'test' )
expect ( state1 . value ) . toBe ( 'test' )
expect ( state2 . value ) . toBe ( 'test' )
clearNuxtState ( [ key1 , 'other' ] )
expect ( state1 . value ) . toBeUndefined ( )
expect ( state2 . value ) . toBe ( 'test' )
clearNuxtState ( [ key1 , key2 ] )
expect ( state1 . value ) . toBeUndefined ( )
expect ( state2 . value ) . toBeUndefined ( )
} )
it ( 'clears state in payload for function' , ( ) = > {
const key = 'clearNuxtState-test'
const state = useState ( key , ( ) = > 'test' )
expect ( state . value ) . toBe ( 'test' )
clearNuxtState ( ( ) = > false )
expect ( state . value ) . toBe ( 'test' )
clearNuxtState ( k = > k === key )
expect ( state . value ) . toBeUndefined ( )
} )
it ( 'clears all state when no key is provided' , ( ) = > {
const state1 = useState ( 'clearNuxtState-test' , ( ) = > 'test' )
const state2 = useState ( 'clearNuxtState-test2' , ( ) = > 'test' )
expect ( state1 . value ) . toBe ( 'test' )
expect ( state2 . value ) . toBe ( 'test' )
2023-07-02 08:59:16 +00:00
clearNuxtState ( )
2023-10-01 08:37:53 +00:00
expect ( state1 . value ) . toBeUndefined ( )
expect ( state2 . value ) . toBeUndefined ( )
2023-07-02 08:59:16 +00:00
} )
} )
describe ( 'url' , ( ) = > {
it ( 'useRequestURL' , ( ) = > {
const url = useRequestURL ( )
expect ( url ) . toMatchInlineSnapshot ( '"http://localhost:3000/"' )
expect ( url . hostname ) . toMatchInlineSnapshot ( '"localhost"' )
expect ( url . port ) . toMatchInlineSnapshot ( '"3000"' )
expect ( url . protocol ) . toMatchInlineSnapshot ( '"http:"' )
} )
} )
2023-09-19 21:31:18 +00:00
2023-12-19 10:18:10 +00:00
describe ( 'loading state' , ( ) = > {
it ( 'expect loading state to be changed by hooks' , async ( ) = > {
vi . stubGlobal ( 'setTimeout' , vi . fn ( ( cb : Function ) = > cb ( ) ) )
const nuxtApp = useNuxtApp ( )
const { isLoading } = useLoadingIndicator ( )
expect ( isLoading . value ) . toBeFalsy ( )
await nuxtApp . callHook ( 'page:loading:start' )
expect ( isLoading . value ) . toBeTruthy ( )
await nuxtApp . callHook ( 'page:loading:end' )
expect ( isLoading . value ) . toBeFalsy ( )
vi . mocked ( setTimeout ) . mockRestore ( )
} )
} )
2023-09-30 09:58:55 +00:00
describe . skipIf ( process . env . TEST_MANIFEST === 'manifest-off' ) ( 'app manifests' , ( ) = > {
2023-09-19 21:31:18 +00:00
it ( 'getAppManifest' , async ( ) = > {
const manifest = await getAppManifest ( )
delete manifest . timestamp
expect ( manifest ) . toMatchInlineSnapshot ( `
{
2023-10-07 06:30:10 +00:00
"id" : "override" ,
2023-09-19 21:31:18 +00:00
"matcher" : {
"dynamic" : { } ,
"static" : {
"/" : null ,
"/pre" : null ,
2023-10-16 22:28:42 +00:00
"/pre/test" : {
"redirect" : true ,
} ,
2023-09-19 21:31:18 +00:00
} ,
"wildcard" : {
"/pre" : {
"prerender" : true ,
} ,
} ,
} ,
"prerendered" : [
"/specific-prerendered" ,
] ,
}
` )
} )
it ( 'getRouteRules' , async ( ) = > {
2023-10-16 22:28:42 +00:00
expect ( await getRouteRules ( '/' ) ) . toMatchInlineSnapshot ( '{}' )
expect ( await getRouteRules ( '/pre' ) ) . toMatchInlineSnapshot ( `
{
"prerender" : true ,
}
` )
expect ( await getRouteRules ( '/pre/test' ) ) . toMatchInlineSnapshot ( `
{
"prerender" : true ,
"redirect" : true ,
}
` )
2023-09-19 21:31:18 +00:00
} )
it ( 'isPrerendered' , async ( ) = > {
expect ( await isPrerendered ( '/specific-prerendered' ) ) . toBeTruthy ( )
expect ( await isPrerendered ( '/prerendered/test' ) ) . toBeTruthy ( )
expect ( await isPrerendered ( '/test' ) ) . toBeFalsy ( )
2023-10-16 22:28:42 +00:00
expect ( await isPrerendered ( '/pre/test' ) ) . toBeFalsy ( )
expect ( await isPrerendered ( '/pre/thing' ) ) . toBeTruthy ( )
2023-09-19 21:31:18 +00:00
} )
} )
2023-11-14 12:44:39 +00:00
describe ( 'routing utilities: `navigateTo`' , ( ) = > {
it ( 'navigateTo should disallow navigation to external URLs by default' , ( ) = > {
2023-12-11 18:20:11 +00:00
expect ( ( ) = > navigateTo ( 'https://test.com' ) ) . toThrowErrorMatchingInlineSnapshot ( ` [Error: Navigating to an external URL is not allowed by default. Use \` navigateTo(url, { external: true }) \` .] ` )
2023-11-14 12:44:39 +00:00
expect ( ( ) = > navigateTo ( 'https://test.com' , { external : true } ) ) . not . toThrow ( )
} )
it ( 'navigateTo should disallow navigation to data/script URLs' , ( ) = > {
const urls = [
[ 'data:alert("hi")' , 'data' ] ,
[ '\0data:alert("hi")' , 'data' ] ,
]
for ( const [ url , protocol ] of urls ) {
expect ( ( ) = > navigateTo ( url , { external : true } ) ) . toThrowError ( ` Cannot navigate to a URL with ' ${ protocol } :' protocol. ` )
}
} )
} )
describe ( 'routing utilities: `useRoute`' , ( ) = > {
it ( 'should show provide a mock route' , async ( ) = > {
expect ( useRoute ( ) ) . toMatchObject ( {
fullPath : '/' ,
hash : '' ,
href : '/' ,
matched : [ ] ,
meta : { } ,
name : undefined ,
params : { } ,
path : '/' ,
query : { } ,
redirectedFrom : undefined ,
} )
} )
} )
describe ( 'routing utilities: `abortNavigation`' , ( ) = > {
it ( 'should throw an error if one is provided' , ( ) = > {
const error = useError ( )
2023-12-11 18:20:11 +00:00
expect ( ( ) = > abortNavigation ( { message : 'Page not found' } ) ) . toThrowErrorMatchingInlineSnapshot ( ` [Error: Page not found] ` )
2023-11-14 12:44:39 +00:00
expect ( error . value ) . toBeFalsy ( )
} )
it ( 'should block navigation if no error is provided' , ( ) = > {
expect ( abortNavigation ( ) ) . toMatchInlineSnapshot ( 'false' )
} )
} )
describe ( 'routing utilities: `setPageLayout`' , ( ) = > {
it ( 'should set error on page metadata if run outside middleware' , ( ) = > {
const route = useRoute ( )
expect ( route . meta . layout ) . toBeUndefined ( )
setPageLayout ( 'custom' )
expect ( route . meta . layout ) . toEqual ( 'custom' )
route . meta . layout = undefined
} )
it ( 'should not set layout directly if run within middleware' , async ( ) = > {
const route = useRoute ( )
const nuxtApp = useNuxtApp ( )
nuxtApp . _processingMiddleware = true
setPageLayout ( 'custom' )
expect ( route . meta . layout ) . toBeUndefined ( )
nuxtApp . _processingMiddleware = false
} )
} )
describe ( 'defineNuxtComponent' , ( ) = > {
it ( 'should produce a Vue component' , async ( ) = > {
const wrapper = await mountSuspended ( defineNuxtComponent ( {
render : ( ) = > h ( 'div' , 'hi there' )
} ) )
expect ( wrapper . html ( ) ) . toMatchInlineSnapshot ( '"<div>hi there</div>"' )
} )
it . todo ( 'should support Options API asyncData' )
it . todo ( 'should support Options API head' )
} )
2023-12-19 11:00:11 +00:00
describe ( 'callOnce' , ( ) = > {
it ( 'should only call composable once' , async ( ) = > {
const fn = vi . fn ( )
const execute = ( ) = > callOnce ( fn )
await execute ( )
await execute ( )
expect ( fn ) . toHaveBeenCalledTimes ( 1 )
} )
it ( 'should only call composable once when called in parallel' , async ( ) = > {
const fn = vi . fn ( ) . mockImplementation ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 1 ) ) )
const execute = ( ) = > callOnce ( fn )
await Promise . all ( [ execute ( ) , execute ( ) , execute ( ) ] )
expect ( fn ) . toHaveBeenCalledTimes ( 1 )
2024-01-25 14:29:50 +00:00
const fnSync = vi . fn ( ) . mockImplementation ( ( ) = > { } )
const executeSync = ( ) = > callOnce ( fnSync )
await Promise . all ( [ executeSync ( ) , executeSync ( ) , executeSync ( ) ] )
expect ( fnSync ) . toHaveBeenCalledTimes ( 1 )
2023-12-19 11:00:11 +00:00
} )
it ( 'should use key to dedupe' , async ( ) = > {
const fn = vi . fn ( )
const execute = ( key? : string ) = > callOnce ( key , fn )
await execute ( 'first' )
await execute ( 'first' )
await execute ( 'second' )
expect ( fn ) . toHaveBeenCalledTimes ( 2 )
} )
} )