| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397 |
- /**
- * @vitest-environment jsdom
- */
- import {
- type ObjectDirective,
- Suspense,
- Teleport,
- Transition,
- type VNode,
- createBlock,
- createCommentVNode,
- createElementBlock,
- createElementVNode,
- createSSRApp,
- createStaticVNode,
- createTextVNode,
- createVNode,
- defineAsyncComponent,
- defineComponent,
- h,
- nextTick,
- onMounted,
- onServerPrefetch,
- openBlock,
- reactive,
- ref,
- renderSlot,
- useCssVars,
- vModelCheckbox,
- vShow,
- withCtx,
- withDirectives,
- } from '@vue/runtime-dom'
- import type { HMRRuntime } from '../src/hmr'
- import { type SSRContext, renderToString } from '@vue/server-renderer'
- import { PatchFlags, normalizeStyle } from '@vue/shared'
- import { vShowOriginalDisplay } from '../../runtime-dom/src/directives/vShow'
- declare var __VUE_HMR_RUNTIME__: HMRRuntime
- const { createRecord, reload } = __VUE_HMR_RUNTIME__
- function mountWithHydration(html: string, render: () => any) {
- const container = document.createElement('div')
- container.innerHTML = html
- const app = createSSRApp({
- render,
- })
- return {
- vnode: app.mount(container).$.subTree as VNode<Node, Element> & {
- el: Element
- },
- container,
- }
- }
- const triggerEvent = (type: string, el: Element) => {
- const event = new Event(type)
- el.dispatchEvent(event)
- }
- describe('SSR hydration', () => {
- beforeEach(() => {
- document.body.innerHTML = ''
- })
- test('text', async () => {
- const msg = ref('foo')
- const { vnode, container } = mountWithHydration('foo', () => msg.value)
- expect(vnode.el).toBe(container.firstChild)
- expect(container.textContent).toBe('foo')
- msg.value = 'bar'
- await nextTick()
- expect(container.textContent).toBe('bar')
- })
- test('empty text', async () => {
- const { container } = mountWithHydration('<div></div>', () =>
- h('div', createTextVNode('')),
- )
- expect(container.textContent).toBe('')
- expect(`Hydration children mismatch in <div>`).not.toHaveBeenWarned()
- })
- test('comment', () => {
- const { vnode, container } = mountWithHydration('<!---->', () => null)
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.el.nodeType).toBe(8) // comment
- })
- test('static', () => {
- const html = '<div><span>hello</span></div>'
- const { vnode, container } = mountWithHydration(html, () =>
- createStaticVNode('', 1),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.el.outerHTML).toBe(html)
- expect(vnode.anchor).toBe(container.firstChild)
- expect(vnode.children).toBe(html)
- })
- test('static (multiple elements)', () => {
- const staticContent = '<div></div><span>hello</span>'
- const html = `<div><div>hi</div>` + staticContent + `<div>ho</div></div>`
- const n1 = h('div', 'hi')
- const s = createStaticVNode('', 2)
- const n2 = h('div', 'ho')
- const { container } = mountWithHydration(html, () => h('div', [n1, s, n2]))
- const div = container.firstChild!
- expect(n1.el).toBe(div.firstChild)
- expect(n2.el).toBe(div.lastChild)
- expect(s.el).toBe(div.childNodes[1])
- expect(s.anchor).toBe(div.childNodes[2])
- expect(s.children).toBe(staticContent)
- })
- // #6008
- test('static (with text node as starting node)', () => {
- const html = ` A <span>foo</span> B`
- const { vnode, container } = mountWithHydration(html, () =>
- createStaticVNode(` A <span>foo</span> B`, 3),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.anchor).toBe(container.lastChild)
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('static with content adoption', () => {
- const html = ` A <span>foo</span> B`
- const { vnode, container } = mountWithHydration(html, () =>
- createStaticVNode(``, 3),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.anchor).toBe(container.lastChild)
- expect(vnode.children).toBe(html)
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('element with text children', async () => {
- const msg = ref('foo')
- const { vnode, container } = mountWithHydration(
- '<div class="foo">foo</div>',
- () => h('div', { class: msg.value }, msg.value),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(container.firstChild!.textContent).toBe('foo')
- msg.value = 'bar'
- await nextTick()
- expect(container.innerHTML).toBe(`<div class="bar">bar</div>`)
- })
- // #7285
- test('element with multiple continuous text vnodes', async () => {
- // should no mismatch warning
- const { container } = mountWithHydration('<div>foo0o</div>', () =>
- h('div', ['fo', createTextVNode('o'), 0, 'o']),
- )
- expect(container.textContent).toBe('foo0o')
- })
- test('element with elements children', async () => {
- const msg = ref('foo')
- const fn = vi.fn()
- const { vnode, container } = mountWithHydration(
- '<div><span>foo</span><span class="foo"></span></div>',
- () =>
- h('div', [
- h('span', msg.value),
- h('span', { class: msg.value, onClick: fn }),
- ]),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect((vnode.children as VNode[])[0].el).toBe(
- container.firstChild!.childNodes[0],
- )
- expect((vnode.children as VNode[])[1].el).toBe(
- container.firstChild!.childNodes[1],
- )
- // event handler
- triggerEvent('click', vnode.el.querySelector('.foo')!)
- expect(fn).toHaveBeenCalled()
- msg.value = 'bar'
- await nextTick()
- expect(vnode.el.innerHTML).toBe(`<span>bar</span><span class="bar"></span>`)
- })
- test('element with ref', () => {
- const el = ref()
- const { vnode, container } = mountWithHydration('<div></div>', () =>
- h('div', { ref: el }),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(el.value).toBe(vnode.el)
- })
- test('Fragment', async () => {
- const msg = ref('foo')
- const fn = vi.fn()
- const { vnode, container } = mountWithHydration(
- '<div><!--[--><span>foo</span><!--[--><span class="foo"></span><!--]--><!--]--></div>',
- () =>
- h('div', [
- [
- h('span', msg.value),
- [h('span', { class: msg.value, onClick: fn })],
- ],
- ]),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.el.innerHTML).toBe(
- `<!--[--><span>foo</span><!--[--><span class="foo"></span><!--]--><!--]-->`,
- )
- // start fragment 1
- const fragment1 = (vnode.children as VNode[])[0]
- expect(fragment1.el).toBe(vnode.el.childNodes[0])
- const fragment1Children = fragment1.children as VNode[]
- // first <span>
- expect(fragment1Children[0].el!.tagName).toBe('SPAN')
- expect(fragment1Children[0].el).toBe(vnode.el.childNodes[1])
- // start fragment 2
- const fragment2 = fragment1Children[1]
- expect(fragment2.el).toBe(vnode.el.childNodes[2])
- const fragment2Children = fragment2.children as VNode[]
- // second <span>
- expect(fragment2Children[0].el!.tagName).toBe('SPAN')
- expect(fragment2Children[0].el).toBe(vnode.el.childNodes[3])
- // end fragment 2
- expect(fragment2.anchor).toBe(vnode.el.childNodes[4])
- // end fragment 1
- expect(fragment1.anchor).toBe(vnode.el.childNodes[5])
- // event handler
- triggerEvent('click', vnode.el.querySelector('.foo')!)
- expect(fn).toHaveBeenCalled()
- msg.value = 'bar'
- await nextTick()
- expect(vnode.el.innerHTML).toBe(
- `<!--[--><span>bar</span><!--[--><span class="bar"></span><!--]--><!--]-->`,
- )
- })
- // #7285
- test('Fragment (multiple continuous text vnodes)', async () => {
- // should no mismatch warning
- const { container } = mountWithHydration('<!--[-->fooo<!--]-->', () => [
- 'fo',
- createTextVNode('o'),
- 'o',
- ])
- expect(container.textContent).toBe('fooo')
- })
- test('Teleport', async () => {
- const msg = ref('foo')
- const fn = vi.fn()
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport'
- teleportContainer.innerHTML = `<!--teleport start anchor--><span>foo</span><span class="foo"></span><!--teleport anchor-->`
- document.body.appendChild(teleportContainer)
- const { vnode, container } = mountWithHydration(
- '<!--teleport start--><!--teleport end-->',
- () =>
- h(Teleport, { to: '#teleport' }, [
- h('span', msg.value),
- h('span', { class: msg.value, onClick: fn }),
- ]),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.anchor).toBe(container.lastChild)
- expect(vnode.target).toBe(teleportContainer)
- expect(vnode.targetStart).toBe(teleportContainer.childNodes[0])
- expect((vnode.children as VNode[])[0].el).toBe(
- teleportContainer.childNodes[1],
- )
- expect((vnode.children as VNode[])[1].el).toBe(
- teleportContainer.childNodes[2],
- )
- expect(vnode.targetAnchor).toBe(teleportContainer.childNodes[3])
- // event handler
- triggerEvent('click', teleportContainer.querySelector('.foo')!)
- expect(fn).toHaveBeenCalled()
- msg.value = 'bar'
- await nextTick()
- expect(teleportContainer.innerHTML).toBe(
- `<!--teleport start anchor--><span>bar</span><span class="bar"></span><!--teleport anchor-->`,
- )
- })
- test('Teleport (multiple + integration)', async () => {
- const msg = ref('foo')
- const fn1 = vi.fn()
- const fn2 = vi.fn()
- const Comp = () => [
- h(Teleport, { to: '#teleport2' }, [
- h('span', msg.value),
- h('span', { class: msg.value, onClick: fn1 }),
- ]),
- h(Teleport, { to: '#teleport2' }, [
- h('span', msg.value + '2'),
- h('span', { class: msg.value + '2', onClick: fn2 }),
- ]),
- ]
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport2'
- const ctx: SSRContext = {}
- const mainHtml = await renderToString(h(Comp), ctx)
- expect(mainHtml).toMatchInlineSnapshot(
- `"<!--[--><!--teleport start--><!--teleport end--><!--teleport start--><!--teleport end--><!--]-->"`,
- )
- const teleportHtml = ctx.teleports!['#teleport2']
- expect(teleportHtml).toMatchInlineSnapshot(
- `"<!--teleport start anchor--><span>foo</span><span class="foo"></span><!--teleport anchor--><!--teleport start anchor--><span>foo2</span><span class="foo2"></span><!--teleport anchor-->"`,
- )
- teleportContainer.innerHTML = teleportHtml
- document.body.appendChild(teleportContainer)
- const { vnode, container } = mountWithHydration(mainHtml, Comp)
- expect(vnode.el).toBe(container.firstChild)
- const teleportVnode1 = (vnode.children as VNode[])[0]
- const teleportVnode2 = (vnode.children as VNode[])[1]
- expect(teleportVnode1.el).toBe(container.childNodes[1])
- expect(teleportVnode1.anchor).toBe(container.childNodes[2])
- expect(teleportVnode2.el).toBe(container.childNodes[3])
- expect(teleportVnode2.anchor).toBe(container.childNodes[4])
- expect(teleportVnode1.target).toBe(teleportContainer)
- expect(teleportVnode1.targetStart).toBe(teleportContainer.childNodes[0])
- expect((teleportVnode1 as any).children[0].el).toBe(
- teleportContainer.childNodes[1],
- )
- expect(teleportVnode1.targetAnchor).toBe(teleportContainer.childNodes[3])
- expect(teleportVnode2.target).toBe(teleportContainer)
- expect(teleportVnode2.targetStart).toBe(teleportContainer.childNodes[4])
- expect((teleportVnode2 as any).children[0].el).toBe(
- teleportContainer.childNodes[5],
- )
- expect(teleportVnode2.targetAnchor).toBe(teleportContainer.childNodes[7])
- // // event handler
- triggerEvent('click', teleportContainer.querySelector('.foo')!)
- expect(fn1).toHaveBeenCalled()
- triggerEvent('click', teleportContainer.querySelector('.foo2')!)
- expect(fn2).toHaveBeenCalled()
- msg.value = 'bar'
- await nextTick()
- expect(teleportContainer.innerHTML).toMatchInlineSnapshot(
- `"<!--teleport start anchor--><span>bar</span><span class="bar"></span><!--teleport anchor--><!--teleport start anchor--><span>bar2</span><span class="bar2"></span><!--teleport anchor-->"`,
- )
- })
- test('Teleport (disabled)', async () => {
- const msg = ref('foo')
- const fn1 = vi.fn()
- const fn2 = vi.fn()
- const Comp = () => [
- h('div', 'foo'),
- h(Teleport, { to: '#teleport3', disabled: true }, [
- h('span', msg.value),
- h('span', { class: msg.value, onClick: fn1 }),
- ]),
- h('div', { class: msg.value + '2', onClick: fn2 }, 'bar'),
- ]
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport3'
- const ctx: SSRContext = {}
- const mainHtml = await renderToString(h(Comp), ctx)
- expect(mainHtml).toMatchInlineSnapshot(
- `"<!--[--><div>foo</div><!--teleport start--><span>foo</span><span class="foo"></span><!--teleport end--><div class="foo2">bar</div><!--]-->"`,
- )
- const teleportHtml = ctx.teleports!['#teleport3']
- expect(teleportHtml).toMatchInlineSnapshot(
- `"<!--teleport start anchor--><!--teleport anchor-->"`,
- )
- teleportContainer.innerHTML = teleportHtml
- document.body.appendChild(teleportContainer)
- const { vnode, container } = mountWithHydration(mainHtml, Comp)
- expect(vnode.el).toBe(container.firstChild)
- const children = vnode.children as VNode[]
- expect(children[0].el).toBe(container.childNodes[1])
- const teleportVnode = children[1]
- expect(teleportVnode.el).toBe(container.childNodes[2])
- expect((teleportVnode.children as VNode[])[0].el).toBe(
- container.childNodes[3],
- )
- expect((teleportVnode.children as VNode[])[1].el).toBe(
- container.childNodes[4],
- )
- expect(teleportVnode.anchor).toBe(container.childNodes[5])
- expect(children[2].el).toBe(container.childNodes[6])
- expect(teleportVnode.target).toBe(teleportContainer)
- expect(teleportVnode.targetStart).toBe(teleportContainer.childNodes[0])
- expect(teleportVnode.targetAnchor).toBe(teleportContainer.childNodes[1])
- // // event handler
- triggerEvent('click', container.querySelector('.foo')!)
- expect(fn1).toHaveBeenCalled()
- triggerEvent('click', container.querySelector('.foo2')!)
- expect(fn2).toHaveBeenCalled()
- msg.value = 'bar'
- await nextTick()
- expect(container.innerHTML).toMatchInlineSnapshot(
- `"<!--[--><div>foo</div><!--teleport start--><span>bar</span><span class="bar"></span><!--teleport end--><div class="bar2">bar</div><!--]-->"`,
- )
- })
- // #6152
- test('Teleport (disabled + as component root)', () => {
- const { container } = mountWithHydration(
- '<!--[--><div>Parent fragment</div><!--teleport start--><div>Teleport content</div><!--teleport end--><!--]-->',
- () => [
- h('div', 'Parent fragment'),
- h(() =>
- h(Teleport, { to: 'body', disabled: true }, [
- h('div', 'Teleport content'),
- ]),
- ),
- ],
- )
- expect(document.body.innerHTML).toBe('')
- expect(container.innerHTML).toBe(
- '<!--[--><div>Parent fragment</div><!--teleport start--><div>Teleport content</div><!--teleport end--><!--]-->',
- )
- expect(
- `Hydration completed but contains mismatches.`,
- ).not.toHaveBeenWarned()
- })
- test('Teleport (as component root)', () => {
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport4'
- teleportContainer.innerHTML = `<!--teleport start anchor-->hello<!--teleport anchor-->`
- document.body.appendChild(teleportContainer)
- const wrapper = {
- render() {
- return h(Teleport, { to: '#teleport4' }, ['hello'])
- },
- }
- const { vnode, container } = mountWithHydration(
- '<div><!--teleport start--><!--teleport end--><div></div></div>',
- () => h('div', [h(wrapper), h('div')]),
- )
- expect(vnode.el).toBe(container.firstChild)
- // component el
- const wrapperVNode = (vnode as any).children[0]
- const tpStart = container.firstChild?.firstChild
- const tpEnd = tpStart?.nextSibling
- expect(wrapperVNode.el).toBe(tpStart)
- expect(wrapperVNode.component.subTree.el).toBe(tpStart)
- expect(wrapperVNode.component.subTree.anchor).toBe(tpEnd)
- // next node hydrate properly
- const nextVNode = (vnode as any).children[1]
- expect(nextVNode.el).toBe(container.firstChild?.lastChild)
- })
- test('Teleport (nested)', () => {
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport5'
- teleportContainer.innerHTML = `<!--teleport start anchor--><div><!--teleport start--><!--teleport end--></div><!--teleport anchor--><!--teleport start anchor--><div>child</div><!--teleport anchor-->`
- document.body.appendChild(teleportContainer)
- const { vnode, container } = mountWithHydration(
- '<!--teleport start--><!--teleport end-->',
- () =>
- h(Teleport, { to: '#teleport5' }, [
- h('div', [h(Teleport, { to: '#teleport5' }, [h('div', 'child')])]),
- ]),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(vnode.anchor).toBe(container.lastChild)
- const childDivVNode = (vnode as any).children[0]
- const div = teleportContainer.childNodes[1]
- expect(childDivVNode.el).toBe(div)
- expect(vnode.targetAnchor).toBe(div?.nextSibling)
- const childTeleportVNode = childDivVNode.children[0]
- expect(childTeleportVNode.el).toBe(div?.firstChild)
- expect(childTeleportVNode.anchor).toBe(div?.lastChild)
- expect(childTeleportVNode.targetAnchor).toBe(teleportContainer.lastChild)
- expect(childTeleportVNode.children[0].el).toBe(
- teleportContainer.lastChild?.previousSibling,
- )
- })
- test('with data-allow-mismatch component when using onServerPrefetch', async () => {
- const Comp = {
- template: `
- <div>Comp2</div>
- `,
- }
- let foo: any
- const App = {
- setup() {
- const flag = ref(true)
- foo = () => {
- flag.value = false
- }
- onServerPrefetch(() => (flag.value = false))
- return { flag }
- },
- components: {
- Comp,
- },
- template: `
- <span data-allow-mismatch>
- <Comp v-if="flag"></Comp>
- </span>
- `,
- }
- // hydrate
- const container = document.createElement('div')
- container.innerHTML = await renderToString(h(App))
- createSSRApp(App).mount(container)
- expect(container.innerHTML).toBe(
- '<span data-allow-mismatch=""><div>Comp2</div></span>',
- )
- foo()
- await nextTick()
- expect(container.innerHTML).toBe(
- '<span data-allow-mismatch=""><!--v-if--></span>',
- )
- })
- test('Teleport unmount (full integration)', async () => {
- const Comp1 = {
- template: `
- <Teleport to="#target">
- <span>Teleported Comp1</span>
- </Teleport>
- `,
- }
- const Comp2 = {
- template: `
- <div>Comp2</div>
- `,
- }
- const toggle = ref(true)
- const App = {
- template: `
- <div>
- <Comp1 v-if="toggle"/>
- <Comp2 v-else/>
- </div>
- `,
- components: {
- Comp1,
- Comp2,
- },
- setup() {
- return { toggle }
- },
- }
- const container = document.createElement('div')
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'target'
- document.body.appendChild(teleportContainer)
- // server render
- const ctx: SSRContext = {}
- container.innerHTML = await renderToString(h(App), ctx)
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- teleportContainer.innerHTML = ctx.teleports!['#target']
- // hydrate
- createSSRApp(App).mount(container)
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- expect(teleportContainer.innerHTML).toBe(
- '<!--teleport start anchor--><span>Teleported Comp1</span><!--teleport anchor-->',
- )
- expect(`Hydration children mismatch`).not.toHaveBeenWarned()
- toggle.value = false
- await nextTick()
- expect(container.innerHTML).toBe('<div><div>Comp2</div></div>')
- expect(teleportContainer.innerHTML).toBe('')
- })
- test('Teleport unmount (mismatch + full integration)', async () => {
- const Comp1 = {
- template: `
- <Teleport to="#target">
- <span>Teleported Comp1</span>
- </Teleport>
- `,
- }
- const Comp2 = {
- template: `
- <div>Comp2</div>
- `,
- }
- const toggle = ref(true)
- const App = {
- template: `
- <div>
- <Comp1 v-if="toggle"/>
- <Comp2 v-else/>
- </div>
- `,
- components: {
- Comp1,
- Comp2,
- },
- setup() {
- return { toggle }
- },
- }
- const container = document.createElement('div')
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'target'
- document.body.appendChild(teleportContainer)
- // server render
- container.innerHTML = await renderToString(h(App))
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- expect(teleportContainer.innerHTML).toBe('')
- // hydrate
- createSSRApp(App).mount(container)
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- expect(teleportContainer.innerHTML).toBe('<span>Teleported Comp1</span>')
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- toggle.value = false
- await nextTick()
- expect(container.innerHTML).toBe('<div><div>Comp2</div></div>')
- expect(teleportContainer.innerHTML).toBe('')
- })
- test('Teleport target change (mismatch + full integration)', async () => {
- const target = ref('#target1')
- const Comp = {
- template: `
- <Teleport :to="target">
- <span>Teleported</span>
- </Teleport>
- `,
- setup() {
- return { target }
- },
- }
- const App = {
- template: `
- <div>
- <Comp />
- </div>
- `,
- components: {
- Comp,
- },
- }
- const container = document.createElement('div')
- const teleportContainer1 = document.createElement('div')
- teleportContainer1.id = 'target1'
- const teleportContainer2 = document.createElement('div')
- teleportContainer2.id = 'target2'
- document.body.appendChild(teleportContainer1)
- document.body.appendChild(teleportContainer2)
- // server render
- container.innerHTML = await renderToString(h(App))
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- expect(teleportContainer1.innerHTML).toBe('')
- expect(teleportContainer2.innerHTML).toBe('')
- // hydrate
- createSSRApp(App).mount(container)
- expect(container.innerHTML).toBe(
- '<div><!--teleport start--><!--teleport end--></div>',
- )
- expect(teleportContainer1.innerHTML).toBe('<span>Teleported</span>')
- expect(teleportContainer2.innerHTML).toBe('')
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- target.value = '#target2'
- await nextTick()
- expect(teleportContainer1.innerHTML).toBe('')
- expect(teleportContainer2.innerHTML).toBe('<span>Teleported</span>')
- })
- // compile SSR + client render fn from the same template & hydrate
- test('full compiler integration', async () => {
- const mounted: string[] = []
- const log = vi.fn()
- const toggle = ref(true)
- const Child = {
- data() {
- return {
- count: 0,
- text: 'hello',
- style: {
- color: 'red',
- },
- }
- },
- mounted() {
- mounted.push('child')
- },
- template: `
- <div>
- <span class="count" :style="style">{{ count }}</span>
- <button class="inc" @click="count++">inc</button>
- <button class="change" @click="style.color = 'green'" >change color</button>
- <button class="emit" @click="$emit('foo')">emit</button>
- <span class="text">{{ text }}</span>
- <input v-model="text">
- </div>
- `,
- }
- const App = {
- setup() {
- return { toggle }
- },
- mounted() {
- mounted.push('parent')
- },
- template: `
- <div>
- <span>hello</span>
- <template v-if="toggle">
- <Child @foo="log('child')"/>
- <template v-if="true">
- <button class="parent-click" @click="log('click')">click me</button>
- </template>
- </template>
- <span>hello</span>
- </div>`,
- components: {
- Child,
- },
- methods: {
- log,
- },
- }
- const container = document.createElement('div')
- // server render
- container.innerHTML = await renderToString(h(App))
- // hydrate
- createSSRApp(App).mount(container)
- // assert interactions
- // 1. parent button click
- triggerEvent('click', container.querySelector('.parent-click')!)
- expect(log).toHaveBeenCalledWith('click')
- // 2. child inc click + text interpolation
- const count = container.querySelector('.count') as HTMLElement
- expect(count.textContent).toBe(`0`)
- triggerEvent('click', container.querySelector('.inc')!)
- await nextTick()
- expect(count.textContent).toBe(`1`)
- // 3. child color click + style binding
- expect(count.style.color).toBe('red')
- triggerEvent('click', container.querySelector('.change')!)
- await nextTick()
- expect(count.style.color).toBe('green')
- // 4. child event emit
- triggerEvent('click', container.querySelector('.emit')!)
- expect(log).toHaveBeenCalledWith('child')
- // 5. child v-model
- const text = container.querySelector('.text')!
- const input = container.querySelector('input')!
- expect(text.textContent).toBe('hello')
- input.value = 'bye'
- triggerEvent('input', input)
- await nextTick()
- expect(text.textContent).toBe('bye')
- })
- test('handle click error in ssr mode', async () => {
- const App = {
- setup() {
- const throwError = () => {
- throw new Error('Sentry Error')
- }
- return { throwError }
- },
- template: `
- <div>
- <button class="parent-click" @click="throwError">click me</button>
- </div>`,
- }
- const container = document.createElement('div')
- // server render
- container.innerHTML = await renderToString(h(App))
- // hydrate
- const app = createSSRApp(App)
- const handler = (app.config.errorHandler = vi.fn())
- app.mount(container)
- // assert interactions
- // parent button click
- triggerEvent('click', container.querySelector('.parent-click')!)
- expect(handler).toHaveBeenCalled()
- })
- test('handle blur error in ssr mode', async () => {
- const App = {
- setup() {
- const throwError = () => {
- throw new Error('Sentry Error')
- }
- return { throwError }
- },
- template: `
- <div>
- <input class="parent-click" @blur="throwError"/>
- </div>`,
- }
- const container = document.createElement('div')
- // server render
- container.innerHTML = await renderToString(h(App))
- // hydrate
- const app = createSSRApp(App)
- const handler = (app.config.errorHandler = vi.fn())
- app.mount(container)
- // assert interactions
- // parent blur event
- triggerEvent('blur', container.querySelector('.parent-click')!)
- expect(handler).toHaveBeenCalled()
- })
- test('Suspense', async () => {
- const AsyncChild = {
- async setup() {
- const count = ref(0)
- return () =>
- h(
- 'span',
- {
- onClick: () => {
- count.value++
- },
- },
- count.value,
- )
- },
- }
- const { vnode, container } = mountWithHydration('<span>0</span>', () =>
- h(Suspense, () => h(AsyncChild)),
- )
- expect(vnode.el).toBe(container.firstChild)
- // wait for hydration to finish
- await new Promise(r => setTimeout(r))
- triggerEvent('click', container.querySelector('span')!)
- await nextTick()
- expect(container.innerHTML).toBe(`<span>1</span>`)
- })
- // #6638
- test('Suspense + async component', async () => {
- let isSuspenseResolved = false
- let isSuspenseResolvedInChild: any
- const AsyncChild = defineAsyncComponent(() =>
- Promise.resolve(
- defineComponent({
- setup() {
- isSuspenseResolvedInChild = isSuspenseResolved
- const count = ref(0)
- return () =>
- h(
- 'span',
- {
- onClick: () => {
- count.value++
- },
- },
- count.value,
- )
- },
- }),
- ),
- )
- const { vnode, container } = mountWithHydration('<span>0</span>', () =>
- h(
- Suspense,
- {
- onResolve() {
- isSuspenseResolved = true
- },
- },
- () => h(AsyncChild),
- ),
- )
- expect(vnode.el).toBe(container.firstChild)
- // wait for hydration to finish
- await new Promise(r => setTimeout(r))
- expect(isSuspenseResolvedInChild).toBe(false)
- expect(isSuspenseResolved).toBe(true)
- // assert interaction
- triggerEvent('click', container.querySelector('span')!)
- await nextTick()
- expect(container.innerHTML).toBe(`<span>1</span>`)
- })
- test('Suspense (full integration)', async () => {
- const mountedCalls: number[] = []
- const asyncDeps: Promise<any>[] = []
- const AsyncChild = defineComponent({
- props: ['n'],
- async setup(props) {
- const count = ref(props.n)
- onMounted(() => {
- mountedCalls.push(props.n)
- })
- const p = new Promise(r => setTimeout(r, props.n * 10))
- asyncDeps.push(p)
- await p
- return () =>
- h(
- 'span',
- {
- onClick: () => {
- count.value++
- },
- },
- count.value,
- )
- },
- })
- const done = vi.fn()
- const App = {
- template: `
- <Suspense @resolve="done">
- <div>
- <AsyncChild :n="1" />
- <AsyncChild :n="2" />
- </div>
- </Suspense>`,
- components: {
- AsyncChild,
- },
- methods: {
- done,
- },
- }
- const container = document.createElement('div')
- // server render
- container.innerHTML = await renderToString(h(App))
- expect(container.innerHTML).toMatchInlineSnapshot(
- `"<div><span>1</span><span>2</span></div>"`,
- )
- // reset asyncDeps from ssr
- asyncDeps.length = 0
- // hydrate
- createSSRApp(App).mount(container)
- expect(mountedCalls.length).toBe(0)
- expect(asyncDeps.length).toBe(2)
- // wait for hydration to complete
- await Promise.all(asyncDeps)
- await new Promise(r => setTimeout(r))
- // should flush buffered effects
- expect(mountedCalls).toMatchObject([1, 2])
- expect(container.innerHTML).toMatch(
- `<div><span>1</span><span>2</span></div>`,
- )
- const span1 = container.querySelector('span')!
- triggerEvent('click', span1)
- await nextTick()
- expect(container.innerHTML).toMatch(
- `<div><span>2</span><span>2</span></div>`,
- )
- const span2 = span1.nextSibling as Element
- triggerEvent('click', span2)
- await nextTick()
- expect(container.innerHTML).toMatch(
- `<div><span>2</span><span>3</span></div>`,
- )
- })
- test('async component', async () => {
- const spy = vi.fn()
- const Comp = () =>
- h(
- 'button',
- {
- onClick: spy,
- },
- 'hello!',
- )
- let serverResolve: any
- let AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- serverResolve = r
- }),
- )
- const App = {
- render() {
- return ['hello', h(AsyncComp), 'world']
- },
- }
- // server render
- const htmlPromise = renderToString(h(App))
- serverResolve(Comp)
- const html = await htmlPromise
- expect(html).toMatchInlineSnapshot(
- `"<!--[-->hello<button>hello!</button>world<!--]-->"`,
- )
- // hydration
- let clientResolve: any
- AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- clientResolve = r
- }),
- )
- const container = document.createElement('div')
- container.innerHTML = html
- createSSRApp(App).mount(container)
- // hydration not complete yet
- triggerEvent('click', container.querySelector('button')!)
- expect(spy).not.toHaveBeenCalled()
- // resolve
- clientResolve(Comp)
- await new Promise(r => setTimeout(r))
- // should be hydrated now
- triggerEvent('click', container.querySelector('button')!)
- expect(spy).toHaveBeenCalled()
- })
- test('update async wrapper before resolve', async () => {
- const Comp = {
- render() {
- return h('h1', 'Async component')
- },
- }
- let serverResolve: any
- let AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- serverResolve = r
- }),
- )
- const toggle = ref(true)
- const App = {
- setup() {
- onMounted(() => {
- // change state, this makes updateComponent(AsyncComp) execute before
- // the async component is resolved
- toggle.value = false
- })
- return () => {
- return [toggle.value ? 'hello' : 'world', h(AsyncComp)]
- }
- },
- }
- // server render
- const htmlPromise = renderToString(h(App))
- serverResolve(Comp)
- const html = await htmlPromise
- expect(html).toMatchInlineSnapshot(
- `"<!--[-->hello<h1>Async component</h1><!--]-->"`,
- )
- // hydration
- let clientResolve: any
- AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- clientResolve = r
- }),
- )
- const container = document.createElement('div')
- container.innerHTML = html
- createSSRApp(App).mount(container)
- // resolve
- clientResolve(Comp)
- await new Promise(r => setTimeout(r))
- // should be hydrated now
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- expect(container.innerHTML).toMatchInlineSnapshot(
- `"<!--[-->world<h1>Async component</h1><!--]-->"`,
- )
- })
- test('hydrate safely when property used by async setup changed before render', async () => {
- const toggle = ref(true)
- const AsyncComp = {
- async setup() {
- await new Promise<void>(r => setTimeout(r, 10))
- return () => h('h1', 'Async component')
- },
- }
- const AsyncWrapper = {
- render() {
- return h(AsyncComp)
- },
- }
- const SiblingComp = {
- setup() {
- toggle.value = false
- return () => h('span')
- },
- }
- const App = {
- setup() {
- return () =>
- h(
- Suspense,
- {},
- {
- default: () => [
- h('main', {}, [
- h(AsyncWrapper, {
- prop: toggle.value ? 'hello' : 'world',
- }),
- h(SiblingComp),
- ]),
- ],
- },
- )
- },
- }
- // server render
- const html = await renderToString(h(App))
- expect(html).toMatchInlineSnapshot(
- `"<main><h1 prop="hello">Async component</h1><span></span></main>"`,
- )
- expect(toggle.value).toBe(false)
- // hydration
- // reset the value
- toggle.value = true
- expect(toggle.value).toBe(true)
- const container = document.createElement('div')
- container.innerHTML = html
- createSSRApp(App).mount(container)
- await new Promise(r => setTimeout(r, 10))
- expect(toggle.value).toBe(false)
- // should be hydrated now
- expect(container.innerHTML).toMatchInlineSnapshot(
- `"<main><h1 prop="world">Async component</h1><span></span></main>"`,
- )
- })
- test('hydrate safely when property used by deep nested async setup changed before render', async () => {
- const toggle = ref(true)
- const AsyncComp = {
- async setup() {
- await new Promise<void>(r => setTimeout(r, 10))
- return () => h('h1', 'Async component')
- },
- }
- const AsyncWrapper = { render: () => h(AsyncComp) }
- const AsyncWrapperWrapper = { render: () => h(AsyncWrapper) }
- const SiblingComp = {
- setup() {
- toggle.value = false
- return () => h('span')
- },
- }
- const App = {
- setup() {
- return () =>
- h(
- Suspense,
- {},
- {
- default: () => [
- h('main', {}, [
- h(AsyncWrapperWrapper, {
- prop: toggle.value ? 'hello' : 'world',
- }),
- h(SiblingComp),
- ]),
- ],
- },
- )
- },
- }
- // server render
- const html = await renderToString(h(App))
- expect(html).toMatchInlineSnapshot(
- `"<main><h1 prop="hello">Async component</h1><span></span></main>"`,
- )
- expect(toggle.value).toBe(false)
- // hydration
- // reset the value
- toggle.value = true
- expect(toggle.value).toBe(true)
- const container = document.createElement('div')
- container.innerHTML = html
- createSSRApp(App).mount(container)
- await new Promise(r => setTimeout(r, 10))
- expect(toggle.value).toBe(false)
- // should be hydrated now
- expect(container.innerHTML).toMatchInlineSnapshot(
- `"<main><h1 prop="world">Async component</h1><span></span></main>"`,
- )
- })
- // #3787
- test('unmount async wrapper before load', async () => {
- let resolve: any
- const AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- resolve = r
- }),
- )
- const show = ref(true)
- const root = document.createElement('div')
- root.innerHTML = '<div><div>async</div></div>'
- createSSRApp({
- render() {
- return h('div', [show.value ? h(AsyncComp) : h('div', 'hi')])
- },
- }).mount(root)
- show.value = false
- await nextTick()
- expect(root.innerHTML).toBe('<div><div>hi</div></div>')
- resolve({})
- })
- //#12362
- test('nested async wrapper', async () => {
- const Toggle = defineAsyncComponent(
- () =>
- new Promise(r => {
- r(
- defineComponent({
- setup(_, { slots }) {
- const show = ref(false)
- onMounted(() => {
- nextTick(() => {
- show.value = true
- })
- })
- return () =>
- withDirectives(
- h('div', null, [renderSlot(slots, 'default')]),
- [[vShow, show.value]],
- )
- },
- }) as any,
- )
- }),
- )
- const Wrapper = defineAsyncComponent(() => {
- return new Promise(r => {
- r(
- defineComponent({
- render(this: any) {
- return renderSlot(this.$slots, 'default')
- },
- }) as any,
- )
- })
- })
- const count = ref(0)
- const fn = vi.fn()
- const Child = {
- setup() {
- onMounted(() => {
- fn()
- count.value++
- })
- return () => h('div', count.value)
- },
- }
- const App = {
- render() {
- return h(Toggle, null, {
- default: () =>
- h(Wrapper, null, {
- default: () =>
- h(Wrapper, null, {
- default: () => h(Child),
- }),
- }),
- })
- },
- }
- const root = document.createElement('div')
- root.innerHTML = await renderToString(h(App))
- expect(root.innerHTML).toMatchInlineSnapshot(
- `"<div style="display:none;"><!--[--><!--[--><!--[--><div>0</div><!--]--><!--]--><!--]--></div>"`,
- )
- createSSRApp(App).mount(root)
- await nextTick()
- await nextTick()
- expect(root.innerHTML).toMatchInlineSnapshot(
- `"<div style=""><!--[--><!--[--><!--[--><div>1</div><!--]--><!--]--><!--]--></div>"`,
- )
- expect(fn).toBeCalledTimes(1)
- })
- test('unmount async wrapper before load (fragment)', async () => {
- let resolve: any
- const AsyncComp = defineAsyncComponent(
- () =>
- new Promise(r => {
- resolve = r
- }),
- )
- const show = ref(true)
- const root = document.createElement('div')
- root.innerHTML = '<div><!--[-->async<!--]--></div>'
- createSSRApp({
- render() {
- return h('div', [show.value ? h(AsyncComp) : h('div', 'hi')])
- },
- }).mount(root)
- show.value = false
- await nextTick()
- expect(root.innerHTML).toBe('<div><div>hi</div></div>')
- resolve({})
- })
- test('elements with camel-case in svg ', () => {
- const { vnode, container } = mountWithHydration(
- '<animateTransform></animateTransform>',
- () => h('animateTransform'),
- )
- expect(vnode.el).toBe(container.firstChild)
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('SVG as a mount container', () => {
- const svgContainer = document.createElement('svg')
- svgContainer.innerHTML = '<g></g>'
- const app = createSSRApp({
- render: () => h('g'),
- })
- expect(
- (
- app.mount(svgContainer).$.subTree as VNode<Node, Element> & {
- el: Element
- }
- ).el instanceof SVGElement,
- )
- })
- test('force hydrate prop with `.prop` modifier', () => {
- const { container } = mountWithHydration('<input type="checkbox">', () =>
- h('input', {
- type: 'checkbox',
- '.indeterminate': true,
- }),
- )
- expect((container.firstChild! as any).indeterminate).toBe(true)
- })
- test('force hydrate input v-model with non-string value bindings', () => {
- const { container } = mountWithHydration(
- '<input type="checkbox" value="true">',
- () =>
- withDirectives(
- createVNode(
- 'input',
- { type: 'checkbox', 'true-value': true },
- null,
- PatchFlags.PROPS,
- ['true-value'],
- ),
- [[vModelCheckbox, true]],
- ),
- )
- expect((container.firstChild as any)._trueValue).toBe(true)
- })
- test('force hydrate checkbox with indeterminate', () => {
- const { container } = mountWithHydration(
- '<input type="checkbox" indeterminate>',
- () =>
- createVNode(
- 'input',
- { type: 'checkbox', indeterminate: '' },
- null,
- PatchFlags.CACHED,
- ),
- )
- expect((container.firstChild as any).indeterminate).toBe(true)
- })
- test('force hydrate select option with non-string value bindings', () => {
- const { container } = mountWithHydration(
- '<select><option value="true">ok</option></select>',
- () =>
- h('select', [
- // hoisted because bound value is a constant...
- createVNode('option', { value: true }, null, -1 /* HOISTED */),
- ]),
- )
- expect((container.firstChild!.firstChild as any)._value).toBe(true)
- })
- // #7203
- test('force hydrate custom element with dynamic props', () => {
- class MyElement extends HTMLElement {
- foo = ''
- constructor() {
- super()
- }
- }
- customElements.define('my-element-7203', MyElement)
- const msg = ref('bar')
- const container = document.createElement('div')
- container.innerHTML = '<my-element-7203></my-element-7203>'
- const app = createSSRApp({
- render: () => h('my-element-7203', { foo: msg.value }),
- })
- app.mount(container)
- expect((container.firstChild as any).foo).toBe(msg.value)
- })
- // #5728
- test('empty text node in slot', () => {
- const Comp = {
- render(this: any) {
- return renderSlot(this.$slots, 'default', {}, () => [
- createTextVNode(''),
- ])
- },
- }
- const { container, vnode } = mountWithHydration('<!--[--><!--]-->', () =>
- h(Comp),
- )
- expect(container.childNodes.length).toBe(3)
- const text = container.childNodes[1]
- expect(text.nodeType).toBe(3)
- expect(vnode.el).toBe(container.childNodes[0])
- // component => slot fragment => text node
- expect((vnode as any).component?.subTree.children[0].el).toBe(text)
- })
- // #7215
- test('empty text node', () => {
- const Comp = {
- render(this: any) {
- return h('p', [''])
- },
- }
- const { container } = mountWithHydration('<p></p>', () => h(Comp))
- expect(container.childNodes.length).toBe(1)
- const p = container.childNodes[0]
- expect(p.childNodes.length).toBe(1)
- const text = p.childNodes[0]
- expect(text.nodeType).toBe(3)
- })
- // #11372
- test('object style value tracking in prod', async () => {
- __DEV__ = false
- try {
- const style = reactive({ color: 'red' })
- const Comp = {
- render(this: any) {
- return (
- openBlock(),
- createElementBlock(
- 'div',
- {
- style: normalizeStyle(style),
- },
- null,
- 4 /* STYLE */,
- )
- )
- },
- }
- const { container } = mountWithHydration(
- `<div style="color: red;"></div>`,
- () => h(Comp),
- )
- style.color = 'green'
- await nextTick()
- expect(container.innerHTML).toBe(`<div style="color: green;"></div>`)
- } finally {
- __DEV__ = true
- }
- })
- test('app.unmount()', async () => {
- const container = document.createElement('DIV')
- container.innerHTML = '<button></button>'
- const App = defineComponent({
- setup(_, { expose }) {
- const count = ref(0)
- expose({ count })
- return () =>
- h('button', {
- onClick: () => count.value++,
- })
- },
- })
- const app = createSSRApp(App)
- const vm = app.mount(container)
- await nextTick()
- expect((container as any)._vnode).toBeDefined()
- // @ts-expect-error - expose()'d properties are not available on vm type
- expect(vm.count).toBe(0)
- app.unmount()
- expect((container as any)._vnode).toBe(null)
- })
- // #6637
- test('stringified root fragment', () => {
- mountWithHydration(`<!--[--><div></div><!--]-->`, () =>
- createStaticVNode(`<div></div>`, 1),
- )
- expect(`mismatch`).not.toHaveBeenWarned()
- })
- test('transition appear', () => {
- const { vnode, container } = mountWithHydration(
- `<template><div>foo</div></template>`,
- () =>
- h(
- Transition,
- { appear: true },
- {
- default: () => h('div', 'foo'),
- },
- ),
- )
- expect(container.firstChild).toMatchInlineSnapshot(`
- <div
- class="v-enter-from v-enter-active"
- >
- foo
- </div>
- `)
- expect(vnode.el).toBe(container.firstChild)
- expect(`mismatch`).not.toHaveBeenWarned()
- })
- test('transition appear with v-if', () => {
- const show = false
- const { vnode, container } = mountWithHydration(
- `<template><!----></template>`,
- () =>
- h(
- Transition,
- { appear: true },
- {
- default: () => (show ? h('div', 'foo') : createCommentVNode('')),
- },
- ),
- )
- expect(container.firstChild).toMatchInlineSnapshot('<!---->')
- expect(vnode.el).toBe(container.firstChild)
- expect(`mismatch`).not.toHaveBeenWarned()
- })
- test('transition appear with v-show', () => {
- const show = false
- const { vnode, container } = mountWithHydration(
- `<template><div style="display: none;">foo</div></template>`,
- () =>
- h(
- Transition,
- { appear: true },
- {
- default: () =>
- withDirectives(createVNode('div', null, 'foo'), [[vShow, show]]),
- },
- ),
- )
- expect(container.firstChild).toMatchInlineSnapshot(`
- <div
- class="v-enter-from v-enter-active"
- style="display: none;"
- >
- foo
- </div>
- `)
- expect((container.firstChild as any)[vShowOriginalDisplay]).toBe('')
- expect(vnode.el).toBe(container.firstChild)
- expect(`mismatch`).not.toHaveBeenWarned()
- })
- test('transition appear w/ event listener', async () => {
- const container = document.createElement('div')
- container.innerHTML = `<template><button>0</button></template>`
- createSSRApp({
- data() {
- return {
- count: 0,
- }
- },
- template: `
- <Transition appear>
- <button @click="count++">{{count}}</button>
- </Transition>
- `,
- }).mount(container)
- expect(container.firstChild).toMatchInlineSnapshot(`
- <button
- class="v-enter-from v-enter-active"
- >
- 0
- </button>
- `)
- triggerEvent('click', container.querySelector('button')!)
- await nextTick()
- expect(container.firstChild).toMatchInlineSnapshot(`
- <button
- class="v-enter-from v-enter-active"
- >
- 1
- </button>
- `)
- })
- test('Suspense + transition appear', async () => {
- const { vnode, container } = mountWithHydration(
- `<template><div>foo</div></template>`,
- () =>
- h(Suspense, {}, () =>
- h(
- Transition,
- { appear: true },
- {
- default: () => h('div', 'foo'),
- },
- ),
- ),
- )
- expect(vnode.el).toBe(container.firstChild)
- // wait for hydration to finish
- await new Promise(r => setTimeout(r))
- expect(container.firstChild).toMatchInlineSnapshot(`
- <div
- class="v-enter-from v-enter-active"
- >
- foo
- </div>
- `)
- await nextTick()
- expect(vnode.el).toBe(container.firstChild)
- })
- // #10607
- test('update component stable slot (prod + optimized mode)', async () => {
- __DEV__ = false
- try {
- const container = document.createElement('div')
- container.innerHTML = `<template><div show="false"><!--[--><div><div><!----></div></div><div>0</div><!--]--></div></template>`
- const Comp = {
- render(this: any) {
- return (
- openBlock(),
- createElementBlock('div', null, [
- renderSlot(this.$slots, 'default'),
- ])
- )
- },
- }
- const show = ref(false)
- const clicked = ref(false)
- const Wrapper = {
- setup() {
- const items = ref<number[]>([])
- onMounted(() => {
- items.value = [1]
- })
- return () => {
- return (
- openBlock(),
- createBlock(Comp, null, {
- default: withCtx(() => [
- createElementVNode('div', null, [
- createElementVNode('div', null, [
- clicked.value
- ? (openBlock(),
- createElementBlock('div', { key: 0 }, 'foo'))
- : createCommentVNode('v-if', true),
- ]),
- ]),
- createElementVNode(
- 'div',
- null,
- items.value.length,
- 1 /* TEXT */,
- ),
- ]),
- _: 1 /* STABLE */,
- })
- )
- }
- },
- }
- createSSRApp({
- components: { Wrapper },
- data() {
- return { show }
- },
- template: `<Wrapper :show="show"/>`,
- }).mount(container)
- await nextTick()
- expect(container.innerHTML).toBe(
- `<div show="false"><!--[--><div><div><!----></div></div><div>1</div><!--]--></div>`,
- )
- show.value = true
- await nextTick()
- expect(async () => {
- clicked.value = true
- await nextTick()
- }).not.toThrow("Cannot read properties of null (reading 'insertBefore')")
- await nextTick()
- expect(container.innerHTML).toBe(
- `<div show="true"><!--[--><div><div><div>foo</div></div></div><div>1</div><!--]--></div>`,
- )
- } catch (e) {
- throw e
- } finally {
- __DEV__ = true
- }
- })
- test('hmr reload child wrapped in KeepAlive', async () => {
- const id = 'child-reload'
- const Child = {
- __hmrId: id,
- template: `<div>foo</div>`,
- }
- createRecord(id, Child)
- const appId = 'test-app-id'
- const App = {
- __hmrId: appId,
- components: { Child },
- template: `
- <div>
- <KeepAlive>
- <Child />
- </KeepAlive>
- </div>
- `,
- }
- const root = document.createElement('div')
- root.innerHTML = await renderToString(h(App))
- createSSRApp(App).mount(root)
- expect(root.innerHTML).toBe('<div><div>foo</div></div>')
- reload(id, {
- __hmrId: id,
- template: `<div>bar</div>`,
- })
- await nextTick()
- expect(root.innerHTML).toBe('<div><div>bar</div></div>')
- })
- test('hmr root reload', async () => {
- const appId = 'test-app-id'
- const App = {
- __hmrId: appId,
- template: `<div>foo</div>`,
- }
- const root = document.createElement('div')
- root.innerHTML = await renderToString(h(App))
- createSSRApp(App).mount(root)
- expect(root.innerHTML).toBe('<div>foo</div>')
- reload(appId, {
- __hmrId: appId,
- template: `<div>bar</div>`,
- })
- await nextTick()
- expect(root.innerHTML).toBe('<div>bar</div>')
- })
- describe('mismatch handling', () => {
- test('text node', () => {
- const { container } = mountWithHydration(`foo`, () => 'bar')
- expect(container.textContent).toBe('bar')
- expect(`Hydration text mismatch`).toHaveBeenWarned()
- })
- test('element text content', () => {
- const { container } = mountWithHydration(`<div>foo</div>`, () =>
- h('div', 'bar'),
- )
- expect(container.innerHTML).toBe('<div>bar</div>')
- expect(`Hydration text content mismatch`).toHaveBeenWarned()
- })
- test('not enough children', () => {
- const { container } = mountWithHydration(`<div></div>`, () =>
- h('div', [h('span', 'foo'), h('span', 'bar')]),
- )
- expect(container.innerHTML).toBe(
- '<div><span>foo</span><span>bar</span></div>',
- )
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- })
- test('too many children', () => {
- const { container } = mountWithHydration(
- `<div><span>foo</span><span>bar</span></div>`,
- () => h('div', [h('span', 'foo')]),
- )
- expect(container.innerHTML).toBe('<div><span>foo</span></div>')
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- })
- test('complete mismatch', () => {
- const { container } = mountWithHydration(
- `<div><span>foo</span><span>bar</span></div>`,
- () => h('div', [h('div', 'foo'), h('p', 'bar')]),
- )
- expect(container.innerHTML).toBe('<div><div>foo</div><p>bar</p></div>')
- expect(`Hydration node mismatch`).toHaveBeenWarnedTimes(2)
- })
- test('fragment mismatch removal', () => {
- const { container } = mountWithHydration(
- `<div><!--[--><div>foo</div><div>bar</div><!--]--></div>`,
- () => h('div', [h('span', 'replaced')]),
- )
- expect(container.innerHTML).toBe('<div><span>replaced</span></div>')
- expect(`Hydration node mismatch`).toHaveBeenWarned()
- })
- test('fragment not enough children', () => {
- const { container } = mountWithHydration(
- `<div><!--[--><div>foo</div><!--]--><div>baz</div></div>`,
- () => h('div', [[h('div', 'foo'), h('div', 'bar')], h('div', 'baz')]),
- )
- expect(container.innerHTML).toBe(
- '<div><!--[--><div>foo</div><div>bar</div><!--]--><div>baz</div></div>',
- )
- expect(`Hydration node mismatch`).toHaveBeenWarned()
- })
- test('fragment too many children', () => {
- const { container } = mountWithHydration(
- `<div><!--[--><div>foo</div><div>bar</div><!--]--><div>baz</div></div>`,
- () => h('div', [[h('div', 'foo')], h('div', 'baz')]),
- )
- expect(container.innerHTML).toBe(
- '<div><!--[--><div>foo</div><!--]--><div>baz</div></div>',
- )
- // fragment ends early and attempts to hydrate the extra <div>bar</div>
- // as 2nd fragment child.
- expect(`Hydration text content mismatch`).toHaveBeenWarned()
- // excessive children removal
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- })
- test('Teleport target has empty children', () => {
- const teleportContainer = document.createElement('div')
- teleportContainer.id = 'teleport'
- document.body.appendChild(teleportContainer)
- mountWithHydration('<!--teleport start--><!--teleport end-->', () =>
- h(Teleport, { to: '#teleport' }, [h('span', 'value')]),
- )
- expect(teleportContainer.innerHTML).toBe(`<span>value</span>`)
- expect(`Hydration children mismatch`).toHaveBeenWarned()
- })
- test('comment mismatch (element)', () => {
- const { container } = mountWithHydration(`<div><span></span></div>`, () =>
- h('div', [createCommentVNode('hi')]),
- )
- expect(container.innerHTML).toBe('<div><!--hi--></div>')
- expect(`Hydration node mismatch`).toHaveBeenWarned()
- })
- test('comment mismatch (text)', () => {
- const { container } = mountWithHydration(`<div>foobar</div>`, () =>
- h('div', [createCommentVNode('hi')]),
- )
- expect(container.innerHTML).toBe('<div><!--hi--></div>')
- expect(`Hydration node mismatch`).toHaveBeenWarned()
- })
- test('class mismatch', () => {
- mountWithHydration(`<div class="foo bar"></div>`, () =>
- h('div', { class: ['foo', 'bar'] }),
- )
- mountWithHydration(`<div class="foo bar"></div>`, () =>
- h('div', { class: { foo: true, bar: true } }),
- )
- mountWithHydration(`<div class="foo bar"></div>`, () =>
- h('div', { class: 'foo bar' }),
- )
- // SVG classes
- mountWithHydration(`<svg class="foo bar"></svg>`, () =>
- h('svg', { class: 'foo bar' }),
- )
- // class with different order
- mountWithHydration(`<div class="foo bar"></div>`, () =>
- h('div', { class: 'bar foo' }),
- )
- expect(`Hydration class mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<div class="foo bar"></div>`, () =>
- h('div', { class: 'foo' }),
- )
- expect(`Hydration class mismatch`).toHaveBeenWarned()
- })
- test('style mismatch', () => {
- mountWithHydration(`<div style="color:red;"></div>`, () =>
- h('div', { style: { color: 'red' } }),
- )
- mountWithHydration(`<div style="color:red;"></div>`, () =>
- h('div', { style: `color:red;` }),
- )
- mountWithHydration(
- `<div style="color:red; font-size: 12px;"></div>`,
- () => h('div', { style: `font-size: 12px; color:red;` }),
- )
- mountWithHydration(`<div style="color:red;display:none;"></div>`, () =>
- withDirectives(createVNode('div', { style: 'color: red' }, ''), [
- [vShow, false],
- ]),
- )
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<div style="color:red;"></div>`, () =>
- h('div', { style: { color: 'green' } }),
- )
- expect(`Hydration style mismatch`).toHaveBeenWarnedTimes(1)
- })
- test('style mismatch when no style attribute is present', () => {
- mountWithHydration(`<div></div>`, () =>
- h('div', { style: { color: 'red' } }),
- )
- expect(`Hydration style mismatch`).toHaveBeenWarnedTimes(1)
- })
- test('style mismatch w/ v-show', () => {
- mountWithHydration(`<div style="color:red;display:none"></div>`, () =>
- withDirectives(createVNode('div', { style: 'color: red' }, ''), [
- [vShow, false],
- ]),
- )
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<div style="color:red;"></div>`, () =>
- withDirectives(createVNode('div', { style: 'color: red' }, ''), [
- [vShow, false],
- ]),
- )
- expect(`Hydration style mismatch`).toHaveBeenWarnedTimes(1)
- })
- test('attr mismatch', () => {
- mountWithHydration(`<div id="foo"></div>`, () => h('div', { id: 'foo' }))
- mountWithHydration(`<div spellcheck></div>`, () =>
- h('div', { spellcheck: '' }),
- )
- mountWithHydration(`<div></div>`, () => h('div', { id: undefined }))
- // boolean
- mountWithHydration(`<select multiple></div>`, () =>
- h('select', { multiple: true }),
- )
- mountWithHydration(`<select multiple></div>`, () =>
- h('select', { multiple: 'multiple' }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<div></div>`, () => h('div', { id: 'foo' }))
- expect(`Hydration attribute mismatch`).toHaveBeenWarnedTimes(1)
- mountWithHydration(`<div id="bar"></div>`, () => h('div', { id: 'foo' }))
- expect(`Hydration attribute mismatch`).toHaveBeenWarnedTimes(2)
- })
- test('attr special case: textarea value', () => {
- mountWithHydration(`<textarea>foo</textarea>`, () =>
- h('textarea', { value: 'foo' }),
- )
- mountWithHydration(`<textarea></textarea>`, () =>
- h('textarea', { value: '' }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<textarea>foo</textarea>`, () =>
- h('textarea', { value: 'bar' }),
- )
- expect(`Hydration attribute mismatch`).toHaveBeenWarned()
- })
- // #11873
- test('<textarea> with newlines at the beginning', async () => {
- const render = () => h('textarea', null, '\nhello')
- const html = await renderToString(createSSRApp({ render }))
- mountWithHydration(html, render)
- expect(`Hydration text content mismatch`).not.toHaveBeenWarned()
- })
- test('<pre> with newlines at the beginning', async () => {
- const render = () => h('pre', null, '\n')
- const html = await renderToString(createSSRApp({ render }))
- mountWithHydration(html, render)
- expect(`Hydration text content mismatch`).not.toHaveBeenWarned()
- })
- test('boolean attr handling', () => {
- mountWithHydration(`<input />`, () => h('input', { readonly: false }))
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<input readonly />`, () =>
- h('input', { readonly: true }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<input readonly="readonly" />`, () =>
- h('input', { readonly: true }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- test('client value is null or undefined', () => {
- mountWithHydration(`<div></div>`, () =>
- h('div', { draggable: undefined }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- mountWithHydration(`<input />`, () => h('input', { type: null }))
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- test('should not warn against object values', () => {
- mountWithHydration(`<input />`, () => h('input', { from: {} }))
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- test('should not warn on falsy bindings of non-property keys', () => {
- mountWithHydration(`<button />`, () => h('button', { href: undefined }))
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- test('should not warn on non-renderable option values', () => {
- mountWithHydration(`<select><option>hello</option></select>`, () =>
- h('select', [h('option', { value: ['foo'] }, 'hello')]),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- test('should not warn css v-bind', () => {
- const container = document.createElement('div')
- container.innerHTML = `<div style="--foo:red;color:var(--foo);" />`
- const app = createSSRApp({
- setup() {
- useCssVars(() => ({
- foo: 'red',
- }))
- return () => h('div', { style: { color: 'var(--foo)' } })
- },
- })
- app.mount(container)
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- // #10317 - test case from #10325
- test('css vars should only be added to expected on component root dom', () => {
- const container = document.createElement('div')
- container.innerHTML = `<div style="--foo:red;"><div style="color:var(--foo);" /></div>`
- const app = createSSRApp({
- setup() {
- useCssVars(() => ({
- foo: 'red',
- }))
- return () =>
- h('div', null, [h('div', { style: { color: 'var(--foo)' } })])
- },
- })
- app.mount(container)
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- // #11188
- test('css vars support fallthrough', () => {
- const container = document.createElement('div')
- container.innerHTML = `<div style="padding: 4px;--foo:red;"></div>`
- const app = createSSRApp({
- setup() {
- useCssVars(() => ({
- foo: 'red',
- }))
- return () => h(Child)
- },
- })
- const Child = {
- setup() {
- return () => h('div', { style: 'padding: 4px' })
- },
- }
- app.mount(container)
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- // #11189
- test('should not warn for directives that mutate DOM in created', () => {
- const container = document.createElement('div')
- container.innerHTML = `<div class="test red"></div>`
- const vColor: ObjectDirective = {
- created(el, binding) {
- el.classList.add(binding.value)
- },
- }
- const app = createSSRApp({
- setup() {
- return () =>
- withDirectives(h('div', { class: 'test' }), [[vColor, 'red']])
- },
- })
- app.mount(container)
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- test('escape css var name', () => {
- const container = document.createElement('div')
- container.innerHTML = `<div style="padding: 4px;--foo\\.bar:red;"></div>`
- const app = createSSRApp({
- setup() {
- useCssVars(() => ({
- 'foo.bar': 'red',
- }))
- return () => h(Child)
- },
- })
- const Child = {
- setup() {
- return () => h('div', { style: 'padding: 4px' })
- },
- }
- app.mount(container)
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- })
- describe('data-allow-mismatch', () => {
- test('element text content', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="text">foo</div>`,
- () => h('div', 'bar'),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="text">bar</div>',
- )
- expect(`Hydration text content mismatch`).not.toHaveBeenWarned()
- })
- test('not enough children', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"></div>`,
- () => h('div', [h('span', 'foo'), h('span', 'bar')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><span>foo</span><span>bar</span></div>',
- )
- expect(`Hydration children mismatch`).not.toHaveBeenWarned()
- })
- test('too many children', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><span>foo</span><span>bar</span></div>`,
- () => h('div', [h('span', 'foo')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><span>foo</span></div>',
- )
- expect(`Hydration children mismatch`).not.toHaveBeenWarned()
- })
- test('complete mismatch', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><span>foo</span><span>bar</span></div>`,
- () => h('div', [h('div', 'foo'), h('p', 'bar')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><div>foo</div><p>bar</p></div>',
- )
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('fragment mismatch removal', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><!--[--><div>foo</div><div>bar</div><!--]--></div>`,
- () => h('div', [h('span', 'replaced')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><span>replaced</span></div>',
- )
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('fragment not enough children', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><!--[--><div>foo</div><!--]--><div>baz</div></div>`,
- () => h('div', [[h('div', 'foo'), h('div', 'bar')], h('div', 'baz')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><!--[--><div>foo</div><div>bar</div><!--]--><div>baz</div></div>',
- )
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('fragment too many children', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><!--[--><div>foo</div><div>bar</div><!--]--><div>baz</div></div>`,
- () => h('div', [[h('div', 'foo')], h('div', 'baz')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><!--[--><div>foo</div><!--]--><div>baz</div></div>',
- )
- // fragment ends early and attempts to hydrate the extra <div>bar</div>
- // as 2nd fragment child.
- expect(`Hydration text content mismatch`).not.toHaveBeenWarned()
- // excessive children removal
- expect(`Hydration children mismatch`).not.toHaveBeenWarned()
- })
- test('comment mismatch (element)', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children"><span></span></div>`,
- () => h('div', [createCommentVNode('hi')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><!--hi--></div>',
- )
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('comment mismatch (text)', () => {
- const { container } = mountWithHydration(
- `<div data-allow-mismatch="children">foobar</div>`,
- () => h('div', [createCommentVNode('hi')]),
- )
- expect(container.innerHTML).toBe(
- '<div data-allow-mismatch="children"><!--hi--></div>',
- )
- expect(`Hydration node mismatch`).not.toHaveBeenWarned()
- })
- test('class mismatch', () => {
- mountWithHydration(
- `<div class="foo bar" data-allow-mismatch="class"></div>`,
- () => h('div', { class: 'foo' }),
- )
- expect(`Hydration class mismatch`).not.toHaveBeenWarned()
- })
- test('style mismatch', () => {
- mountWithHydration(
- `<div style="color:red;" data-allow-mismatch="style"></div>`,
- () => h('div', { style: { color: 'green' } }),
- )
- expect(`Hydration style mismatch`).not.toHaveBeenWarned()
- })
- test('attr mismatch', () => {
- mountWithHydration(`<div data-allow-mismatch="attribute"></div>`, () =>
- h('div', { id: 'foo' }),
- )
- mountWithHydration(
- `<div id="bar" data-allow-mismatch="attribute"></div>`,
- () => h('div', { id: 'foo' }),
- )
- expect(`Hydration attribute mismatch`).not.toHaveBeenWarned()
- })
- })
- })
|