| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- import Vue from 'vue'
- describe('Instance properties', () => {
- it('$data', () => {
- const data = { a: 1 }
- const vm = new Vue({
- data
- })
- expect(vm.a).toBe(1)
- expect(vm.$data).toBe(data)
- // vm -> data
- vm.a = 2
- expect(data.a).toBe(2)
- // data -> vm
- data.a = 3
- expect(vm.a).toBe(3)
- })
- it('$options', () => {
- const A = Vue.extend({
- methods: {
- a () {}
- }
- })
- const vm = new A({
- methods: {
- b () {}
- }
- })
- expect(typeof vm.$options.methods.a).toBe('function')
- expect(typeof vm.$options.methods.b).toBe('function')
- })
- it('$root/$children', done => {
- const vm = new Vue({
- template: '<div><test v-if="ok"></test></div>',
- data: { ok: true },
- components: {
- test: {
- template: '<div></div>'
- }
- }
- }).$mount()
- expect(vm.$root).toBe(vm)
- expect(vm.$children.length).toBe(1)
- expect(vm.$children[0].$root).toBe(vm)
- vm.ok = false
- waitForUpdate(() => {
- expect(vm.$children.length).toBe(0)
- vm.ok = true
- }).then(() => {
- expect(vm.$children.length).toBe(1)
- expect(vm.$children[0].$root).toBe(vm)
- }).then(done)
- })
- it('$parent', () => {
- const calls = []
- const makeOption = name => ({
- name,
- template: `<div><slot></slot></div>`,
- created () {
- calls.push(`${name}:${this.$parent.$options.name}`)
- }
- })
- new Vue({
- template: `
- <div>
- <outer><middle><inner></inner></middle></outer>
- <next></next>
- </div>
- `,
- components: {
- outer: makeOption('outer'),
- middle: makeOption('middle'),
- inner: makeOption('inner'),
- next: makeOption('next')
- }
- }).$mount()
- expect(calls).toEqual(['outer:undefined', 'middle:outer', 'inner:middle', 'next:undefined'])
- })
- it('$props', done => {
- const Comp = Vue.extend({
- props: ['msg'],
- template: '<div>{{ msg }} {{ $props.msg }}</div>'
- })
- const vm = new Comp({
- propsData: {
- msg: 'foo'
- }
- }).$mount()
- // check render
- expect(vm.$el.textContent).toContain('foo foo')
- // warn set
- vm.$props = {}
- expect('$props is readonly').toHaveBeenWarned()
- // check existence
- expect(vm.$props.msg).toBe('foo')
- // check change
- vm.msg = 'bar'
- expect(vm.$props.msg).toBe('bar')
- waitForUpdate(() => {
- expect(vm.$el.textContent).toContain('bar bar')
- }).then(() => {
- vm.$props.msg = 'baz'
- expect(vm.msg).toBe('baz')
- }).then(() => {
- expect(vm.$el.textContent).toContain('baz baz')
- }).then(done)
- })
- it('warn mutating $props', () => {
- const Comp = {
- props: ['msg'],
- render () {},
- mounted () {
- expect(this.$props.msg).toBe('foo')
- this.$props.msg = 'bar'
- }
- }
- new Vue({
- template: `<comp ref="comp" msg="foo" />`,
- components: { Comp }
- }).$mount()
- expect(`Avoid mutating a prop`).toHaveBeenWarned()
- })
- })
|