|
| 1 | +import Vue from 'vue' |
| 2 | + |
| 3 | +describe('Options catchError', () => { |
| 4 | + let globalSpy |
| 5 | + |
| 6 | + beforeEach(() => { |
| 7 | + globalSpy = Vue.config.errorHandler = jasmine.createSpy() |
| 8 | + }) |
| 9 | + |
| 10 | + afterEach(() => { |
| 11 | + Vue.config.errorHandler = null |
| 12 | + }) |
| 13 | + |
| 14 | + it('should capture error from child component', () => { |
| 15 | + const spy = jasmine.createSpy() |
| 16 | + |
| 17 | + let child |
| 18 | + let err |
| 19 | + const Child = { |
| 20 | + created () { |
| 21 | + child = this |
| 22 | + err = new Error('child') |
| 23 | + throw err |
| 24 | + }, |
| 25 | + render () {} |
| 26 | + } |
| 27 | + |
| 28 | + new Vue({ |
| 29 | + catchError: spy, |
| 30 | + render: h => h(Child) |
| 31 | + }).$mount() |
| 32 | + |
| 33 | + expect(spy).toHaveBeenCalledWith(err, child, 'created hook') |
| 34 | + // should not propagate by default |
| 35 | + expect(globalSpy).not.toHaveBeenCalled() |
| 36 | + }) |
| 37 | + |
| 38 | + it('should be able to render the error in itself', done => { |
| 39 | + let child |
| 40 | + const Child = { |
| 41 | + created () { |
| 42 | + child = this |
| 43 | + throw new Error('error from child') |
| 44 | + }, |
| 45 | + render () {} |
| 46 | + } |
| 47 | + |
| 48 | + const vm = new Vue({ |
| 49 | + data: { |
| 50 | + error: null |
| 51 | + }, |
| 52 | + catchError (e, vm, info) { |
| 53 | + expect(vm).toBe(child) |
| 54 | + this.error = e.toString() + ' in ' + info |
| 55 | + }, |
| 56 | + render (h) { |
| 57 | + if (this.error) { |
| 58 | + return h('pre', this.error) |
| 59 | + } |
| 60 | + return h(Child) |
| 61 | + } |
| 62 | + }).$mount() |
| 63 | + |
| 64 | + waitForUpdate(() => { |
| 65 | + expect(vm.$el.textContent).toContain('error from child') |
| 66 | + expect(vm.$el.textContent).toContain('in created hook') |
| 67 | + }).then(done) |
| 68 | + }) |
| 69 | + |
| 70 | + it('should propagate to global handler when returning true', () => { |
| 71 | + const spy = jasmine.createSpy() |
| 72 | + |
| 73 | + let child |
| 74 | + let err |
| 75 | + const Child = { |
| 76 | + created () { |
| 77 | + child = this |
| 78 | + err = new Error('child') |
| 79 | + throw err |
| 80 | + }, |
| 81 | + render () {} |
| 82 | + } |
| 83 | + |
| 84 | + new Vue({ |
| 85 | + catchError (err, vm, info) { |
| 86 | + spy(err, vm, info) |
| 87 | + return true |
| 88 | + }, |
| 89 | + render: h => h(Child, {}) |
| 90 | + }).$mount() |
| 91 | + |
| 92 | + expect(spy).toHaveBeenCalledWith(err, child, 'created hook') |
| 93 | + // should propagate |
| 94 | + expect(globalSpy).toHaveBeenCalledWith(err, child, 'created hook') |
| 95 | + }) |
| 96 | + |
| 97 | + it('should propagate to global handler if itself throws error', () => { |
| 98 | + let child |
| 99 | + let err |
| 100 | + const Child = { |
| 101 | + created () { |
| 102 | + child = this |
| 103 | + err = new Error('child') |
| 104 | + throw err |
| 105 | + }, |
| 106 | + render () {} |
| 107 | + } |
| 108 | + |
| 109 | + let err2 |
| 110 | + const vm = new Vue({ |
| 111 | + catchError () { |
| 112 | + err2 = new Error('foo') |
| 113 | + throw err2 |
| 114 | + }, |
| 115 | + render: h => h(Child, {}) |
| 116 | + }).$mount() |
| 117 | + |
| 118 | + expect(globalSpy).toHaveBeenCalledWith(err, child, 'created hook') |
| 119 | + expect(globalSpy).toHaveBeenCalledWith(err2, vm, 'catchError') |
| 120 | + }) |
| 121 | +}) |
0 commit comments