| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- import {
- Fragment,
- Suspense,
- createBlock,
- createCommentVNode,
- createVNode,
- defineComponent,
- h,
- nextTick,
- nodeOps,
- openBlock,
- popScopeId,
- pushScopeId,
- ref,
- render,
- renderSlot,
- serializeInner,
- withScopeId,
- } from '@vue/runtime-test'
- import { withCtx } from '../src/componentRenderContext'
- import { PatchFlags } from '@vue/shared'
- describe('scopeId runtime support', () => {
- test('should attach scopeId', () => {
- const App = {
- __scopeId: 'parent',
- render: () => h('div', [h('div')]),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(`<div parent><div parent></div></div>`)
- })
- test('should attach scopeId to components in parent component', () => {
- const Child = {
- __scopeId: 'child',
- render: () => h('div'),
- }
- const App = {
- __scopeId: 'parent',
- render: () => h('div', [h(Child)]),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(
- `<div parent><div child parent></div></div>`,
- )
- })
- // #5148
- test('should attach scopeId to suspense content', async () => {
- const deps: Promise<any>[] = []
- const Child = {
- async setup() {
- const p = new Promise(r => setTimeout(r, 1))
- deps.push(p.then(() => Promise.resolve()))
- await p
- return () => h('div', 'async')
- },
- }
- const Wrapper = {
- setup(_: any, { slots }: any) {
- return () => slots.default({ Component: h(Child) })
- },
- }
- const App = {
- __scopeId: 'parent',
- setup() {
- return () =>
- h(Wrapper, null, {
- default: withCtx(({ Component }: any) =>
- h(Suspense, null, {
- default: h(Component),
- fallback: h('div', 'fallback'),
- }),
- ),
- })
- },
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(`<div parent>fallback</div>`)
- await Promise.all(deps)
- await nextTick()
- expect(serializeInner(root)).toBe(`<div parent>async</div>`)
- })
- // :slotted basic
- test('should work on slots', () => {
- const Child = {
- __scopeId: 'child',
- render(this: any) {
- return h('div', renderSlot(this.$slots, 'default'))
- },
- }
- const Child2 = {
- __scopeId: 'child2',
- render: () => h('span'),
- }
- const App = {
- __scopeId: 'parent',
- render: () => {
- return h(
- Child,
- withCtx(() => {
- return [h('div'), h(Child2)]
- }),
- )
- },
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- // slot content should have:
- // - scopeId from parent
- // - slotted scopeId (with `-s` postfix) from child (the tree owner)
- expect(serializeInner(root)).toBe(
- `<div child parent>` +
- `<div parent child-s></div>` +
- // component inside slot should have:
- // - scopeId from template context
- // - slotted scopeId from slot owner
- // - its own scopeId
- `<span child2 parent child-s></span>` +
- `</div>`,
- )
- })
- // #2892
- test(':slotted on forwarded slots', async () => {
- const Wrapper = {
- __scopeId: 'wrapper',
- render(this: any) {
- // <div class="wrapper"><slot/></div>
- return h('div', { class: 'wrapper' }, [
- renderSlot(
- this.$slots,
- 'default',
- {},
- undefined,
- true /* noSlotted */,
- ),
- ])
- },
- }
- const Slotted = {
- __scopeId: 'slotted',
- render(this: any) {
- // <Wrapper><slot/></Wrapper>
- return h(Wrapper, null, {
- default: withCtx(() => [renderSlot(this.$slots, 'default')]),
- })
- },
- }
- // simulate hoisted node
- pushScopeId('root')
- const hoisted = h('div', 'hoisted')
- popScopeId()
- const Root = {
- __scopeId: 'root',
- render(this: any) {
- // <Slotted><div>hoisted</div><div>{{ dynamic }}</div></Slotted>
- return h(Slotted, null, {
- default: withCtx(() => {
- return [hoisted, h('div', 'dynamic')]
- }),
- })
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Root), root)
- expect(serializeInner(root)).toBe(
- `<div wrapper slotted root class="wrapper">` +
- `<div root slotted-s>hoisted</div>` +
- `<div root slotted-s>dynamic</div>` +
- `</div>`,
- )
- const Root2 = {
- __scopeId: 'root',
- render(this: any) {
- // <Slotted>
- // <Wrapper>
- // <div>hoisted</div><div>{{ dynamic }}</div>
- // </Wrapper>
- // </Slotted>
- return h(Slotted, null, {
- default: withCtx(() => [
- h(Wrapper, null, {
- default: withCtx(() => [hoisted, h('div', 'dynamic')]),
- }),
- ]),
- })
- },
- }
- const root2 = nodeOps.createElement('div')
- render(h(Root2), root2)
- expect(serializeInner(root2)).toBe(
- `<div wrapper slotted root class="wrapper">` +
- `<div wrapper root slotted-s class="wrapper">` +
- `<div root>hoisted</div>` +
- `<div root>dynamic</div>` +
- `</div>` +
- `</div>`,
- )
- })
- // #1988
- test('should inherit scopeId through nested HOCs with inheritAttrs: false', () => {
- const App = {
- __scopeId: 'parent',
- render: () => {
- return h(Child)
- },
- }
- function Child() {
- return h(Child2, { class: 'foo' })
- }
- function Child2() {
- return h('div')
- }
- Child2.inheritAttrs = false
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(`<div parent></div>`)
- })
- test('should inherit scopeId through nested DEV_ROOT_FRAGMENT with inheritAttrs: false', async () => {
- const Parent = {
- __scopeId: 'parent',
- render() {
- return h(Child, { class: 'foo' })
- },
- }
- const ok = ref(true)
- const Child = defineComponent({
- inheritAttrs: false,
- render() {
- return (
- openBlock(),
- createBlock(
- Fragment,
- null,
- [
- createCommentVNode('comment1'),
- ok.value
- ? (openBlock(), createBlock('div', { key: 0 }, 'div1'))
- : (openBlock(),
- createBlock(
- Fragment,
- { key: 1 },
- [
- createCommentVNode('comment2'),
- createVNode('div', null, 'div2'),
- ],
- PatchFlags.STABLE_FRAGMENT | PatchFlags.DEV_ROOT_FRAGMENT,
- )),
- ],
- PatchFlags.STABLE_FRAGMENT | PatchFlags.DEV_ROOT_FRAGMENT,
- )
- )
- },
- })
- const root = nodeOps.createElement('div')
- render(h(Parent), root)
- expect(serializeInner(root)).toBe(`<!--comment1--><div parent>div1</div>`)
- ok.value = false
- await nextTick()
- expect(serializeInner(root)).toBe(
- `<!--comment1--><!--comment2--><div parent>div2</div>`,
- )
- })
- })
- describe('backwards compat with <=3.0.7', () => {
- const withParentId = withScopeId('parent')
- const withChildId = withScopeId('child')
- test('should attach scopeId', () => {
- const App = {
- __scopeId: 'parent',
- render: withParentId(() => {
- return h('div', [h('div')])
- }),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(`<div parent><div parent></div></div>`)
- })
- test('should attach scopeId to components in parent component', () => {
- const Child = {
- __scopeId: 'child',
- render: withChildId(() => {
- return h('div')
- }),
- }
- const App = {
- __scopeId: 'parent',
- render: withParentId(() => {
- return h('div', [h(Child)])
- }),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(
- `<div parent><div child parent></div></div>`,
- )
- })
- test('should work on slots', () => {
- const Child = {
- __scopeId: 'child',
- render: withChildId(function (this: any) {
- return h('div', renderSlot(this.$slots, 'default'))
- }),
- }
- const withChild2Id = withScopeId('child2')
- const Child2 = {
- __scopeId: 'child2',
- render: withChild2Id(() => h('span')),
- }
- const App = {
- __scopeId: 'parent',
- render: withParentId(() => {
- return h(
- Child,
- withParentId(() => {
- return [h('div'), h(Child2)]
- }),
- )
- }),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- // slot content should have:
- // - scopeId from parent
- // - slotted scopeId (with `-s` postfix) from child (the tree owner)
- expect(serializeInner(root)).toBe(
- `<div child parent>` +
- `<div parent child-s></div>` +
- // component inside slot should have:
- // - scopeId from template context
- // - slotted scopeId from slot owner
- // - its own scopeId
- `<span child2 parent child-s></span>` +
- `</div>`,
- )
- })
- // #1988
- test('should inherit scopeId through nested HOCs with inheritAttrs: false', () => {
- const withParentId = withScopeId('parent')
- const App = {
- __scopeId: 'parent',
- render: withParentId(() => {
- return h(Child)
- }),
- }
- function Child() {
- return h(Child2, { class: 'foo' })
- }
- function Child2() {
- return h('div')
- }
- Child2.inheritAttrs = false
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(`<div parent></div>`)
- })
- test('hoisted nodes', async () => {
- pushScopeId('foobar')
- const hoisted = h('div', 'hello')
- popScopeId()
- const App = {
- __scopeId: 'foobar',
- render: () => h('div', [hoisted]),
- }
- const root = nodeOps.createElement('div')
- render(h(App), root)
- expect(serializeInner(root)).toBe(
- `<div foobar><div foobar>hello</div></div>`,
- )
- })
- })
|