import { beforeEach } from 'node:test' import { describe, expect, it, vi } from 'vitest' import { h, nextTick } from 'vue' import { mountSuspended } from '@nuxt/test-utils/runtime' import { createServerComponent } from '../../packages/nuxt/src/components/runtime/server-component' import { createSimpleRemoteIslandProvider } from '../fixtures/remote-provider' import NuxtIsland from '../../packages/nuxt/src/app/components/nuxt-island' vi.mock('#build/nuxt.config.mjs', async (original) => { return { // @ts-expect-error virtual file ...(await original()), remoteComponentIslands: true, selectiveClient: true } }) vi.mock('vue', async (original) => { const vue = await original() return { ...vue, h: vi.fn(vue.h) } }) const consoleError = vi.spyOn(console, 'error') const consoleWarn = vi.spyOn(console, 'warn') function expectNoConsoleIssue () { expect(consoleError).not.toHaveBeenCalled() expect(consoleWarn).not.toHaveBeenCalled() } beforeEach(() => { consoleError.mockClear() consoleWarn.mockClear() }) describe('runtime server component', () => { it('expect no data-v- attrbutes #23051', () => { // @ts-expect-error mock vi.mocked(h).mockImplementation(() => null) // @ts-expect-error test setup createServerComponent('DummyName').setup!({ lazy: false }, { attrs: { 'data-v-123': '', test: 1 }, slots: {}, emit: vi.fn(), expose: vi.fn() })() expect(h).toHaveBeenCalledOnce() if (!vi.mocked(h).mock.lastCall) { throw new Error('no last call') } expect(vi.mocked(h).mock.lastCall![1]?.props).toBeTypeOf('object') expect(vi.mocked(h).mock.lastCall![1]?.props).toMatchInlineSnapshot(` { "data-v-123": "", "test": 1, } `) vi.mocked(h).mockRestore() }) it('expect remote island to be rendered', async () => { const server = createSimpleRemoteIslandProvider() const wrapper = await mountSuspended(NuxtIsland, { props: { name: 'Test', source: 'http://localhost:3001' } }) expect(wrapper.html()).toMatchInlineSnapshot('"
hello world from another server
"') await server.close() }) it('force refresh', async () => { let count = 0 const stubFetch = vi.fn(() => { count++ return { id: '123', html: `
${count}
`, state: {}, head: { link: [], style: [] }, json () { return this } } }) vi.stubGlobal('fetch', stubFetch) const component = await mountSuspended(createServerComponent('dummyName')) expect(fetch).toHaveBeenCalledOnce() expect(component.html()).toBe('
1
') await component.vm.$.exposed!.refresh() expect(fetch).toHaveBeenCalledTimes(2) await nextTick() expect(component.html()).toBe('
2
') vi.mocked(fetch).mockReset() }) it('expect NuxtIsland to emit an error', async () => { const stubFetch = vi.fn(() => { throw new Error('fetch error') }) vi.stubGlobal('fetch', stubFetch) const wrapper = await mountSuspended(createServerComponent('ErrorServerComponent'), { props: { name: 'Error', props: { force: true } }, attachTo: 'body' }) expect(fetch).toHaveBeenCalledOnce() expect(wrapper.emitted('error')).toHaveLength(1) vi.mocked(fetch).mockReset() }) }) describe('client components', () => { it('expect swapping nuxt-client should not trigger errors #25289', async () => { const mockPath = '/nuxt-client.js' const componentId = 'Client-12345' vi.doMock(mockPath, () => ({ default: { name: 'ClientComponent', setup () { return () => h('div', 'client component') } } })) const stubFetch = vi.fn(() => { return { id: '123', html: `
hello
`, state: {}, head: { link: [], style: [] }, components: { [componentId]: { html: '
fallback
', props: {}, chunk: mockPath } }, json () { return this } } }) vi.stubGlobal('fetch', stubFetch) const wrapper = await mountSuspended(NuxtIsland, { props: { name: 'NuxtClient', props: { force: true } }, attachTo: 'body' }) expect(fetch).toHaveBeenCalledOnce() expect(wrapper.html()).toMatchInlineSnapshot(` "
hello
client component
" `) // @ts-expect-error mock vi.mocked(fetch).mockImplementation(() => ({ id: '123', html: '
hello
fallback
', state: {}, head: { link: [], style: [] }, components: {}, json () { return this } })) await wrapper.vm.$.exposed!.refresh() await nextTick() expect(wrapper.html()).toMatchInlineSnapshot(` "
hello
fallback
" `) vi.mocked(fetch).mockReset() expectNoConsoleIssue() }) it('should not replace nested client components data-island-uid', async () => { const componentId = 'Client-12345' const stubFetch = vi.fn(() => { return { id: '1234', html: `
hello
`, state: {}, head: { link: [], style: [] }, json () { return this } } }) vi.stubGlobal('fetch', stubFetch) const wrapper = await mountSuspended(NuxtIsland, { props: { name: 'WithNestedClient', props: { force: true } }, attachTo: 'body' }) expect(fetch).toHaveBeenCalledOnce() expect(wrapper.html()).toContain('data-island-uid="not-to-be-replaced"') vi.mocked(fetch).mockReset() expectNoConsoleIssue() }) it('pass a slot to a client components within islands', async () => { const mockPath = '/nuxt-client-with-slot.js' const componentId = 'ClientWithSlot-12345' vi.doMock(mockPath, () => ({ default: { name: 'ClientWithSlot', setup (_, { slots }) { return () => h('div', { class: 'client-component' }, slots.default()) } } })) const stubFetch = vi.fn(() => { return { id: '123', html: `
hello
`, state: {}, head: { link: [], style: [] }, components: { [componentId]: { html: '
fallback
', props: {}, chunk: mockPath, slots: { default: '
slot in client component
' } } }, json () { return this } } }) vi.stubGlobal('fetch', stubFetch) const wrapper = await mountSuspended(NuxtIsland, { props: { name: 'NuxtClientWithSlot' }, attachTo: 'body' }) expect(fetch).toHaveBeenCalledOnce() expect(wrapper.html()).toMatchInlineSnapshot(` "
hello
slot in client component
" `) expectNoConsoleIssue() }) })