| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397 |
- import {
- h,
- nodeOps,
- render,
- serializeInner,
- triggerEvent,
- TestElement,
- nextTick,
- renderToString,
- ref,
- defineComponent,
- createApp
- } from '@vue/runtime-test'
- describe('api: options', () => {
- test('data', async () => {
- const Comp = defineComponent({
- data() {
- return {
- foo: 1
- }
- },
- render() {
- return h(
- 'div',
- {
- onClick: () => {
- this.foo++
- }
- },
- this.foo
- )
- }
- })
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(serializeInner(root)).toBe(`<div>1</div>`)
- triggerEvent(root.children[0] as TestElement, 'click')
- await nextTick()
- expect(serializeInner(root)).toBe(`<div>2</div>`)
- })
- test('computed', async () => {
- const Comp = defineComponent({
- data() {
- return {
- foo: 1
- }
- },
- computed: {
- bar(): number {
- return this.foo + 1
- },
- baz: (vm): number => vm.bar + 1
- },
- render() {
- return h(
- 'div',
- {
- onClick: () => {
- this.foo++
- }
- },
- this.bar + this.baz
- )
- }
- })
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(serializeInner(root)).toBe(`<div>5</div>`)
- triggerEvent(root.children[0] as TestElement, 'click')
- await nextTick()
- expect(serializeInner(root)).toBe(`<div>7</div>`)
- })
- test('methods', async () => {
- const Comp = defineComponent({
- data() {
- // #3300 method on ctx should be overwritable
- this.incBy = this.incBy.bind(this, 2)
- return {
- foo: 1
- }
- },
- methods: {
- inc() {
- this.foo++
- },
- incBy(n = 0) {
- this.foo += n
- }
- },
- render() {
- return h(
- 'div',
- {
- onClick: this.inc,
- onFoo: this.incBy
- },
- this.foo
- )
- }
- })
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(serializeInner(root)).toBe(`<div>1</div>`)
- triggerEvent(root.children[0] as TestElement, 'click')
- await nextTick()
- expect(serializeInner(root)).toBe(`<div>2</div>`)
- triggerEvent(root.children[0] as TestElement, 'foo')
- await nextTick()
- expect(serializeInner(root)).toBe(`<div>4</div>`)
- })
- test('component’s own methods have higher priority than global properties', async () => {
- const app = createApp({
- methods: {
- foo() {
- return 'foo'
- }
- },
- render() {
- return this.foo()
- }
- })
- app.config.globalProperties.foo = () => 'bar'
- const root = nodeOps.createElement('div')
- app.mount(root)
- expect(serializeInner(root)).toBe(`foo`)
- })
- test('watch', async () => {
- function returnThis(this: any) {
- return this
- }
- const spyA = jest.fn(returnThis)
- const spyB = jest.fn(returnThis)
- const spyC = jest.fn(returnThis)
- const spyD = jest.fn(returnThis)
- const spyE = jest.fn(returnThis)
- let ctx: any
- const Comp = {
- data() {
- return {
- foo: 1,
- bar: 2,
- baz: {
- qux: 3
- },
- qux: 4,
- dot: {
- path: 5
- }
- }
- },
- watch: {
- // string method name
- foo: 'onFooChange',
- // direct function
- bar: spyB,
- baz: {
- handler: spyC,
- deep: true
- },
- qux: {
- handler: 'onQuxChange'
- },
- 'dot.path': spyE
- },
- methods: {
- onFooChange: spyA,
- onQuxChange: spyD
- },
- render() {
- ctx = this
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- function assertCall(spy: jest.Mock, callIndex: number, args: any[]) {
- expect(spy.mock.calls[callIndex].slice(0, 2)).toMatchObject(args)
- expect(spy).toHaveReturnedWith(ctx)
- }
- ctx.foo++
- await nextTick()
- expect(spyA).toHaveBeenCalledTimes(1)
- assertCall(spyA, 0, [2, 1])
- ctx.bar++
- await nextTick()
- expect(spyB).toHaveBeenCalledTimes(1)
- assertCall(spyB, 0, [3, 2])
- ctx.baz.qux++
- await nextTick()
- expect(spyC).toHaveBeenCalledTimes(1)
- // new and old objects have same identity
- assertCall(spyC, 0, [{ qux: 4 }, { qux: 4 }])
- ctx.qux++
- await nextTick()
- expect(spyD).toHaveBeenCalledTimes(1)
- assertCall(spyD, 0, [5, 4])
- ctx.dot.path++
- await nextTick()
- expect(spyE).toHaveBeenCalledTimes(1)
- assertCall(spyE, 0, [6, 5])
- })
- test('watch array', async () => {
- function returnThis(this: any) {
- return this
- }
- const spyA = jest.fn(returnThis)
- const spyB = jest.fn(returnThis)
- const spyC = jest.fn(returnThis)
- let ctx: any
- const Comp = {
- data() {
- return {
- foo: 1,
- bar: 2,
- baz: {
- qux: 3
- }
- }
- },
- watch: {
- // string method name
- foo: ['onFooChange'],
- // direct function
- bar: [spyB],
- baz: [
- {
- handler: spyC,
- deep: true
- }
- ]
- },
- methods: {
- onFooChange: spyA
- },
- render() {
- ctx = this
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- function assertCall(spy: jest.Mock, callIndex: number, args: any[]) {
- expect(spy.mock.calls[callIndex].slice(0, 2)).toMatchObject(args)
- expect(spy).toHaveReturnedWith(ctx)
- }
- ctx.foo++
- await nextTick()
- expect(spyA).toHaveBeenCalledTimes(1)
- assertCall(spyA, 0, [2, 1])
- ctx.bar++
- await nextTick()
- expect(spyB).toHaveBeenCalledTimes(1)
- assertCall(spyB, 0, [3, 2])
- ctx.baz.qux++
- await nextTick()
- expect(spyC).toHaveBeenCalledTimes(1)
- // new and old objects have same identity
- assertCall(spyC, 0, [{ qux: 4 }, { qux: 4 }])
- })
- test('provide/inject', () => {
- const symbolKey = Symbol()
- const Root = defineComponent({
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a,
- [symbolKey]: 2
- }
- },
- render() {
- return [
- h(ChildA),
- h(ChildB),
- h(ChildC),
- h(ChildD),
- h(ChildE),
- h(ChildF),
- h(ChildG),
- h(ChildH),
- h(ChildI),
- h(ChildJ)
- ]
- }
- })
- const defineChild = (injectOptions: any, injectedKey = 'b') =>
- ({
- inject: injectOptions,
- render() {
- return this[injectedKey]
- }
- } as any)
- const ChildA = defineChild(['a'], 'a')
- const ChildB = defineChild({ b: 'a' })
- const ChildC = defineChild({
- b: {
- from: 'a'
- }
- })
- const ChildD = defineChild(
- {
- a: {
- default: () => 0
- }
- },
- 'a'
- )
- const ChildE = defineChild({
- b: {
- from: 'c',
- default: 2
- }
- })
- const ChildF = defineChild({
- b: {
- from: 'c',
- default: () => 3
- }
- })
- const ChildG = defineChild({
- b: {
- default: 4
- }
- })
- const ChildH = defineChild({
- b: {
- default: () => 5
- }
- })
- const ChildI = defineChild({
- b: symbolKey
- })
- const ChildJ = defineChild({
- b: {
- from: symbolKey
- }
- })
- expect(renderToString(h(Root))).toBe(`1111234522`)
- })
- test('provide accessing data in extends', () => {
- const Base = defineComponent({
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a
- }
- }
- })
- const Child = {
- inject: ['a'],
- render() {
- return (this as any).a
- }
- }
- const Root = defineComponent({
- extends: Base,
- render() {
- return h(Child)
- }
- })
- expect(renderToString(h(Root))).toBe(`1`)
- })
- test('lifecycle', async () => {
- const count = ref(0)
- const root = nodeOps.createElement('div')
- const calls: string[] = []
- const Root = {
- beforeCreate() {
- calls.push('root beforeCreate')
- },
- created() {
- calls.push('root created')
- },
- beforeMount() {
- calls.push('root onBeforeMount')
- },
- mounted() {
- calls.push('root onMounted')
- },
- beforeUpdate() {
- calls.push('root onBeforeUpdate')
- },
- updated() {
- calls.push('root onUpdated')
- },
- beforeUnmount() {
- calls.push('root onBeforeUnmount')
- },
- unmounted() {
- calls.push('root onUnmounted')
- },
- render() {
- return h(Mid, { count: count.value })
- }
- }
- const Mid = {
- beforeCreate() {
- calls.push('mid beforeCreate')
- },
- created() {
- calls.push('mid created')
- },
- beforeMount() {
- calls.push('mid onBeforeMount')
- },
- mounted() {
- calls.push('mid onMounted')
- },
- beforeUpdate() {
- calls.push('mid onBeforeUpdate')
- },
- updated() {
- calls.push('mid onUpdated')
- },
- beforeUnmount() {
- calls.push('mid onBeforeUnmount')
- },
- unmounted() {
- calls.push('mid onUnmounted')
- },
- render(this: any) {
- return h(Child, { count: this.$props.count })
- }
- }
- const Child = {
- beforeCreate() {
- calls.push('child beforeCreate')
- },
- created() {
- calls.push('child created')
- },
- beforeMount() {
- calls.push('child onBeforeMount')
- },
- mounted() {
- calls.push('child onMounted')
- },
- beforeUpdate() {
- calls.push('child onBeforeUpdate')
- },
- updated() {
- calls.push('child onUpdated')
- },
- beforeUnmount() {
- calls.push('child onBeforeUnmount')
- },
- unmounted() {
- calls.push('child onUnmounted')
- },
- render(this: any) {
- return h('div', this.$props.count)
- }
- }
- // mount
- render(h(Root), root)
- expect(calls).toEqual([
- 'root beforeCreate',
- 'root created',
- 'root onBeforeMount',
- 'mid beforeCreate',
- 'mid created',
- 'mid onBeforeMount',
- 'child beforeCreate',
- 'child created',
- 'child onBeforeMount',
- 'child onMounted',
- 'mid onMounted',
- 'root onMounted'
- ])
- calls.length = 0
- // update
- count.value++
- await nextTick()
- expect(calls).toEqual([
- 'root onBeforeUpdate',
- 'mid onBeforeUpdate',
- 'child onBeforeUpdate',
- 'child onUpdated',
- 'mid onUpdated',
- 'root onUpdated'
- ])
- calls.length = 0
- // unmount
- render(null, root)
- expect(calls).toEqual([
- 'root onBeforeUnmount',
- 'mid onBeforeUnmount',
- 'child onBeforeUnmount',
- 'child onUnmounted',
- 'mid onUnmounted',
- 'root onUnmounted'
- ])
- })
- test('mixins', () => {
- const calls: string[] = []
- const mixinA = {
- data() {
- return {
- a: 1
- }
- },
- created(this: any) {
- calls.push('mixinA created')
- expect(this.a).toBe(1)
- expect(this.b).toBe(2)
- expect(this.c).toBe(4)
- },
- mounted() {
- calls.push('mixinA mounted')
- }
- }
- const mixinB = {
- props: {
- bP: {
- type: String
- }
- },
- data() {
- return {
- b: 2
- }
- },
- created(this: any) {
- calls.push('mixinB created')
- expect(this.a).toBe(1)
- expect(this.b).toBe(2)
- expect(this.bP).toBeUndefined()
- expect(this.c).toBe(4)
- expect(this.cP1).toBeUndefined()
- },
- mounted() {
- calls.push('mixinB mounted')
- }
- }
- const mixinC = defineComponent({
- props: ['cP1', 'cP2'],
- data() {
- return {
- c: 3
- }
- },
- created() {
- calls.push('mixinC created')
- // component data() should overwrite mixin field with same key
- expect(this.c).toBe(4)
- expect(this.cP1).toBeUndefined()
- },
- mounted() {
- calls.push('mixinC mounted')
- }
- })
- const Comp = defineComponent({
- props: {
- aaa: String
- },
- mixins: [defineComponent(mixinA), defineComponent(mixinB), mixinC],
- data() {
- return {
- c: 4,
- z: 4
- }
- },
- created() {
- calls.push('comp created')
- expect(this.a).toBe(1)
- expect(this.b).toBe(2)
- expect(this.bP).toBeUndefined()
- expect(this.c).toBe(4)
- expect(this.cP2).toBeUndefined()
- expect(this.z).toBe(4)
- },
- mounted() {
- calls.push('comp mounted')
- },
- render() {
- return `${this.a}${this.b}${this.c}`
- }
- })
- expect(renderToString(h(Comp))).toBe(`124`)
- expect(calls).toEqual([
- 'mixinA created',
- 'mixinB created',
- 'mixinC created',
- 'comp created',
- 'mixinA mounted',
- 'mixinB mounted',
- 'mixinC mounted',
- 'comp mounted'
- ])
- })
- test('render from mixin', () => {
- const Comp = {
- mixins: [
- {
- render: () => 'from mixin'
- }
- ]
- }
- expect(renderToString(h(Comp))).toBe('from mixin')
- })
- test('chained mixins in extends', () => {
- const calls: string[] = []
- const mixinA = {
- beforeCreate() {
- calls.push('mixinA beforeCreate')
- },
- created() {
- calls.push('mixinA created')
- }
- }
- const extendA = {
- mixins: [mixinA],
- beforeCreate() {
- calls.push('extendA beforeCreate')
- },
- created() {
- calls.push('extendA created')
- }
- }
- const Comp = {
- extends: extendA,
- render: () => '123',
- beforeCreate() {
- calls.push('self beforeCreate')
- },
- created() {
- calls.push('self created')
- }
- }
- expect(renderToString(h(Comp))).toBe(`123`)
- expect(calls).toEqual([
- 'mixinA beforeCreate',
- 'extendA beforeCreate',
- 'self beforeCreate',
- 'mixinA created',
- 'extendA created',
- 'self created'
- ])
- })
- test('chained extends in mixins', () => {
- const calls: string[] = []
- const extendA = {
- beforeCreate() {
- calls.push('extendA beforeCreate')
- },
- created() {
- calls.push('extendA created')
- }
- }
- const mixinA = {
- extends: extendA,
- beforeCreate() {
- calls.push('mixinA beforeCreate')
- },
- created() {
- calls.push('mixinA created')
- }
- }
- const Comp = {
- mixins: [mixinA],
- render: () => '123',
- beforeCreate() {
- calls.push('self beforeCreate')
- },
- created() {
- calls.push('self created')
- }
- }
- expect(renderToString(h(Comp))).toBe(`123`)
- expect(calls).toEqual([
- 'extendA beforeCreate',
- 'mixinA beforeCreate',
- 'self beforeCreate',
- 'extendA created',
- 'mixinA created',
- 'self created'
- ])
- })
- test('extends', () => {
- const calls: string[] = []
- const Base = {
- data() {
- return {
- a: 1,
- b: 1
- }
- },
- methods: {
- sayA() {}
- },
- mounted(this: any) {
- expect(this.a).toBe(1)
- expect(this.b).toBe(2)
- calls.push('base')
- }
- }
- const Comp = defineComponent({
- extends: defineComponent(Base),
- data() {
- return {
- b: 2
- }
- },
- mounted() {
- calls.push('comp')
- },
- render() {
- return `${this.a}${this.b}`
- }
- })
- expect(renderToString(h(Comp))).toBe(`12`)
- expect(calls).toEqual(['base', 'comp'])
- })
- test('extends with mixins', () => {
- const calls: string[] = []
- const Base = {
- data() {
- return {
- a: 1,
- x: 'base'
- }
- },
- methods: {
- sayA() {}
- },
- mounted(this: any) {
- expect(this.a).toBe(1)
- expect(this.b).toBeTruthy()
- expect(this.c).toBe(2)
- calls.push('base')
- }
- }
- const Mixin = {
- data() {
- return {
- b: true,
- x: 'mixin'
- }
- },
- mounted(this: any) {
- expect(this.a).toBe(1)
- expect(this.b).toBeTruthy()
- expect(this.c).toBe(2)
- calls.push('mixin')
- }
- }
- const Comp = defineComponent({
- extends: defineComponent(Base),
- mixins: [defineComponent(Mixin)],
- data() {
- return {
- c: 2
- }
- },
- mounted() {
- calls.push('comp')
- },
- render() {
- return `${this.a}${this.b}${this.c}${this.x}`
- }
- })
- expect(renderToString(h(Comp))).toBe(`1true2mixin`)
- expect(calls).toEqual(['base', 'mixin', 'comp'])
- })
- test('beforeCreate/created in extends and mixins', () => {
- const calls: string[] = []
- const BaseA = {
- beforeCreate() {
- calls.push('beforeCreateA')
- },
- created() {
- calls.push('createdA')
- }
- }
- const BaseB = {
- extends: BaseA,
- beforeCreate() {
- calls.push('beforeCreateB')
- },
- created() {
- calls.push('createdB')
- }
- }
- const MixinA = {
- beforeCreate() {
- calls.push('beforeCreateC')
- },
- created() {
- calls.push('createdC')
- }
- }
- const MixinB = {
- mixins: [MixinA],
- beforeCreate() {
- calls.push('beforeCreateD')
- },
- created() {
- calls.push('createdD')
- }
- }
- const Comp = {
- extends: BaseB,
- mixins: [MixinB],
- beforeCreate() {
- calls.push('selfBeforeCreate')
- },
- created() {
- calls.push('selfCreated')
- },
- render() {}
- }
- renderToString(h(Comp))
- expect(calls).toEqual([
- 'beforeCreateA',
- 'beforeCreateB',
- 'beforeCreateC',
- 'beforeCreateD',
- 'selfBeforeCreate',
- 'createdA',
- 'createdB',
- 'createdC',
- 'createdD',
- 'selfCreated'
- ])
- })
- test('flatten merged options', async () => {
- const MixinBase = {
- msg1: 'base'
- }
- const ExtendsBase = {
- msg2: 'base'
- }
- const Mixin = {
- mixins: [MixinBase]
- }
- const Extends = {
- extends: ExtendsBase
- }
- const Comp = defineComponent({
- extends: defineComponent(Extends),
- mixins: [defineComponent(Mixin)],
- render() {
- return `${this.$options.msg1},${this.$options.msg2}`
- }
- })
- expect(renderToString(h(Comp))).toBe('base,base')
- })
- test('options defined in component have higher priority', async () => {
- const Mixin = {
- msg1: 'base'
- }
- const Extends = {
- msg2: 'base'
- }
- const Comp = defineComponent({
- msg1: 'local',
- msg2: 'local',
- extends: defineComponent(Extends),
- mixins: [defineComponent(Mixin)],
- render() {
- return `${this.$options.msg1},${this.$options.msg2}`
- }
- })
- expect(renderToString(h(Comp))).toBe('local,local')
- })
- test('accessing setup() state from options', async () => {
- const Comp = defineComponent({
- setup() {
- return {
- count: ref(0)
- }
- },
- data() {
- return {
- plusOne: (this as any).count + 1
- }
- },
- computed: {
- plusTwo(): number {
- return this.count + 2
- }
- },
- methods: {
- inc() {
- this.count++
- }
- },
- render() {
- return h(
- 'div',
- {
- onClick: this.inc
- },
- `${this.count},${this.plusOne},${this.plusTwo}`
- )
- }
- })
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(serializeInner(root)).toBe(`<div>0,1,2</div>`)
- triggerEvent(root.children[0] as TestElement, 'click')
- await nextTick()
- expect(serializeInner(root)).toBe(`<div>1,1,3</div>`)
- })
- // #1016
- test('watcher initialization should be deferred in mixins', async () => {
- const mixin1 = {
- data() {
- return {
- mixin1Data: 'mixin1'
- }
- },
- methods: {}
- }
- const watchSpy = jest.fn()
- const mixin2 = {
- watch: {
- mixin3Data: watchSpy
- }
- }
- const mixin3 = {
- data() {
- return {
- mixin3Data: 'mixin3'
- }
- },
- methods: {}
- }
- let vm: any
- const Comp = {
- mixins: [mixin1, mixin2, mixin3],
- render() {},
- created() {
- vm = this
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- // should have no warnings
- vm.mixin3Data = 'hello'
- await nextTick()
- expect(watchSpy.mock.calls[0].slice(0, 2)).toEqual(['hello', 'mixin3'])
- })
- test('injection from closest ancestor', () => {
- const Root = defineComponent({
- provide: {
- a: 'root'
- },
- render() {
- return [h(Mid), ' ', h(MidWithProvide), ' ', h(MidWithMixinProvide)]
- }
- })
- const Mid = {
- render() {
- return h(Child)
- }
- } as any
- const MidWithProvide = {
- provide: {
- a: 'midWithProvide'
- },
- render() {
- return h(Child)
- }
- } as any
- const mixin = {
- provide: {
- a: 'midWithMixinProvide'
- }
- }
- const MidWithMixinProvide = {
- mixins: [mixin],
- render() {
- return h(Child)
- }
- } as any
- const Child = {
- inject: ['a'],
- render() {
- return this.a
- }
- } as any
- expect(renderToString(h(Root))).toBe(
- 'root midWithProvide midWithMixinProvide'
- )
- })
- describe('warnings', () => {
- test('Expected a function as watch handler', () => {
- const Comp = {
- watch: {
- foo: 'notExistingMethod',
- foo2: {
- handler: 'notExistingMethod2'
- }
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- 'Invalid watch handler specified by key "notExistingMethod"'
- ).toHaveBeenWarned()
- expect(
- 'Invalid watch handler specified by key "notExistingMethod2"'
- ).toHaveBeenWarned()
- })
- test('Invalid watch option', () => {
- const Comp = {
- watch: { foo: true },
- render() {}
- }
- const root = nodeOps.createElement('div')
- // @ts-ignore
- render(h(Comp), root)
- expect('Invalid watch option: "foo"').toHaveBeenWarned()
- })
- test('computed with setter and no getter', () => {
- const Comp = {
- computed: {
- foo: {
- set() {}
- }
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect('Computed property "foo" has no getter.').toHaveBeenWarned()
- })
- test('assigning to computed with no setter', () => {
- let instance: any
- const Comp = {
- computed: {
- foo: {
- get() {}
- }
- },
- mounted() {
- instance = this
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- instance.foo = 1
- expect(
- 'Write operation failed: computed property "foo" is readonly'
- ).toHaveBeenWarned()
- })
- test('inject property is already declared in props', () => {
- const Comp = {
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a
- }
- },
- render() {
- return [h(ChildA)]
- }
- } as any
- const ChildA = {
- props: { a: Number },
- inject: ['a'],
- render() {
- return this.a
- }
- } as any
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Inject property "a" is already defined in Props.`
- ).toHaveBeenWarned()
- })
- test('methods property is not a function', () => {
- const Comp = {
- methods: {
- foo: 1
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Method "foo" has type "number" in the component definition. ` +
- `Did you reference the function correctly?`
- ).toHaveBeenWarned()
- })
- test('methods property is already declared in props', () => {
- const Comp = {
- props: {
- foo: Number
- },
- methods: {
- foo() {}
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Methods property "foo" is already defined in Props.`
- ).toHaveBeenWarned()
- })
- test('methods property is already declared in inject', () => {
- const Comp = {
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a
- }
- },
- render() {
- return [h(ChildA)]
- }
- } as any
- const ChildA = {
- methods: {
- a: () => null
- },
- inject: ['a'],
- render() {
- return this.a
- }
- } as any
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Methods property "a" is already defined in Inject.`
- ).toHaveBeenWarned()
- })
- test('data property is already declared in props', () => {
- const Comp = {
- props: { foo: Number },
- data: () => ({
- foo: 1
- }),
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Data property "foo" is already defined in Props.`
- ).toHaveBeenWarned()
- })
- test('data property is already declared in inject', () => {
- const Comp = {
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a
- }
- },
- render() {
- return [h(ChildA)]
- }
- } as any
- const ChildA = {
- data() {
- return {
- a: 1
- }
- },
- inject: ['a'],
- render() {
- return this.a
- }
- } as any
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Data property "a" is already defined in Inject.`
- ).toHaveBeenWarned()
- })
- test('data property is already declared in methods', () => {
- const Comp = {
- data: () => ({
- foo: 1
- }),
- methods: {
- foo() {}
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Data property "foo" is already defined in Methods.`
- ).toHaveBeenWarned()
- })
- test('computed property is already declared in props', () => {
- const Comp = {
- props: { foo: Number },
- computed: {
- foo() {}
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Computed property "foo" is already defined in Props.`
- ).toHaveBeenWarned()
- })
- test('computed property is already declared in inject', () => {
- const Comp = {
- data() {
- return {
- a: 1
- }
- },
- provide() {
- return {
- a: this.a
- }
- },
- render() {
- return [h(ChildA)]
- }
- } as any
- const ChildA = {
- computed: {
- a: {
- get() {},
- set() {}
- }
- },
- inject: ['a'],
- render() {
- return this.a
- }
- } as any
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Computed property "a" is already defined in Inject.`
- ).toHaveBeenWarned()
- })
- test('computed property is already declared in methods', () => {
- const Comp = {
- computed: {
- foo() {}
- },
- methods: {
- foo() {}
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Computed property "foo" is already defined in Methods.`
- ).toHaveBeenWarned()
- })
- test('computed property is already declared in data', () => {
- const Comp = {
- data: () => ({
- foo: 1
- }),
- computed: {
- foo() {}
- },
- render() {}
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(
- `Computed property "foo" is already defined in Data.`
- ).toHaveBeenWarned()
- })
- })
- })
|