2022-04-15 15:19:05 +00:00
import { fileURLToPath } from 'node:url'
2022-02-18 18:14:57 +00:00
import { describe , expect , it } from 'vitest'
2022-11-24 12:24:14 +00:00
import { joinURL , withQuery } from 'ufo'
2023-02-14 00:02:41 +00:00
import { isCI , isWindows } from 'std-env'
2023-02-13 22:09:32 +00:00
import { normalize } from 'pathe'
2023-04-07 16:02:47 +00:00
import { $fetch , createPage , fetch , isDev , setup , startServer , url } from '@nuxt/test-utils'
2023-04-06 12:12:20 +00:00
import { $fetchComponent } from '@nuxt/test-utils/experimental'
2023-01-22 16:46:45 +00:00
2022-11-24 12:24:14 +00:00
import type { NuxtIslandResponse } from '../packages/nuxt/src/core/runtime/nitro/renderer'
2023-04-11 22:57:12 +00:00
import { expectNoClientErrors , expectWithPolling , isRenderingJson , parseData , parsePayload , renderPage , withLogs } from './utils'
2023-02-13 22:09:32 +00:00
const isWebpack = process . env . TEST_BUILDER === 'webpack'
2022-02-18 18:14:57 +00:00
2022-03-22 18:12:54 +00:00
await setup ( {
2023-02-13 22:09:32 +00:00
rootDir : fileURLToPath ( new URL ( './fixtures/basic' , import . meta . url ) ) ,
dev : process.env.TEST_ENV === 'dev' ,
2022-04-05 18:38:23 +00:00
server : true ,
2022-11-15 14:33:43 +00:00
browser : true ,
2023-02-13 22:09:32 +00:00
setupTimeout : ( isWindows ? 240 : 120 ) * 1000 ,
nuxtConfig : {
builder : isWebpack ? 'webpack' : 'vite' ,
buildDir : process.env.NITRO_BUILD_DIR ,
nitro : { output : { dir : process.env.NITRO_OUTPUT_DIR } }
}
2022-03-22 18:12:54 +00:00
} )
describe ( 'server api' , ( ) = > {
it ( 'should serialize' , async ( ) = > {
expect ( await $fetch ( '/api/hello' ) ) . toBe ( 'Hello API' )
expect ( await $fetch ( '/api/hey' ) ) . toEqual ( {
foo : 'bar' ,
baz : 'qux'
2022-03-08 18:03:21 +00:00
} )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
it ( 'should preserve states' , async ( ) = > {
expect ( await $fetch ( '/api/counter' ) ) . toEqual ( { count : 0 } )
expect ( await $fetch ( '/api/counter' ) ) . toEqual ( { count : 1 } )
expect ( await $fetch ( '/api/counter' ) ) . toEqual ( { count : 2 } )
expect ( await $fetch ( '/api/counter' ) ) . toEqual ( { count : 3 } )
} )
} )
2022-10-11 16:03:52 +00:00
describe ( 'route rules' , ( ) = > {
it ( 'should enable spa mode' , async ( ) = > {
2023-04-07 10:34:35 +00:00
const { script , attrs } = parseData ( await $fetch ( '/route-rules/spa' ) )
expect ( script . serverRendered ) . toEqual ( false )
2023-04-11 22:57:12 +00:00
if ( isRenderingJson ) {
expect ( attrs [ 'data-ssr' ] ) . toEqual ( 'false' )
}
2023-04-11 22:33:21 +00:00
await expectNoClientErrors ( '/route-rules/spa' )
2022-10-11 16:03:52 +00:00
} )
2023-04-11 14:17:44 +00:00
it ( 'test noScript routeRules' , async ( ) = > {
const page = await createPage ( '/no-scripts' )
expect ( await page . locator ( 'script' ) . all ( ) ) . toHaveLength ( 0 )
} )
2022-10-11 16:03:52 +00:00
} )
2023-03-03 17:52:55 +00:00
describe ( 'modules' , ( ) = > {
it ( 'should auto-register modules in ~/modules' , async ( ) = > {
const result = await $fetch ( '/auto-registered-module' )
expect ( result ) . toEqual ( 'handler added by auto-registered module' )
} )
} )
2022-03-22 18:12:54 +00:00
describe ( 'pages' , ( ) = > {
it ( 'render index' , async ( ) = > {
const html = await $fetch ( '/' )
// Snapshot
// expect(html).toMatchInlineSnapshot()
// should render text
expect ( html ) . toContain ( 'Hello Nuxt 3!' )
// should inject runtime config
expect ( html ) . toContain ( 'RuntimeConfig | testConfig: 123' )
2023-01-28 15:18:04 +00:00
expect ( html ) . toContain ( 'needsFallback:' )
2022-03-22 18:12:54 +00:00
// composables auto import
2023-03-01 12:24:46 +00:00
expect ( html ) . toContain ( 'Composable | foo: auto imported from ~/composables/foo.ts' )
expect ( html ) . toContain ( 'Composable | bar: auto imported from ~/utils/useBar.ts' )
expect ( html ) . toContain ( 'Composable | template: auto imported from ~/composables/template.ts' )
expect ( html ) . toContain ( 'Composable | star: auto imported from ~/composables/nested/bar.ts via star export' )
2022-03-22 18:12:54 +00:00
// should import components
expect ( html ) . toContain ( 'This is a custom component with a named export.' )
2023-05-13 22:32:31 +00:00
// should remove dev-only and replace with any fallback content
expect ( html ) . toContain ( isDev ( ) ? 'Some dev-only info' : 'Some prod-only info' )
2022-08-02 15:05:02 +00:00
// should apply attributes to client-only components
expect ( html ) . toContain ( '<div style="color:red;" class="client-only"></div>' )
2023-01-09 11:20:33 +00:00
// should render server-only components
2023-05-15 22:43:53 +00:00
expect ( html . replace ( / nuxt-ssr-component-uid="[^"]*"/ , '' ) ) . toContain ( '<div class="server-only" style="background-color:gray;"> server-only component </div>' )
2022-08-02 15:05:02 +00:00
// should register global components automatically
2022-07-27 13:05:34 +00:00
expect ( html ) . toContain ( 'global component registered automatically' )
expect ( html ) . toContain ( 'global component via suffix' )
2022-04-05 18:38:23 +00:00
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/' )
2022-03-08 18:03:21 +00:00
} )
2023-02-16 12:45:08 +00:00
// TODO: support jsx with webpack
it . runIf ( ! isWebpack ) ( 'supports jsx' , async ( ) = > {
const html = await $fetch ( '/jsx' )
// should import JSX/TSX components with custom elements
expect ( html ) . toContain ( 'TSX component' )
expect ( html ) . toContain ( '<custom-component>custom</custom-component>' )
} )
2022-09-22 13:54:34 +00:00
it ( 'respects aliases in page metadata' , async ( ) = > {
const html = await $fetch ( '/some-alias' )
expect ( html ) . toContain ( 'Hello Nuxt 3!' )
} )
it ( 'respects redirects in page metadata' , async ( ) = > {
const { headers } = await fetch ( '/redirect' , { redirect : 'manual' } )
expect ( headers . get ( 'location' ) ) . toEqual ( '/' )
} )
2023-05-03 14:14:12 +00:00
it ( 'includes page metadata from pages added in pages:extend hook' , async ( ) = > {
const res = await fetch ( '/page-extend' )
expect ( res . headers . get ( 'x-extend' ) ) . toEqual ( 'added in pages:extend' )
} )
2022-10-10 10:18:20 +00:00
it ( 'validates routes' , async ( ) = > {
2023-05-01 22:55:24 +00:00
const { status , headers } = await fetch ( '/forbidden' )
2022-10-10 10:18:20 +00:00
expect ( status ) . toEqual ( 404 )
2023-05-01 22:55:24 +00:00
expect ( headers . get ( 'Set-Cookie' ) ) . toBe ( 'set-in-plugin=true; Path=/' )
2023-02-16 12:56:14 +00:00
const page = await createPage ( '/navigate-to-forbidden' )
await page . waitForLoadState ( 'networkidle' )
await page . getByText ( 'should throw a 404 error' ) . click ( )
expect ( await page . getByRole ( 'heading' ) . textContent ( ) ) . toMatchInlineSnapshot ( '"Page Not Found: /forbidden"' )
2023-03-09 13:54:46 +00:00
await page . goto ( url ( '/navigate-to-forbidden' ) )
2023-02-16 12:56:14 +00:00
await page . waitForLoadState ( 'networkidle' )
await page . getByText ( 'should be caught by catchall' ) . click ( )
expect ( await page . getByRole ( 'heading' ) . textContent ( ) ) . toMatchInlineSnapshot ( '"[...slug].vue"' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-10-10 10:18:20 +00:00
} )
2023-04-13 10:14:44 +00:00
it ( 'returns 500 when there is an infinite redirect' , async ( ) = > {
const { status } = await fetch ( '/redirect-infinite' , { redirect : 'manual' } )
expect ( status ) . toEqual ( 500 )
} )
2023-05-01 22:55:24 +00:00
it ( 'render catchall page' , async ( ) = > {
const res = await fetch ( '/not-found' )
expect ( res . status ) . toEqual ( 200 )
const html = await res . text ( )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( '[...slug].vue' )
2023-02-16 12:56:14 +00:00
expect ( html ) . toContain ( 'catchall at not-found' )
2022-04-05 18:38:23 +00:00
2023-01-19 19:37:07 +00:00
// Middleware still runs after validation: https://github.com/nuxt/nuxt/issues/15650
2023-01-14 00:23:20 +00:00
expect ( html ) . toContain ( 'Middleware ran: true' )
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/not-found' )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2022-05-03 09:31:58 +00:00
it ( 'preserves query' , async ( ) = > {
const html = await $fetch ( '/?test=true' )
// Snapshot
// expect(html).toMatchInlineSnapshot()
// should render text
expect ( html ) . toContain ( 'Path: /?test=true' )
await expectNoClientErrors ( '/?test=true' )
} )
2022-03-22 18:12:54 +00:00
it ( '/nested/[foo]/[bar].vue' , async ( ) = > {
const html = await $fetch ( '/nested/one/two' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'nested/[foo]/[bar].vue' )
expect ( html ) . toContain ( 'foo: one' )
expect ( html ) . toContain ( 'bar: two' )
} )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
it ( '/nested/[foo]/index.vue' , async ( ) = > {
const html = await $fetch ( '/nested/foobar' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// TODO: should resolved to same entry
// const html2 = await $fetch('/nested/foobar/index')
// expect(html).toEqual(html2)
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'nested/[foo]/index.vue' )
expect ( html ) . toContain ( 'foo: foobar' )
2022-04-05 18:38:23 +00:00
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/nested/foobar' )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
it ( '/nested/[foo]/user-[group].vue' , async ( ) = > {
const html = await $fetch ( '/nested/foobar/user-admin' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'nested/[foo]/user-[group].vue' )
expect ( html ) . toContain ( 'foo: foobar' )
expect ( html ) . toContain ( 'group: admin' )
2022-04-05 18:38:23 +00:00
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/nested/foobar/user-admin' )
2022-03-22 18:12:54 +00:00
} )
2022-03-25 11:55:05 +00:00
it ( '/parent' , async ( ) = > {
const html = await $fetch ( '/parent' )
expect ( html ) . toContain ( 'parent/index' )
2022-04-05 18:38:23 +00:00
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/parent' )
2022-03-25 11:55:05 +00:00
} )
it ( '/another-parent' , async ( ) = > {
const html = await $fetch ( '/another-parent' )
expect ( html ) . toContain ( 'another-parent/index' )
2022-04-05 18:38:23 +00:00
2022-04-07 00:39:44 +00:00
await expectNoClientErrors ( '/another-parent' )
2022-03-25 11:55:05 +00:00
} )
2022-08-17 15:26:51 +00:00
it ( '/client-only-components' , async ( ) = > {
const html = await $fetch ( '/client-only-components' )
2022-10-03 14:14:55 +00:00
// ensure fallbacks with classes and arbitrary attributes are rendered
2022-08-17 15:26:51 +00:00
expect ( html ) . toContain ( '<div class="client-only-script" foo="bar">' )
expect ( html ) . toContain ( '<div class="client-only-script-setup" foo="hello">' )
2022-09-20 06:24:45 +00:00
expect ( html ) . toContain ( '<div>Fallback</div>' )
2022-10-03 14:14:55 +00:00
// ensure components are not rendered server-side
2022-09-20 06:24:45 +00:00
expect ( html ) . not . toContain ( 'Should not be server rendered' )
2022-08-17 15:26:51 +00:00
await expectNoClientErrors ( '/client-only-components' )
2022-10-03 14:14:55 +00:00
const page = await createPage ( '/client-only-components' )
await page . waitForLoadState ( 'networkidle' )
const hiddenSelectors = [
'.string-stateful-should-be-hidden' ,
'.client-script-should-be-hidden' ,
'.string-stateful-script-should-be-hidden' ,
'.no-state-hidden'
]
const visibleSelectors = [
'.string-stateful' ,
'.string-stateful-script' ,
'.client-only-script' ,
'.client-only-script-setup' ,
'.no-state'
]
2023-04-07 08:31:04 +00:00
2022-10-03 14:14:55 +00:00
// ensure directives are correctly applied
await Promise . all ( hiddenSelectors . map ( selector = > page . locator ( selector ) . isHidden ( ) ) )
. then ( results = > results . forEach ( isHidden = > expect ( isHidden ) . toBeTruthy ( ) ) )
// ensure hidden components are still rendered
await Promise . all ( hiddenSelectors . map ( selector = > page . locator ( selector ) . innerHTML ( ) ) )
. then ( results = > results . forEach ( innerHTML = > expect ( innerHTML ) . not . toBe ( '' ) ) )
// ensure single root node components are rendered once on client (should not be empty)
await Promise . all ( visibleSelectors . map ( selector = > page . locator ( selector ) . innerHTML ( ) ) )
. then ( results = > results . forEach ( innerHTML = > expect ( innerHTML ) . not . toBe ( '' ) ) )
2023-04-07 08:31:04 +00:00
// issue #20061
expect ( await page . $eval ( '.client-only-script-setup' , e = > getComputedStyle ( e ) . backgroundColor ) ) . toBe ( 'rgb(255, 0, 0)' )
2022-10-03 14:14:55 +00:00
// ensure multi-root-node is correctly rendered
expect ( await page . locator ( '.multi-root-node-count' ) . innerHTML ( ) ) . toContain ( '0' )
expect ( await page . locator ( '.multi-root-node-button' ) . innerHTML ( ) ) . toContain ( 'add 1 to count' )
expect ( await page . locator ( '.multi-root-node-script-count' ) . innerHTML ( ) ) . toContain ( '0' )
expect ( await page . locator ( '.multi-root-node-script-button' ) . innerHTML ( ) ) . toContain ( 'add 1 to count' )
// ensure components reactivity
await page . locator ( '.multi-root-node-button' ) . click ( )
await page . locator ( '.multi-root-node-script-button' ) . click ( )
await page . locator ( '.client-only-script button' ) . click ( )
await page . locator ( '.client-only-script-setup button' ) . click ( )
expect ( await page . locator ( '.multi-root-node-count' ) . innerHTML ( ) ) . toContain ( '1' )
expect ( await page . locator ( '.multi-root-node-script-count' ) . innerHTML ( ) ) . toContain ( '1' )
expect ( await page . locator ( '.client-only-script-setup button' ) . innerHTML ( ) ) . toContain ( '1' )
expect ( await page . locator ( '.client-only-script button' ) . innerHTML ( ) ) . toContain ( '1' )
// ensure components ref is working and reactive
await page . locator ( 'button.test-ref-1' ) . click ( )
await page . locator ( 'button.test-ref-2' ) . click ( )
await page . locator ( 'button.test-ref-3' ) . click ( )
await page . locator ( 'button.test-ref-4' ) . click ( )
expect ( await page . locator ( '.client-only-script-setup button' ) . innerHTML ( ) ) . toContain ( '2' )
expect ( await page . locator ( '.client-only-script button' ) . innerHTML ( ) ) . toContain ( '2' )
expect ( await page . locator ( '.string-stateful-script' ) . innerHTML ( ) ) . toContain ( '1' )
expect ( await page . locator ( '.string-stateful' ) . innerHTML ( ) ) . toContain ( '1' )
// ensure directives are reactive
await page . locator ( 'button#show-all' ) . click ( )
await Promise . all ( hiddenSelectors . map ( selector = > page . locator ( selector ) . isVisible ( ) ) )
. then ( results = > results . forEach ( isVisible = > expect ( isVisible ) . toBeTruthy ( ) ) )
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-08-17 15:26:51 +00:00
} )
2022-10-11 15:26:03 +00:00
it ( '/client-only-explicit-import' , async ( ) = > {
const html = await $fetch ( '/client-only-explicit-import' )
// ensure fallbacks with classes and arbitrary attributes are rendered
expect ( html ) . toContain ( '<div class="client-only-script" foo="bar">' )
expect ( html ) . toContain ( '<div class="lazy-client-only-script-setup" foo="hello">' )
// ensure components are not rendered server-side
expect ( html ) . not . toContain ( 'client only script' )
2022-10-16 09:03:52 +00:00
await expectNoClientErrors ( '/client-only-explicit-import' )
2022-10-11 15:26:03 +00:00
} )
2023-03-08 21:13:06 +00:00
it ( 'client-fallback' , async ( ) = > {
const classes = [
'clientfallback-non-stateful-setup' ,
'clientfallback-non-stateful' ,
'clientfallback-stateful-setup' ,
'clientfallback-stateful'
]
const html = await $fetch ( '/client-fallback' )
// ensure failed components are not rendered server-side
expect ( html ) . not . toContain ( 'This breaks in server-side setup.' )
classes . forEach ( c = > expect ( html ) . not . toContain ( c ) )
// ensure not failed component not be rendered
expect ( html ) . not . toContain ( 'Sugar Counter 12 x 0 = 0' )
// ensure NuxtClientFallback is being rendered with its fallback tag and attributes
expect ( html ) . toContain ( '<span class="break-in-ssr">this failed to render</span>' )
// ensure Fallback slot is being rendered server side
expect ( html ) . toContain ( 'Hello world !' )
// ensure not failed component are correctly rendered
expect ( html ) . not . toContain ( '<p></p>' )
expect ( html ) . toContain ( 'hi' )
await expectNoClientErrors ( '/client-fallback' )
const page = await createPage ( '/client-fallback' )
await page . waitForLoadState ( 'networkidle' )
// ensure components reactivity once mounted
await page . locator ( '#increment-count' ) . click ( )
expect ( await page . locator ( '#sugar-counter' ) . innerHTML ( ) ) . toContain ( 'Sugar Counter 12 x 1 = 12' )
2023-05-14 21:22:54 +00:00
// keep-fallback strategy
expect ( await page . locator ( '#keep-fallback' ) . all ( ) ) . toHaveLength ( 1 )
2023-05-13 21:39:50 +00:00
// #20833
expect ( await page . locator ( 'body' ) . innerHTML ( ) ) . not . toContain ( 'Hello world !' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2023-03-08 21:13:06 +00:00
} )
2023-04-20 21:41:20 +00:00
it ( '/islands' , async ( ) = > {
const page = await createPage ( '/islands' )
await page . waitForLoadState ( 'networkidle' )
await page . locator ( '#increase-pure-component' ) . click ( )
await page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/' ) && response . status ( ) === 200 )
await page . waitForLoadState ( 'networkidle' )
2023-05-15 22:43:53 +00:00
expect ( await page . locator ( '#slot-in-server' ) . first ( ) . innerHTML ( ) ) . toContain ( 'Slot with in .server component' )
expect ( await page . locator ( '#test-slot' ) . first ( ) . innerHTML ( ) ) . toContain ( 'Slot with name test' )
// test fallback slot with v-for
expect ( await page . locator ( '.fallback-slot-content' ) . all ( ) ) . toHaveLength ( 2 )
// test islands update
2023-04-20 21:41:20 +00:00
expect ( await page . locator ( '.box' ) . innerHTML ( ) ) . toContain ( '"number": 101,' )
2023-05-15 22:43:53 +00:00
await page . locator ( '#update-server-components' ) . click ( )
2023-04-20 21:41:20 +00:00
await Promise . all ( [
page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/LongAsyncComponent' ) && response . status ( ) === 200 ) ,
page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/AsyncServerComponent' ) && response . status ( ) === 200 )
] )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . locator ( '#async-server-component-count' ) . innerHTML ( ) ) . toContain ( ( '1' ) )
expect ( await page . locator ( '#long-async-component-count' ) . innerHTML ( ) ) . toContain ( '1' )
2023-05-15 22:43:53 +00:00
// test islands slots interactivity
await page . locator ( '#first-sugar-counter button' ) . click ( )
expect ( await page . locator ( '#first-sugar-counter' ) . innerHTML ( ) ) . toContain ( 'Sugar Counter 13' )
// test islands mounted client side with slot
await page . locator ( '#show-island' ) . click ( )
await page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/' ) && response . status ( ) === 200 )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . locator ( '#island-mounted-client-side' ) . innerHTML ( ) ) . toContain ( 'Interactive testing slot post SSR' )
2023-04-27 10:51:33 +00:00
await page . close ( )
} )
it ( '/legacy-async-data-fail' , async ( ) = > {
const response = await fetch ( '/legacy-async-data-fail' ) . then ( r = > r . text ( ) )
expect ( response ) . not . toContain ( 'don\'t look at this' )
expect ( response ) . toContain ( 'OH NNNNNNOOOOOOOOOOO' )
2023-04-20 21:41:20 +00:00
} )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2023-05-13 21:09:37 +00:00
describe ( 'nuxt composables' , ( ) = > {
it ( 'has useRequestURL()' , async ( ) = > {
const html = await $fetch ( '/url' )
expect ( html ) . toContain ( 'path: /url' )
} )
} )
2023-04-07 10:34:35 +00:00
describe ( 'rich payloads' , ( ) = > {
it ( 'correctly serializes and revivifies complex types' , async ( ) = > {
const html = await $fetch ( '/json-payload' )
for ( const test of [
'Date: true' ,
'Recursive objects: true' ,
'Shallow reactive: true' ,
'Shallow ref: true' ,
2023-05-13 19:49:05 +00:00
'Undefined ref: true' ,
2023-04-07 10:34:35 +00:00
'Reactive: true' ,
'Ref: true' ,
'Error: true'
] ) {
expect ( html ) . toContain ( test )
}
} )
} )
2023-03-07 07:17:42 +00:00
describe ( 'nuxt links' , ( ) = > {
it ( 'handles trailing slashes' , async ( ) = > {
const html = await $fetch ( '/nuxt-link/trailing-slash' )
const data : Record < string , string [ ] > = { }
for ( const selector of [ 'nuxt-link' , 'router-link' , 'link-with-trailing-slash' , 'link-without-trailing-slash' ] ) {
data [ selector ] = [ ]
for ( const match of html . matchAll ( new RegExp ( ` href="([^"]*)"[^>]*class="[^"]* \\ b ${ selector } \\ b ` , 'g' ) ) ) {
data [ selector ] . push ( match [ 1 ] )
}
}
expect ( data ) . toMatchInlineSnapshot ( `
{
"link-with-trailing-slash" : [
"/" ,
"/nuxt-link/trailing-slash/" ,
"/nuxt-link/trailing-slash/" ,
"/nuxt-link/trailing-slash/?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash/?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash/" ,
"/nuxt-link/trailing-slash/?with-state=true" ,
"/nuxt-link/trailing-slash/?without-state=true" ,
] ,
"link-without-trailing-slash" : [
"/" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash?with-state=true" ,
"/nuxt-link/trailing-slash?without-state=true" ,
] ,
"nuxt-link" : [
"/" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash/" ,
"/nuxt-link/trailing-slash?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash/?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash?with-state=true" ,
"/nuxt-link/trailing-slash?without-state=true" ,
] ,
"router-link" : [
"/" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash/" ,
"/nuxt-link/trailing-slash?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash/?test=true&thing=other/thing#thing-other" ,
"/nuxt-link/trailing-slash" ,
"/nuxt-link/trailing-slash?with-state=true" ,
"/nuxt-link/trailing-slash?without-state=true" ,
] ,
}
` )
} )
it ( 'preserves route state' , async ( ) = > {
const page = await createPage ( '/nuxt-link/trailing-slash' )
await page . waitForLoadState ( 'networkidle' )
for ( const selector of [ 'nuxt-link' , 'router-link' , 'link-with-trailing-slash' , 'link-without-trailing-slash' ] ) {
await page . locator ( ` . ${ selector } [href*=with-state] ` ) . click ( )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . getByTestId ( 'window-state' ) . innerText ( ) ) . toContain ( 'bar' )
await page . locator ( ` . ${ selector } [href*=without-state] ` ) . click ( )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . getByTestId ( 'window-state' ) . innerText ( ) ) . not . toContain ( 'bar' )
}
2023-03-09 13:54:46 +00:00
await page . close ( )
2023-03-07 07:17:42 +00:00
} )
} )
2022-04-05 14:02:29 +00:00
describe ( 'head tags' , ( ) = > {
2023-03-08 15:32:24 +00:00
it ( 'SSR should render tags' , async ( ) = > {
2022-08-02 11:20:44 +00:00
const headHtml = await $fetch ( '/head' )
2022-10-12 17:00:17 +00:00
2022-08-02 11:20:44 +00:00
expect ( headHtml ) . toContain ( '<title>Using a dynamic component - Title Template Fn Change</title>' )
expect ( headHtml ) . not . toContain ( '<meta name="description" content="first">' )
expect ( headHtml ) . toContain ( '<meta charset="utf-16">' )
2022-08-07 09:53:53 +00:00
expect ( headHtml . match ( 'meta charset' ) . length ) . toEqual ( 1 )
expect ( headHtml ) . toContain ( '<meta name="viewport" content="width=1024, initial-scale=1">' )
expect ( headHtml . match ( 'meta name="viewport"' ) . length ) . toEqual ( 1 )
2022-08-02 11:20:44 +00:00
expect ( headHtml ) . not . toContain ( '<meta charset="utf-8">' )
expect ( headHtml ) . toContain ( '<meta name="description" content="overriding with an inline useHead call">' )
expect ( headHtml ) . toMatch ( /<html[^>]*class="html-attrs-test"/ )
expect ( headHtml ) . toMatch ( /<body[^>]*class="body-attrs-test"/ )
2022-11-15 16:26:38 +00:00
expect ( headHtml ) . toContain ( '<script src="https://a-body-appended-script.com"></script></body>' )
2022-08-02 11:20:44 +00:00
const indexHtml = await $fetch ( '/' )
2022-04-11 09:03:31 +00:00
// should render charset by default
2022-08-02 11:20:44 +00:00
expect ( indexHtml ) . toContain ( '<meta charset="utf-8">' )
2022-04-11 09:03:31 +00:00
// should render <Head> components
2022-08-02 11:20:44 +00:00
expect ( indexHtml ) . toContain ( '<title>Basic fixture</title>' )
2022-04-05 14:02:29 +00:00
} )
2022-07-25 12:05:58 +00:00
2023-03-10 08:01:21 +00:00
it ( 'SSR script setup should render tags' , async ( ) = > {
const headHtml = await $fetch ( '/head-script-setup' )
// useHead - title & titleTemplate are working
expect ( headHtml ) . toContain ( '<title>head script setup - Nuxt Playground</title>' )
// useSeoMeta - template params
expect ( headHtml ) . toContain ( '<meta property="og:title" content="head script setup - Nuxt Playground">' )
// useSeoMeta - refs
expect ( headHtml ) . toContain ( '<meta name="description" content="head script setup description for Nuxt Playground">' )
// useServerHead - shorthands
expect ( headHtml ) . toContain ( '>/* Custom styles */</style>' )
// useHeadSafe - removes dangerous content
expect ( headHtml ) . toContain ( '<script id="xss-script"></script>' )
expect ( headHtml ) . toContain ( '<meta content="0;javascript:alert(1)">' )
} )
2023-03-08 15:32:24 +00:00
it ( 'SPA should render appHead tags' , async ( ) = > {
const headHtml = await $fetch ( '/head' , { headers : { 'x-nuxt-no-ssr' : '1' } } )
expect ( headHtml ) . toContain ( '<meta name="description" content="Nuxt Fixture">' )
expect ( headHtml ) . toContain ( '<meta charset="utf-8">' )
expect ( headHtml ) . toContain ( '<meta name="viewport" content="width=1024, initial-scale=1">' )
} )
it ( 'legacy vueuse/head works' , async ( ) = > {
const headHtml = await $fetch ( '/vueuse-head' )
expect ( headHtml ) . toContain ( '<title>using provides usehead and updateDOM - VueUse head polyfill test</title>' )
} )
2022-09-03 12:31:09 +00:00
it ( 'should render http-equiv correctly' , async ( ) = > {
const html = await $fetch ( '/head' )
// http-equiv should be rendered kebab case
expect ( html ) . toContain ( '<meta content="default-src https" http-equiv="content-security-policy">' )
} )
2022-07-25 12:05:58 +00:00
// TODO: Doesn't adds header in test environment
// it.todo('should render stylesheet link tag (SPA mode)', async () => {
// const html = await $fetch('/head', { headers: { 'x-nuxt-no-ssr': '1' } })
// expect(html).toMatch(/<link rel="stylesheet" href="\/_nuxt\/[^>]*.css"/)
// })
2022-04-05 14:02:29 +00:00
} )
2022-08-29 10:02:24 +00:00
describe ( 'legacy async data' , ( ) = > {
it ( 'should work with defineNuxtComponent' , async ( ) = > {
const html = await $fetch ( '/legacy/async-data' )
expect ( html ) . toContain ( '<div>Hello API</div>' )
2023-04-07 10:34:35 +00:00
const { script } = parseData ( html )
expect ( script . data [ 'options:asyncdata:/legacy/async-data' ] . hello ) . toEqual ( 'Hello API' )
2022-08-29 10:02:24 +00:00
} )
} )
2022-03-22 18:12:54 +00:00
describe ( 'navigate' , ( ) = > {
it ( 'should redirect to index with navigateTo' , async ( ) = > {
2023-02-16 17:26:15 +00:00
const { headers , status } = await fetch ( '/navigate-to/' , { redirect : 'manual' } )
2022-03-22 18:12:54 +00:00
2022-05-11 17:33:29 +00:00
expect ( headers . get ( 'location' ) ) . toEqual ( '/' )
2023-02-16 17:26:15 +00:00
expect ( status ) . toEqual ( 301 )
} )
it ( 'respects redirects + headers in middleware' , async ( ) = > {
const res = await fetch ( '/navigate-some-path/' , { redirect : 'manual' , headers : { 'trailing-slash' : 'true' } } )
expect ( res . headers . get ( 'location' ) ) . toEqual ( '/navigate-some-path' )
expect ( res . status ) . toEqual ( 307 )
expect ( await res . text ( ) ) . toMatchInlineSnapshot ( '"<!DOCTYPE html><html><head><meta http-equiv=\\"refresh\\" content=\\"0; url=/navigate-some-path\\"></head></html>"' )
2022-03-08 18:03:21 +00:00
} )
2023-04-13 09:58:25 +00:00
it ( 'should not overwrite headers' , async ( ) = > {
const { headers , status } = await fetch ( '/navigate-to-external' , { redirect : 'manual' } )
expect ( headers . get ( 'location' ) ) . toEqual ( '/' )
expect ( status ) . toEqual ( 302 )
} )
it ( 'supports directly aborting navigation on SSR' , async ( ) = > {
const { status } = await fetch ( '/navigate-to-false' , { redirect : 'manual' } )
expect ( status ) . toEqual ( 404 )
} )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2023-05-17 12:26:16 +00:00
describe ( 'preserves current instance' , ( ) = > {
it ( 'should not return getCurrentInstance when there\'s an error in data' , async ( ) = > {
await fetch ( '/instance/error' )
const html = await $fetch ( '/instance/next-request' )
expect ( html ) . toContain ( 'This should be false: false' )
} )
// TODO: re-enable when https://github.com/nuxt/nuxt/issues/15164 is resolved
it . skipIf ( isWindows ) ( 'should not lose current nuxt app after await in vue component' , async ( ) = > {
const requests = await Promise . all ( Array . from ( { length : 100 } ) . map ( ( ) = > $fetch ( '/instance/next-request' ) ) )
for ( const html of requests ) {
expect ( html ) . toContain ( 'This should be true: true' )
}
} )
} )
2022-09-08 08:45:39 +00:00
describe ( 'errors' , ( ) = > {
it ( 'should render a JSON error page' , async ( ) = > {
const res = await fetch ( '/error' , {
headers : {
accept : 'application/json'
}
} )
expect ( res . status ) . toBe ( 422 )
2023-03-19 23:20:04 +00:00
expect ( res . statusText ) . toBe ( 'This is a custom error' )
2022-09-08 08:45:39 +00:00
const error = await res . json ( )
delete error . stack
expect ( error ) . toMatchObject ( {
message : 'This is a custom error' ,
statusCode : 422 ,
statusMessage : 'This is a custom error' ,
url : '/error'
} )
} )
it ( 'should render a HTML error page' , async ( ) = > {
const res = await fetch ( '/error' )
2023-05-15 10:31:13 +00:00
// TODO: remove when we update CI to node v18
if ( process . version . startsWith ( 'v16' ) ) {
expect ( res . headers . get ( 'Set-Cookie' ) ) . toBe ( 'set-in-plugin=true; Path=/' )
} else {
expect ( res . headers . get ( 'Set-Cookie' ) ) . toBe ( 'set-in-plugin=true; Path=/, some-error=was%20set; Path=/' )
}
2022-09-08 08:45:39 +00:00
expect ( await res . text ( ) ) . toContain ( 'This is a custom error' )
} )
2023-02-16 12:43:58 +00:00
2023-04-25 14:47:02 +00:00
it ( 'should not allow accessing error route directly' , async ( ) = > {
const res = await fetch ( '/__nuxt_error' , {
headers : {
accept : 'application/json'
}
} )
expect ( res . status ) . toBe ( 404 )
const error = await res . json ( )
delete error . stack
expect ( error ) . toMatchInlineSnapshot ( `
{
"message" : "Page Not Found: /__nuxt_error" ,
"statusCode" : 404 ,
"statusMessage" : "Page Not Found: /__nuxt_error" ,
"url" : "/__nuxt_error" ,
}
` )
} )
2023-02-16 12:43:58 +00:00
// TODO: need to create test for webpack
it . runIf ( ! isDev ( ) && ! isWebpack ) ( 'should handle chunk loading errors' , async ( ) = > {
const { page , consoleLogs } = await renderPage ( '/' )
2023-03-08 12:17:22 +00:00
await page . getByText ( 'Increment state' ) . click ( )
await page . getByText ( 'Increment state' ) . click ( )
2023-04-12 08:42:45 +00:00
expect ( await page . innerText ( 'div' ) ) . toContain ( 'Some value: 3' )
2023-02-16 12:43:58 +00:00
await page . getByText ( 'Chunk error' ) . click ( )
await page . waitForURL ( url ( '/chunk-error' ) )
expect ( consoleLogs . map ( c = > c . text ) . join ( '' ) ) . toContain ( 'caught chunk load error' )
expect ( await page . innerText ( 'div' ) ) . toContain ( 'Chunk error page' )
2023-03-08 12:17:22 +00:00
await page . waitForLoadState ( 'networkidle' )
expect ( await page . innerText ( 'div' ) ) . toContain ( 'State: 3' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2023-02-16 12:43:58 +00:00
} )
2022-09-08 08:45:39 +00:00
} )
2022-08-24 16:04:56 +00:00
describe ( 'navigate external' , ( ) = > {
it ( 'should redirect to example.com' , async ( ) = > {
const { headers } = await fetch ( '/navigate-to-external/' , { redirect : 'manual' } )
expect ( headers . get ( 'location' ) ) . toEqual ( 'https://example.com/' )
} )
2023-03-20 17:15:01 +00:00
it ( 'should redirect to api endpoint' , async ( ) = > {
const { headers } = await fetch ( '/navigate-to-api' , { redirect : 'manual' } )
expect ( headers . get ( 'location' ) ) . toEqual ( '/api/test' )
} )
2022-08-24 16:04:56 +00:00
} )
2022-03-22 18:12:54 +00:00
describe ( 'middlewares' , ( ) = > {
it ( 'should redirect to index with global middleware' , async ( ) = > {
const html = await $fetch ( '/redirect/' )
2022-03-16 21:39:47 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-16 21:39:47 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'Hello Nuxt 3!' )
2022-03-16 21:39:47 +00:00
} )
2022-09-08 08:52:00 +00:00
it ( 'should allow aborting navigation on server-side' , async ( ) = > {
const res = await fetch ( '/?abort' , {
headers : {
accept : 'application/json'
}
} )
expect ( res . status ) . toEqual ( 401 )
} )
2022-03-22 18:12:54 +00:00
it ( 'should inject auth' , async ( ) = > {
const html = await $fetch ( '/auth' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'auth.vue' )
expect ( html ) . toContain ( 'auth: Injected by injectAuth middleware' )
} )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
it ( 'should not inject auth' , async ( ) = > {
const html = await $fetch ( '/no-auth' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'no-auth.vue' )
expect ( html ) . toContain ( 'auth: ' )
expect ( html ) . not . toContain ( 'Injected by injectAuth middleware' )
} )
2022-09-19 08:54:35 +00:00
it ( 'should redirect to index with http 307 with navigateTo on server side' , async ( ) = > {
const html = await fetch ( '/navigate-to-redirect' , { redirect : 'manual' } )
expect ( html . headers . get ( 'location' ) ) . toEqual ( '/' )
expect ( html . status ) . toEqual ( 307 )
} )
2022-03-22 18:12:54 +00:00
} )
2022-03-08 18:03:21 +00:00
2022-04-01 09:55:23 +00:00
describe ( 'plugins' , ( ) = > {
it ( 'basic plugin' , async ( ) = > {
const html = await $fetch ( '/plugins' )
expect ( html ) . toContain ( 'myPlugin: Injected by my-plugin' )
} )
it ( 'async plugin' , async ( ) = > {
const html = await $fetch ( '/plugins' )
expect ( html ) . toContain ( 'asyncPlugin: Async plugin works! 123' )
2022-12-10 22:44:29 +00:00
expect ( html ) . toContain ( 'useFetch works!' )
2022-04-01 09:55:23 +00:00
} )
} )
2022-03-22 18:12:54 +00:00
describe ( 'layouts' , ( ) = > {
it ( 'should apply custom layout' , async ( ) = > {
const html = await $fetch ( '/with-layout' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
// Snapshot
// expect(html).toMatchInlineSnapshot()
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'with-layout.vue' )
expect ( html ) . toContain ( 'Custom Layout:' )
2022-02-25 20:14:53 +00:00
} )
2022-08-31 08:02:48 +00:00
it ( 'should work with a dynamically set layout' , async ( ) = > {
const html = await $fetch ( '/with-dynamic-layout' )
// Snapshot
// expect(html).toMatchInlineSnapshot()
expect ( html ) . toContain ( 'with-dynamic-layout' )
expect ( html ) . toContain ( 'Custom Layout:' )
await expectNoClientErrors ( '/with-dynamic-layout' )
} )
2023-01-14 00:58:54 +00:00
it ( 'should work with a computed layout' , async ( ) = > {
const html = await $fetch ( '/with-computed-layout' )
// Snapshot
// expect(html).toMatchInlineSnapshot()
expect ( html ) . toContain ( 'with-computed-layout' )
expect ( html ) . toContain ( 'Custom Layout' )
await expectNoClientErrors ( '/with-computed-layout' )
} )
2022-11-29 12:16:41 +00:00
it ( 'should allow passing custom props to a layout' , async ( ) = > {
const html = await $fetch ( '/layouts/with-props' )
expect ( html ) . toContain ( 'some prop was passed' )
await expectNoClientErrors ( '/layouts/with-props' )
} )
2022-03-22 18:12:54 +00:00
} )
2022-02-25 20:14:53 +00:00
2022-03-22 18:12:54 +00:00
describe ( 'reactivity transform' , ( ) = > {
it ( 'should works' , async ( ) = > {
const html = await $fetch ( '/' )
2022-03-08 18:03:21 +00:00
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'Sugar Counter 12 x 2 = 24' )
} )
} )
2022-03-08 18:03:21 +00:00
2023-03-07 09:30:05 +00:00
describe ( 'composable tree shaking' , ( ) = > {
it ( 'should work' , async ( ) = > {
const html = await $fetch ( '/tree-shake' )
expect ( html ) . toContain ( 'Tree Shake Example' )
const page = await createPage ( '/tree-shake' )
// check page doesn't have any errors or warnings in the console
await page . waitForLoadState ( 'networkidle' )
// ensure scoped classes are correctly assigned between client and server
expect ( await page . $eval ( 'h1' , e = > getComputedStyle ( e ) . color ) ) . toBe ( 'rgb(255, 192, 203)' )
await expectNoClientErrors ( '/tree-shake' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2023-03-07 09:30:05 +00:00
} )
} )
2022-07-07 16:04:38 +00:00
describe ( 'server tree shaking' , ( ) = > {
it ( 'should work' , async ( ) = > {
const html = await $fetch ( '/client' )
expect ( html ) . toContain ( 'This page should not crash when rendered' )
2023-02-08 08:59:57 +00:00
expect ( html ) . toContain ( 'fallback for ClientOnly' )
expect ( html ) . not . toContain ( 'rendered client-side' )
expect ( html ) . not . toContain ( 'id="client-side"' )
const page = await createPage ( '/client' )
await page . waitForLoadState ( 'networkidle' )
// ensure scoped classes are correctly assigned between client and server
expect ( await page . $eval ( '.red' , e = > getComputedStyle ( e ) . color ) ) . toBe ( 'rgb(255, 0, 0)' )
expect ( await page . $eval ( '.blue' , e = > getComputedStyle ( e ) . color ) ) . toBe ( 'rgb(0, 0, 255)' )
expect ( await page . locator ( '#client-side' ) . textContent ( ) ) . toContain ( 'This should be rendered client-side' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-07-07 16:04:38 +00:00
} )
} )
2022-03-22 18:12:54 +00:00
describe ( 'extends support' , ( ) = > {
2022-03-24 12:33:42 +00:00
describe ( 'layouts & pages' , ( ) = > {
it ( 'extends foo/layouts/default & foo/pages/index' , async ( ) = > {
2022-03-22 18:12:54 +00:00
const html = await $fetch ( '/foo' )
2022-03-24 12:33:42 +00:00
expect ( html ) . toContain ( 'Extended layout from foo' )
expect ( html ) . toContain ( 'Extended page from foo' )
2022-03-22 18:12:54 +00:00
} )
2022-03-24 12:33:42 +00:00
it ( 'extends [bar/layouts/override & bar/pages/override] over [foo/layouts/override & foo/pages/override]' , async ( ) = > {
2022-03-22 18:12:54 +00:00
const html = await $fetch ( '/override' )
2022-03-24 12:33:42 +00:00
expect ( html ) . toContain ( 'Extended layout from bar' )
2022-03-22 18:12:54 +00:00
expect ( html ) . toContain ( 'Extended page from bar' )
2022-03-08 18:03:21 +00:00
} )
2022-02-18 18:14:57 +00:00
} )
2022-03-17 22:17:59 +00:00
2022-03-24 12:33:42 +00:00
describe ( 'components' , ( ) = > {
it ( 'extends foo/components/ExtendsFoo' , async ( ) = > {
const html = await $fetch ( '/foo' )
expect ( html ) . toContain ( 'Extended component from foo' )
} )
it ( 'extends bar/components/ExtendsOverride over foo/components/ExtendsOverride' , async ( ) = > {
const html = await $fetch ( '/override' )
expect ( html ) . toContain ( 'Extended component from bar' )
} )
} )
2022-03-22 18:12:54 +00:00
describe ( 'middlewares' , ( ) = > {
2023-04-03 13:18:24 +00:00
it ( 'works with layer aliases' , async ( ) = > {
const html = await $fetch ( '/foo' )
expect ( html ) . toContain ( 'from layer alias' )
} )
2022-03-22 18:12:54 +00:00
it ( 'extends foo/middleware/foo' , async ( ) = > {
2022-03-24 12:33:42 +00:00
const html = await $fetch ( '/foo' )
expect ( html ) . toContain ( 'Middleware | foo: Injected by extended middleware from foo' )
} )
it ( 'extends bar/middleware/override over foo/middleware/override' , async ( ) = > {
const html = await $fetch ( '/override' )
expect ( html ) . toContain ( 'Middleware | override: Injected by extended middleware from bar' )
} )
} )
describe ( 'composables' , ( ) = > {
it ( 'extends foo/composables/foo' , async ( ) = > {
const html = await $fetch ( '/foo' )
expect ( html ) . toContain ( 'Composable | useExtendsFoo: foo' )
} )
2023-01-14 01:14:24 +00:00
it ( 'allows overriding composables' , async ( ) = > {
const html = await $fetch ( '/extends' )
expect ( html ) . toContain ( 'test from project' )
} )
2022-03-24 12:33:42 +00:00
} )
describe ( 'plugins' , ( ) = > {
it ( 'extends foo/plugins/foo' , async ( ) = > {
const html = await $fetch ( '/foo' )
expect ( html ) . toContain ( 'Plugin | foo: String generated from foo plugin!' )
} )
} )
describe ( 'server' , ( ) = > {
it ( 'extends foo/server/api/foo' , async ( ) = > {
expect ( await $fetch ( '/api/foo' ) ) . toBe ( 'foo' )
2022-03-22 18:12:54 +00:00
} )
2022-03-17 22:17:59 +00:00
2022-03-24 12:33:42 +00:00
it ( 'extends foo/server/middleware/foo' , async ( ) = > {
const { headers } = await fetch ( '/' )
expect ( headers . get ( 'injected-header' ) ) . toEqual ( 'foo' )
2022-03-17 22:17:59 +00:00
} )
} )
2022-04-04 08:23:11 +00:00
describe ( 'app' , ( ) = > {
it ( 'extends foo/app/router.options & bar/app/router.options' , async ( ) = > {
const html : string = await $fetch ( '/' )
2022-08-26 15:47:29 +00:00
const routerLinkClasses = html . match ( /href="\/" class="([^"]*)"/ ) ? . [ 1 ] . split ( ' ' )
2022-04-04 08:23:11 +00:00
expect ( routerLinkClasses ) . toContain ( 'foo-active-class' )
expect ( routerLinkClasses ) . toContain ( 'bar-exact-active-class' )
} )
} )
2022-03-23 14:57:35 +00:00
} )
2022-03-22 15:51:26 +00:00
2022-10-08 14:18:57 +00:00
// Bug #7337
describe ( 'deferred app suspense resolve' , ( ) = > {
async function behaviour ( path : string ) {
await withLogs ( async ( page , logs ) = > {
await page . goto ( url ( path ) )
await page . waitForLoadState ( 'networkidle' )
// Wait for all pending micro ticks to be cleared in case hydration haven't finished yet.
2023-02-13 22:09:32 +00:00
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
2022-10-08 14:18:57 +00:00
const hydrationLogs = logs . filter ( log = > log . includes ( 'isHydrating' ) )
expect ( hydrationLogs . length ) . toBe ( 3 )
expect ( hydrationLogs . every ( log = > log === 'isHydrating: true' ) )
} )
}
it ( 'should wait for all suspense instance on initial hydration' , async ( ) = > {
await behaviour ( '/async-parent/child' )
} )
it ( 'should wait for all suspense instance on initial hydration' , async ( ) = > {
await behaviour ( '/internal-layout/async-parent/child' )
} )
} )
2023-05-11 17:57:18 +00:00
describe ( 'nested suspense' , ( ) = > {
const navigations = [
[ '/suspense/sync-1/async-1/' , '/suspense/sync-2/async-1/' ] ,
[ '/suspense/sync-1/sync-1/' , '/suspense/sync-2/async-1/' ] ,
[ '/suspense/async-1/async-1/' , '/suspense/async-2/async-1/' ] ,
[ '/suspense/async-1/sync-1/' , '/suspense/async-2/async-1/' ]
]
it . each ( navigations ) ( 'should navigate from %s to %s with no white flash' , async ( start , nav ) = > {
const page = await createPage ( start , { } )
await page . waitForLoadState ( 'networkidle' )
const slug = nav . replace ( /[/-]+/g , '-' )
await page . click ( ` [href^=" ${ nav } "] ` )
const text = await page . waitForFunction ( slug = > document . querySelector ( ` # ${ slug } ` ) ? . innerHTML , slug )
// @ts-expect-error TODO: fix upstream in playwright - types for evaluate are broken
. then ( r = > r . evaluate ( r = > r ) )
// expect(text).toMatchInlineSnapshot()
// const parent = await page.waitForSelector(`#${slug}`, { state: 'attached' })
// const text = await parent.innerText()
expect ( text ) . toContain ( 'Async child: 2 - 1' )
await page . close ( )
} )
} )
2022-10-08 14:18:57 +00:00
// Bug #6592
describe ( 'page key' , ( ) = > {
it ( 'should not cause run of setup if navigation not change page key and layout' , async ( ) = > {
async function behaviour ( path : string ) {
await withLogs ( async ( page , logs ) = > {
await page . goto ( url ( ` ${ path } /0 ` ) )
await page . waitForLoadState ( 'networkidle' )
await page . click ( ` [href=" ${ path } /1"] ` )
await page . waitForSelector ( '#page-1' )
// Wait for all pending micro ticks to be cleared,
// so we are not resolved too early when there are repeated page loading
2023-02-13 22:09:32 +00:00
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
2022-10-08 14:18:57 +00:00
expect ( logs . filter ( l = > l . includes ( 'Child Setup' ) ) . length ) . toBe ( 1 )
} )
}
await behaviour ( '/fixed-keyed-child-parent' )
await behaviour ( '/internal-layout/fixed-keyed-child-parent' )
} )
it ( 'will cause run of setup if navigation changed page key' , async ( ) = > {
async function behaviour ( path : string ) {
await withLogs ( async ( page , logs ) = > {
await page . goto ( url ( ` ${ path } /0 ` ) )
await page . waitForLoadState ( 'networkidle' )
await page . click ( ` [href=" ${ path } /1"] ` )
await page . waitForSelector ( '#page-1' )
// Wait for all pending micro ticks to be cleared,
// so we are not resolved too early when there are repeated page loading
2023-02-13 22:09:32 +00:00
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
2022-10-08 14:18:57 +00:00
expect ( logs . filter ( l = > l . includes ( 'Child Setup' ) ) . length ) . toBe ( 2 )
} )
}
await behaviour ( '/keyed-child-parent' )
await behaviour ( '/internal-layout/keyed-child-parent' )
} )
} )
// Bug #6592
describe ( 'layout change not load page twice' , ( ) = > {
async function behaviour ( path1 : string , path2 : string ) {
await withLogs ( async ( page , logs ) = > {
await page . goto ( url ( path1 ) )
await page . waitForLoadState ( 'networkidle' )
await page . click ( ` [href=" ${ path2 } "] ` )
await page . waitForSelector ( '#with-layout2' )
// Wait for all pending micro ticks to be cleared,
// so we are not resolved too early when there are repeated page loading
2023-02-13 22:09:32 +00:00
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
2022-10-08 14:18:57 +00:00
expect ( logs . filter ( l = > l . includes ( 'Layout2 Page Setup' ) ) . length ) . toBe ( 1 )
} )
}
it ( 'should not cause run of page setup to repeat if layout changed' , async ( ) = > {
await behaviour ( '/with-layout' , '/with-layout2' )
await behaviour ( '/internal-layout/with-layout' , '/internal-layout/with-layout2' )
} )
} )
2022-07-07 16:26:04 +00:00
describe ( 'automatically keyed composables' , ( ) = > {
it ( 'should automatically generate keys' , async ( ) = > {
const html = await $fetch ( '/keyed-composables' )
expect ( html ) . toContain ( 'true' )
expect ( html ) . not . toContain ( 'false' )
} )
2022-08-05 11:02:20 +00:00
it ( 'should match server-generated keys' , async ( ) = > {
await expectNoClientErrors ( '/keyed-composables' )
} )
2022-07-07 16:26:04 +00:00
} )
2023-02-13 22:09:32 +00:00
describe . skipIf ( isDev ( ) || isWebpack ) ( 'inlining component styles' , ( ) = > {
2022-09-07 09:55:03 +00:00
it ( 'should inline styles' , async ( ) = > {
const html = await $fetch ( '/styles' )
for ( const style of [
'{--assets:"assets"}' , // <script>
'{--scoped:"scoped"}' , // <style lang=css>
2022-11-03 19:17:43 +00:00
'{--postcss:"postcss"}' // <style lang=postcss>
2022-09-07 09:55:03 +00:00
] ) {
expect ( html ) . toContain ( style )
}
} )
2022-09-07 08:41:08 +00:00
2022-11-03 19:17:43 +00:00
it ( 'does not load stylesheet for page styles' , async ( ) = > {
2022-09-07 09:55:03 +00:00
const html : string = await $fetch ( '/styles' )
2022-11-02 10:28:41 +00:00
expect ( html . match ( /<link [^>]*href="[^"]*\.css">/g ) ? . filter ( m = > m . includes ( 'entry' ) ) ? . map ( m = > m . replace ( /\.[^.]*\.css/ , '.css' ) ) ) . toMatchInlineSnapshot ( `
[
2022-11-03 19:17:43 +00:00
"<link rel=\\" preload \ \ " as=\\" style \ \ " href=\\" / _nuxt / entry . css \ \ ">" ,
"<link rel=\\" stylesheet \ \ " href=\\" / _nuxt / entry . css \ \ ">" ,
2022-11-02 10:28:41 +00:00
]
` )
2022-09-07 09:55:03 +00:00
} )
2022-09-07 08:41:08 +00:00
2022-10-18 16:13:50 +00:00
it ( 'still downloads client-only styles' , async ( ) = > {
2022-09-07 09:55:03 +00:00
const page = await createPage ( '/styles' )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . $eval ( '.client-only-css' , e = > getComputedStyle ( e ) . color ) ) . toBe ( 'rgb(50, 50, 50)' )
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-09-07 09:55:03 +00:00
} )
2022-09-07 08:41:08 +00:00
2022-09-07 09:55:03 +00:00
it . todo ( 'renders client-only styles only' , async ( ) = > {
const html = await $fetch ( '/styles' )
expect ( html ) . toContain ( '{--client-only:"client-only"}' )
2022-09-03 13:03:30 +00:00
} )
2022-09-07 09:55:03 +00:00
} )
2022-09-03 13:03:30 +00:00
2022-08-23 19:12:22 +00:00
describe ( 'prefetching' , ( ) = > {
it ( 'should prefetch components' , async ( ) = > {
await expectNoClientErrors ( '/prefetch/components' )
} )
2022-08-30 14:41:11 +00:00
it ( 'should not prefetch certain dynamic imports by default' , async ( ) = > {
const html = await $fetch ( '/auth' )
// should not prefetch global components
expect ( html ) . not . toMatch ( /<link [^>]*\/_nuxt\/TestGlobal[^>]*\.js"/ )
// should not prefetch all other pages
expect ( html ) . not . toMatch ( /<link [^>]*\/_nuxt\/navigate-to[^>]*\.js"/ )
} )
2022-08-23 19:12:22 +00:00
} )
2023-02-14 00:02:41 +00:00
// TODO: make test less flakey on Windows
describe . runIf ( isDev ( ) && ( ! isWindows || ! isCI ) ) ( 'detecting invalid root nodes' , ( ) = > {
2023-02-13 22:09:32 +00:00
it . each ( [ '1' , '2' , '3' , '4' ] ) ( 'should detect invalid root nodes in pages (\'/invalid-root/%s\')' , async ( path ) = > {
const { consoleLogs , page } = await renderPage ( joinURL ( '/invalid-root' , path ) )
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
await expectWithPolling (
( ) = > consoleLogs
. map ( w = > w . text ) . join ( '\n' )
. includes ( 'does not have a single root node and will cause errors when navigating between routes' ) ,
true
)
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-09-07 09:55:03 +00:00
} )
2022-08-23 10:25:48 +00:00
2023-02-13 22:09:32 +00:00
it . each ( [ 'fine' ] ) ( 'should not complain if there is no transition (%s)' , async ( path ) = > {
const { consoleLogs , page } = await renderPage ( joinURL ( '/invalid-root' , path ) )
await page . evaluate ( ( ) = > new Promise ( resolve = > setTimeout ( resolve , 10 ) ) )
2022-08-23 10:25:48 +00:00
2023-02-13 22:09:32 +00:00
const consoleLogsWarns = consoleLogs . filter ( i = > i . type === 'warning' )
expect ( consoleLogsWarns . length ) . toEqual ( 0 )
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-08-23 10:25:48 +00:00
} )
2022-09-07 09:55:03 +00:00
} )
2022-08-23 10:25:48 +00:00
2022-09-07 10:41:25 +00:00
// TODO: dynamic paths in dev
2023-02-13 22:09:32 +00:00
describe . skipIf ( isDev ( ) ) ( 'dynamic paths' , ( ) = > {
2022-03-23 14:57:35 +00:00
it ( 'should work with no overrides' , async ( ) = > {
2022-08-26 15:47:29 +00:00
const html : string = await $fetch ( '/assets' )
2022-09-03 13:03:30 +00:00
for ( const match of html . matchAll ( /(href|src)="(.*?)"|url\(([^)]*?)\)/g ) ) {
const url = match [ 2 ] || match [ 3 ]
2022-03-23 14:57:35 +00:00
expect ( url . startsWith ( '/_nuxt/' ) || url === '/public.svg' ) . toBeTruthy ( )
}
} )
2023-01-13 15:00:57 +00:00
// webpack injects CSS differently
2023-02-13 22:09:32 +00:00
it . skipIf ( isWebpack ) ( 'adds relative paths to CSS' , async ( ) = > {
2022-08-26 15:47:29 +00:00
const html : string = await $fetch ( '/assets' )
2022-09-03 13:03:30 +00:00
const urls = Array . from ( html . matchAll ( /(href|src)="(.*?)"|url\(([^)]*?)\)/g ) ) . map ( m = > m [ 2 ] || m [ 3 ] )
2022-08-05 16:35:38 +00:00
const cssURL = urls . find ( u = > /_nuxt\/assets.*\.css$/ . test ( u ) )
2022-04-07 19:15:30 +00:00
expect ( cssURL ) . toBeDefined ( )
2022-08-26 15:47:29 +00:00
const css : string = await $fetch ( cssURL ! )
2022-03-23 14:57:35 +00:00
const imageUrls = Array . from ( css . matchAll ( /url\(([^)]*)\)/g ) ) . map ( m = > m [ 1 ] . replace ( /[-.][\w]{8}\./g , '.' ) )
expect ( imageUrls ) . toMatchInlineSnapshot ( `
2022-03-22 15:51:26 +00:00
[
"./logo.svg" ,
"../public.svg" ,
2022-06-10 15:17:11 +00:00
"../public.svg" ,
"../public.svg" ,
2022-03-22 15:51:26 +00:00
]
` )
2022-03-23 14:57:35 +00:00
} )
2022-03-22 15:51:26 +00:00
2022-03-23 14:57:35 +00:00
it ( 'should allow setting base URL and build assets directory' , async ( ) = > {
process . env . NUXT_APP_BUILD_ASSETS_DIR = '/_other/'
process . env . NUXT_APP_BASE_URL = '/foo/'
await startServer ( )
2022-03-22 15:51:26 +00:00
2022-04-07 11:28:04 +00:00
const html = await $fetch ( '/foo/assets' )
2022-09-03 13:03:30 +00:00
for ( const match of html . matchAll ( /(href|src)="(.*?)"|url\(([^)]*?)\)/g ) ) {
const url = match [ 2 ] || match [ 3 ]
2022-07-25 09:52:21 +00:00
expect (
url . startsWith ( '/foo/_other/' ) ||
url === '/foo/public.svg' ||
// TODO: webpack does not yet support dynamic static paths
2023-02-13 22:09:32 +00:00
( isWebpack && url === '/public.svg' )
2022-07-25 09:52:21 +00:00
) . toBeTruthy ( )
}
} )
it ( 'should allow setting relative baseURL' , async ( ) = > {
delete process . env . NUXT_APP_BUILD_ASSETS_DIR
process . env . NUXT_APP_BASE_URL = './'
await startServer ( )
const html = await $fetch ( '/assets' )
2022-09-03 13:03:30 +00:00
for ( const match of html . matchAll ( /(href|src)="(.*?)"|url\(([^)]*?)\)/g ) ) {
const url = match [ 2 ] || match [ 3 ]
2022-07-25 09:52:21 +00:00
expect (
url . startsWith ( './_nuxt/' ) ||
url === './public.svg' ||
// TODO: webpack does not yet support dynamic static paths
2023-02-13 22:09:32 +00:00
( isWebpack && url === '/public.svg' )
2022-07-25 09:52:21 +00:00
) . toBeTruthy ( )
expect ( url . startsWith ( './_nuxt/_nuxt' ) ) . toBeFalsy ( )
2022-03-23 14:57:35 +00:00
}
} )
2022-05-11 17:33:29 +00:00
it ( 'should use baseURL when redirecting' , async ( ) = > {
process . env . NUXT_APP_BUILD_ASSETS_DIR = '/_other/'
process . env . NUXT_APP_BASE_URL = '/foo/'
await startServer ( )
const { headers } = await fetch ( '/foo/navigate-to/' , { redirect : 'manual' } )
expect ( headers . get ( 'location' ) ) . toEqual ( '/foo/' )
} )
2022-03-23 14:57:35 +00:00
it ( 'should allow setting CDN URL' , async ( ) = > {
process . env . NUXT_APP_BASE_URL = '/foo/'
process . env . NUXT_APP_CDN_URL = 'https://example.com/'
process . env . NUXT_APP_BUILD_ASSETS_DIR = '/_cdn/'
await startServer ( )
2022-04-07 11:28:04 +00:00
const html = await $fetch ( '/foo/assets' )
2022-09-03 13:03:30 +00:00
for ( const match of html . matchAll ( /(href|src)="(.*?)"|url\(([^)]*?)\)/g ) ) {
const url = match [ 2 ] || match [ 3 ]
2022-07-25 09:52:21 +00:00
expect (
url . startsWith ( 'https://example.com/_cdn/' ) ||
url === 'https://example.com/public.svg' ||
// TODO: webpack does not yet support dynamic static paths
2023-02-13 22:09:32 +00:00
( isWebpack && url === '/public.svg' )
2022-07-25 09:52:21 +00:00
) . toBeTruthy ( )
2022-03-23 14:57:35 +00:00
}
2022-03-22 15:51:26 +00:00
} )
2022-08-17 15:23:13 +00:00
it ( 'restore server' , async ( ) = > {
process . env . NUXT_APP_BASE_URL = undefined
process . env . NUXT_APP_CDN_URL = undefined
process . env . NUXT_APP_BUILD_ASSETS_DIR = undefined
await startServer ( )
} )
} )
describe ( 'app config' , ( ) = > {
it ( 'should work' , async ( ) = > {
const html = await $fetch ( '/app-config' )
const expectedAppConfig = {
fromNuxtConfig : true ,
nested : {
val : 2
} ,
fromLayer : true ,
userConfig : 123
}
expect ( html ) . toContain ( JSON . stringify ( expectedAppConfig ) )
2023-03-14 09:54:59 +00:00
const serverAppConfig = await $fetch ( '/api/app-config' )
expect ( serverAppConfig ) . toMatchObject ( { appConfig : expectedAppConfig } )
2022-08-17 15:23:13 +00:00
} )
2022-02-18 18:14:57 +00:00
} )
2022-08-30 10:34:09 +00:00
2022-11-24 12:24:14 +00:00
describe ( 'component islands' , ( ) = > {
it ( 'renders components with route' , async ( ) = > {
const result : NuxtIslandResponse = await $fetch ( '/__nuxt_island/RouteComponent?url=/foo' )
2023-02-13 22:09:32 +00:00
if ( isDev ( ) ) {
2023-04-20 21:41:20 +00:00
result . head . link = result . head . link . filter ( l = > ! l . href . includes ( '@nuxt+ui-templates' ) && ( l . href . startsWith ( '_nuxt/components/islands/' ) && l . href . includes ( '_nuxt/components/islands/RouteComponent' ) ) )
2022-11-24 12:24:14 +00:00
}
expect ( result ) . toMatchInlineSnapshot ( `
{
"head" : {
"link" : [ ] ,
"style" : [ ] ,
} ,
2023-05-15 22:43:53 +00:00
"html" : " < pre nuxt - ssr - component - uid > Route : / f o o
2022-11-24 12:24:14 +00:00
< / pre > " ,
"state" : { } ,
}
` )
} )
2023-03-20 21:47:06 +00:00
it ( 'render async component' , async ( ) = > {
const result : NuxtIslandResponse = await $fetch ( withQuery ( '/__nuxt_island/LongAsyncComponent' , {
props : JSON.stringify ( {
count : 3
} )
} ) )
if ( isDev ( ) ) {
2023-04-20 21:41:20 +00:00
result . head . link = result . head . link . filter ( l = > ! l . href . includes ( '@nuxt+ui-templates' ) && ( l . href . startsWith ( '_nuxt/components/islands/' ) && l . href . includes ( '_nuxt/components/islands/LongAsyncComponent' ) ) )
2023-03-20 21:47:06 +00:00
}
expect ( result ) . toMatchInlineSnapshot ( `
{
"head" : {
"link" : [ ] ,
"style" : [ ] ,
} ,
2023-05-15 22:43:53 +00:00
"html" : "<div nuxt-ssr-component-uid><div> count is above 2 </div><div style=\\" display :contents ; \ \ " nuxt-ssr-slot-name=\\" default \ \ "></div> that was very long ... <div id=\\" long - async - component - count \ \ ">3</div><div style=\\" display :contents ; \ \ " nuxt-ssr-slot-name=\\" test \ \ " nuxt-ssr-slot-data=\\" [ { & quot ; count & quot ; : 3 } ] \ \ "></div><p>hello world !!!</p><div style=\\" display :contents ; \ \ " nuxt-ssr-slot-name=\\" hello \ \ " nuxt-ssr-slot-data=\\" [ { & quot ; t & quot ; : 0 } , { & quot ; t & quot ; : 1 } , { & quot ; t & quot ; : 2 } ] \ \ "><div nuxt-slot-fallback-start=\\" hello \ \ "></div><!--[--><div style=\\" display :contents ; \ \ "><div> fallback slot -- index: 0</div></div><div style=\\" display :contents ; \ \ "><div> fallback slot -- index: 1</div></div><div style=\\" display :contents ; \ \ "><div> fallback slot -- index: 2</div></div><!--]--><div nuxt-slot-fallback-end></div></div><div style=\\" display :contents ; \ \ " nuxt-ssr-slot-name=\\" fallback \ \ " nuxt-ssr-slot-data=\\" [ { & quot ; t & quot ; : & quot ; fall & quot ; } , { & quot ; t & quot ; : & quot ; back & quot ; } ] \ \ "><div nuxt-slot-fallback-start=\\" fallback \ \ "></div><!--[--><div style=\\" display :contents ; \ \ "><div>fall slot -- index: 0</div><div class=\\" fallback - slot - content \ \ "> wonderful fallback </div></div><div style=\\" display :contents ; \ \ "><div>back slot -- index: 1</div><div class=\\" fallback - slot - content \ \ "> wonderful fallback </div></div><!--]--><div nuxt-slot-fallback-end></div></div></div>" ,
2023-03-20 21:47:06 +00:00
"state" : { } ,
}
` )
} )
it ( 'render .server async component' , async ( ) = > {
const result : NuxtIslandResponse = await $fetch ( withQuery ( '/__nuxt_island/AsyncServerComponent' , {
props : JSON.stringify ( {
count : 2
} )
} ) )
if ( isDev ( ) ) {
2023-04-20 21:41:20 +00:00
result . head . link = result . head . link . filter ( l = > ! l . href . includes ( '@nuxt+ui-templates' ) && ( l . href . startsWith ( '_nuxt/components/islands/' ) && l . href . includes ( '_nuxt/components/islands/AsyncServerComponent' ) ) )
2023-03-20 21:47:06 +00:00
}
expect ( result ) . toMatchInlineSnapshot ( `
2023-05-15 22:43:53 +00:00
{
"head" : {
"link" : [ ] ,
"style" : [ ] ,
} ,
"html" : "<div nuxt-ssr-component-uid> This is a .server (20ms) async component that was very long ... <div id=\\" async - server - component - count \ \ ">2</div><div style=\\" display :contents ; \ \ " nuxt-ssr-slot-name=\\" default \ \ "></div></div>" ,
"state" : { } ,
}
` )
2023-03-20 21:47:06 +00:00
} )
2022-11-24 12:24:14 +00:00
it ( 'renders pure components' , async ( ) = > {
const result : NuxtIslandResponse = await $fetch ( withQuery ( '/__nuxt_island/PureComponent' , {
props : JSON.stringify ( {
bool : false ,
number : 3487 ,
str : 'something' ,
obj : { foo : 42 , bar : false , me : 'hi' }
} )
} ) )
2023-05-15 22:43:53 +00:00
result . html = result . html . replace ( / nuxt-ssr-component-uid="([^"]*)"/g , '' )
2022-11-24 12:24:14 +00:00
2023-02-13 22:09:32 +00:00
if ( isDev ( ) ) {
2022-11-24 12:24:14 +00:00
result . head . link = result . head . link . filter ( l = > ! l . href . includes ( '@nuxt+ui-templates' ) )
2022-12-08 15:16:22 +00:00
const fixtureDir = normalize ( fileURLToPath ( new URL ( './fixtures/basic' , import . meta . url ) ) )
for ( const link of result . head . link ) {
link . href = link . href . replace ( fixtureDir , '/<rootDir>' ) . replaceAll ( '//' , '/' )
link . key = link . key . replace ( /-[a-zA-Z0-9]+$/ , '' )
}
2022-11-24 12:24:14 +00:00
}
result . head . style = result . head . style . map ( s = > ( {
. . . s ,
innerHTML : ( s . innerHTML || '' ) . replace ( /data-v-[a-z0-9]+/ , 'data-v-xxxxx' ) ,
key : s.key.replace ( /-[a-zA-Z0-9]+$/ , '' )
} ) )
2023-02-13 22:09:32 +00:00
// TODO: fix rendering of styles in webpack
if ( ! isDev ( ) && ! isWebpack ) {
2022-11-24 12:24:14 +00:00
expect ( result . head ) . toMatchInlineSnapshot ( `
{
"link" : [ ] ,
"style" : [
{
"innerHTML" : "pre[data-v-xxxxx]{color:blue}" ,
"key" : "island-style" ,
} ,
] ,
}
2023-05-15 22:43:53 +00:00
` )
2023-02-13 22:09:32 +00:00
} else if ( isDev ( ) && ! isWebpack ) {
2022-11-24 12:24:14 +00:00
expect ( result . head ) . toMatchInlineSnapshot ( `
{
"link" : [
{
"href" : "/_nuxt/components/islands/PureComponent.vue?vue&type=style&index=0&scoped=c0c0cf89&lang.css" ,
2022-12-08 15:16:22 +00:00
"key" : "island-link" ,
"rel" : "stylesheet" ,
} ,
2022-11-24 12:24:14 +00:00
] ,
"style" : [ ] ,
}
` )
}
expect ( result . html . replace ( /data-v-\w+|"|<!--.*-->/g , '' ) ) . toMatchInlineSnapshot ( `
2023-05-15 22:43:53 +00:00
" < div nuxt - ssr - component - uid > Was router enabled : true < br > Props : < pre > {
number : 3487 ,
str : something ,
obj : {
foo : 42 ,
bar : false ,
me : hi
} ,
bool : false
} < / pre > < / div > "
` )
2022-11-24 12:24:14 +00:00
expect ( result . state ) . toMatchInlineSnapshot ( `
{
"$shasRouter" : true ,
}
` )
} )
2023-05-15 22:43:53 +00:00
it ( 'test client-side navigation' , async ( ) = > {
const page = await createPage ( '/' )
await page . waitForLoadState ( 'networkidle' )
await page . click ( '#islands' )
await page . waitForLoadState ( 'networkidle' )
await page . locator ( '#increase-pure-component' ) . click ( )
await page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/' ) && response . status ( ) === 200 )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . locator ( '#slot-in-server' ) . first ( ) . innerHTML ( ) ) . toContain ( 'Slot with in .server component' )
expect ( await page . locator ( '#test-slot' ) . first ( ) . innerHTML ( ) ) . toContain ( 'Slot with name test' )
// test islands update
expect ( await page . locator ( '.box' ) . innerHTML ( ) ) . toContain ( '"number": 101,' )
await page . locator ( '#update-server-components' ) . click ( )
await Promise . all ( [
page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/LongAsyncComponent' ) && response . status ( ) === 200 ) ,
page . waitForResponse ( response = > response . url ( ) . includes ( '/__nuxt_island/AsyncServerComponent' ) && response . status ( ) === 200 )
] )
await page . waitForLoadState ( 'networkidle' )
expect ( await page . locator ( '#async-server-component-count' ) . innerHTML ( ) ) . toContain ( ( '1' ) )
expect ( await page . locator ( '#long-async-component-count' ) . innerHTML ( ) ) . toContain ( '1' )
// test islands slots interactivity
await page . locator ( '#first-sugar-counter button' ) . click ( )
expect ( await page . locator ( '#first-sugar-counter' ) . innerHTML ( ) ) . toContain ( 'Sugar Counter 13' )
} )
2022-11-24 12:24:14 +00:00
} )
2023-02-13 22:09:32 +00:00
describe . runIf ( isDev ( ) && ! isWebpack ) ( 'vite plugins' , ( ) = > {
2023-01-16 16:04:16 +00:00
it ( 'does not override vite plugins' , async ( ) = > {
expect ( await $fetch ( '/vite-plugin-without-path' ) ) . toBe ( 'vite-plugin without path' )
expect ( await $fetch ( '/__nuxt-test' ) ) . toBe ( 'vite-plugin with __nuxt prefix' )
} )
it ( 'does not allow direct access to nuxt source folder' , async ( ) = > {
2023-02-16 12:56:14 +00:00
expect ( await $fetch ( '/app.config' ) ) . toContain ( 'catchall at' )
2023-01-16 16:04:16 +00:00
} )
} )
2023-04-11 22:57:12 +00:00
describe . skipIf ( isDev ( ) || isWindows || ! isRenderingJson ) ( 'payload rendering' , ( ) = > {
2022-09-10 13:57:16 +00:00
it ( 'renders a payload' , async ( ) = > {
2023-04-07 10:34:35 +00:00
const payload = await $fetch ( '/random/a/_payload.json' , { responseType : 'text' } )
const data = parsePayload ( payload )
expect ( typeof data . prerenderedAt ) . toEqual ( 'number' )
expect ( data . data ) . toMatchObject ( {
hey : {
baz : 'qux' ,
foo : 'bar'
} ,
rand_a : expect.arrayContaining ( [ expect . anything ( ) ] )
} )
2022-09-10 13:57:16 +00:00
} )
it ( 'does not fetch a prefetched payload' , async ( ) = > {
const page = await createPage ( )
const requests = [ ] as string [ ]
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
page . on ( 'request' , ( req ) = > {
requests . push ( req . url ( ) . replace ( url ( '/' ) , '/' ) )
} )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
await page . goto ( url ( '/random/a' ) )
await page . waitForLoadState ( 'networkidle' )
// We are manually prefetching other payloads
2023-04-07 10:34:35 +00:00
expect ( requests ) . toContain ( '/random/c/_payload.json' )
2022-09-10 13:57:16 +00:00
// We are not triggering API requests in the payload
expect ( requests ) . not . toContain ( expect . stringContaining ( '/api/random' ) )
2023-01-20 12:10:58 +00:00
expect ( requests ) . not . toContain ( expect . stringContaining ( '/__nuxt_island' ) )
2022-09-13 20:20:23 +00:00
// requests.length = 0
2022-09-10 13:57:16 +00:00
await page . click ( '[href="/random/b"]' )
await page . waitForLoadState ( 'networkidle' )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
// We are not triggering API requests in the payload in client-side nav
expect ( requests ) . not . toContain ( '/api/random' )
2023-01-20 12:10:58 +00:00
expect ( requests ) . not . toContain ( expect . stringContaining ( '/__nuxt_island' ) )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
// We are fetching a payload we did not prefetch
2023-04-07 10:34:35 +00:00
expect ( requests ) . toContain ( '/random/b/_payload.json' )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
// We are not refetching payloads we've already prefetched
2022-09-13 20:20:23 +00:00
// expect(requests.filter(p => p.includes('_payload')).length).toBe(1)
// requests.length = 0
2022-09-10 13:57:16 +00:00
await page . click ( '[href="/random/c"]' )
await page . waitForLoadState ( 'networkidle' )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
// We are not triggering API requests in the payload in client-side nav
expect ( requests ) . not . toContain ( '/api/random' )
2023-01-20 12:10:58 +00:00
expect ( requests ) . not . toContain ( expect . stringContaining ( '/__nuxt_island' ) )
2022-09-13 20:20:23 +00:00
2022-09-10 13:57:16 +00:00
// We are not refetching payloads we've already prefetched
// Note: we refetch on dev as urls differ between '' and '?import'
2023-02-13 22:09:32 +00:00
// expect(requests.filter(p => p.includes('_payload')).length).toBe(isDev() ? 1 : 0)
2023-03-09 13:54:46 +00:00
await page . close ( )
2022-09-10 13:57:16 +00:00
} )
} )
2022-09-14 15:11:00 +00:00
describe . skipIf ( isWindows ) ( 'useAsyncData' , ( ) = > {
2022-08-30 10:34:09 +00:00
it ( 'single request resolves' , async ( ) = > {
await expectNoClientErrors ( '/useAsyncData/single' )
} )
it ( 'two requests resolve' , async ( ) = > {
await expectNoClientErrors ( '/useAsyncData/double' )
} )
it ( 'two requests resolve and sync' , async ( ) = > {
await $fetch ( '/useAsyncData/refresh' )
} )
2022-10-10 10:33:16 +00:00
it ( 'requests can be cancelled/overridden' , async ( ) = > {
await expectNoClientErrors ( '/useAsyncData/override' )
} )
2022-08-30 10:34:09 +00:00
it ( 'two requests made at once resolve and sync' , async ( ) = > {
await expectNoClientErrors ( '/useAsyncData/promise-all' )
} )
} )
2023-04-06 12:07:22 +00:00
describe . runIf ( isDev ( ) ) ( 'component testing' , ( ) = > {
it ( 'should work' , async ( ) = > {
const comp1 = await $fetchComponent ( 'components/SugarCounter.vue' , { multiplier : 2 } )
expect ( comp1 ) . toContain ( '12 x 2 = 24' )
const comp2 = await $fetchComponent ( 'components/SugarCounter.vue' , { multiplier : 4 } )
expect ( comp2 ) . toContain ( '12 x 4 = 48' )
} )
} )