test: add more complete test for componentProxy (#174)

This commit is contained in:
Cr 2019-10-10 22:02:55 +08:00 committed by Evan You
parent a4090a227c
commit 211f5b7a45

View File

@ -1,40 +1,132 @@
import { createApp, nodeOps, mockWarn } from '@vue/runtime-test'
import {
createApp,
getCurrentInstance,
nodeOps,
mockWarn
} from '@vue/runtime-test'
import { ComponentInternalInstance } from '../src/component'
const createTestInstance = (props?: any) => {
const component = {
render() {}
}
const root = nodeOps.createElement('div')
return createApp().mount(component, root, props)
}
describe('component proxy', () => {
describe('warnings', () => {
describe('component: proxy', () => {
mockWarn()
test('Attempting to mutate public property', () => {
const app = createTestInstance()
try {
app.$props = { foo: 'bar' }
} catch {
expect(
'Attempting to mutate public property "$props". ' +
'Properties starting with $ are reserved and readonly.'
).toHaveBeenWarned()
it('data', () => {
const app = createApp()
let instance: ComponentInternalInstance
let instanceProxy: any
const Comp = {
data() {
return {
foo: 1
}
})
test('Attempting to mutate prop', () => {
const app = createTestInstance({ foo: 'foo' })
try {
app.foo = 'bar'
} catch {
expect(
'Attempting to mutate prop "foo". Props are readonly.'
).toHaveBeenWarned()
},
mounted() {
instance = getCurrentInstance()!
instanceProxy = this
},
render() {
return null
}
})
}
app.mount(Comp, nodeOps.createElement('div'))
expect(instanceProxy.foo).toBe(1)
instanceProxy.foo = 2
expect(instance!.data.foo).toBe(2)
})
it('renderContext', () => {
const app = createApp()
let instance: ComponentInternalInstance
let instanceProxy: any
const Comp = {
setup() {
return {
foo: 1
}
},
mounted() {
instance = getCurrentInstance()!
instanceProxy = this
},
render() {
return null
}
}
app.mount(Comp, nodeOps.createElement('div'))
expect(instanceProxy.foo).toBe(1)
instanceProxy.foo = 2
expect(instance!.renderContext.foo).toBe(2)
})
it('propsProxy', () => {
const app = createApp()
let instance: ComponentInternalInstance
let instanceProxy: any
const Comp = {
props: {
foo: {
type: Number,
default: 1
}
},
setup() {
return () => null
},
mounted() {
instance = getCurrentInstance()!
instanceProxy = this
}
}
app.mount(Comp, nodeOps.createElement('div'))
expect(instanceProxy.foo).toBe(1)
expect(instance!.propsProxy!.foo).toBe(1)
expect(() => (instanceProxy.foo = 2)).toThrow(TypeError)
expect(`Attempting to mutate prop "foo"`).toHaveBeenWarned()
})
it('methods', () => {
const app = createApp()
let instance: ComponentInternalInstance
let instanceProxy: any
const Comp = {
setup() {
return () => null
},
mounted() {
instance = getCurrentInstance()!
instanceProxy = this
}
}
app.mount(Comp, nodeOps.createElement('div'))
expect(instanceProxy.$data).toBe(instance!.data)
expect(instanceProxy.$props).toBe(instance!.propsProxy)
expect(instanceProxy.$attrs).toBe(instance!.attrs)
expect(instanceProxy.$slots).toBe(instance!.slots)
expect(instanceProxy.$refs).toBe(instance!.refs)
expect(instanceProxy.$parent).toBe(instance!.parent)
expect(instanceProxy.$root).toBe(instance!.root)
expect(instanceProxy.$emit).toBe(instance!.emit)
expect(instanceProxy.$el).toBe(instance!.vnode.el)
expect(instanceProxy.$options).toBe(instance!.type)
expect(() => (instanceProxy.$data = {})).toThrow(TypeError)
expect(`Attempting to mutate public property "$data"`).toHaveBeenWarned()
})
it('user', async () => {
const app = createApp()
let instance: ComponentInternalInstance
let instanceProxy: any
const Comp = {
setup() {
return () => null
},
mounted() {
instance = getCurrentInstance()!
instanceProxy = this
}
}
app.mount(Comp, nodeOps.createElement('div'))
instanceProxy.foo = 1
expect(instanceProxy.foo).toBe(1)
expect(instance!.user.foo).toBe(1)
})
})