| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- import Vue from 'vue'
- describe('Options errorCaptured', () => {
- let globalSpy
- beforeEach(() => {
- globalSpy = Vue.config.errorHandler = jasmine.createSpy()
- })
- afterEach(() => {
- Vue.config.errorHandler = null
- })
- it('should capture error from child component', () => {
- const spy = jasmine.createSpy()
- let child
- let err
- const Child = {
- created () {
- child = this
- err = new Error('child')
- throw err
- },
- render () {}
- }
- new Vue({
- errorCaptured: spy,
- render: h => h(Child)
- }).$mount()
- expect(spy).toHaveBeenCalledWith(err, child, 'created hook')
- // should propagate by default
- expect(globalSpy).toHaveBeenCalledWith(err, child, 'created hook')
- })
- it('should be able to render the error in itself', done => {
- let child
- const Child = {
- created () {
- child = this
- throw new Error('error from child')
- },
- render () {}
- }
- const vm = new Vue({
- data: {
- error: null
- },
- errorCaptured (e, vm, info) {
- expect(vm).toBe(child)
- this.error = e.toString() + ' in ' + info
- },
- render (h) {
- if (this.error) {
- return h('pre', this.error)
- }
- return h(Child)
- }
- }).$mount()
- waitForUpdate(() => {
- expect(vm.$el.textContent).toContain('error from child')
- expect(vm.$el.textContent).toContain('in created hook')
- }).then(done)
- })
- it('should not propagate to global handler when returning true', () => {
- const spy = jasmine.createSpy()
- let child
- let err
- const Child = {
- created () {
- child = this
- err = new Error('child')
- throw err
- },
- render () {}
- }
- new Vue({
- errorCaptured (err, vm, info) {
- spy(err, vm, info)
- return false
- },
- render: h => h(Child, {})
- }).$mount()
- expect(spy).toHaveBeenCalledWith(err, child, 'created hook')
- // should not propagate
- expect(globalSpy).not.toHaveBeenCalled()
- })
- it('should propagate to global handler if itself throws error', () => {
- let child
- let err
- const Child = {
- created () {
- child = this
- err = new Error('child')
- throw err
- },
- render () {}
- }
- let err2
- const vm = new Vue({
- errorCaptured () {
- err2 = new Error('foo')
- throw err2
- },
- render: h => h(Child, {})
- }).$mount()
- expect(globalSpy).toHaveBeenCalledWith(err, child, 'created hook')
- expect(globalSpy).toHaveBeenCalledWith(err2, vm, 'errorCaptured hook')
- })
- it('should work across multiple parents, mixins and extends', () => {
- const calls = []
- const Child = {
- created () {
- throw new Error('child')
- },
- render () {}
- }
- const ErrorBoundaryBase = {
- errorCaptured () {
- calls.push(1)
- }
- }
- const mixin = {
- errorCaptured () {
- calls.push(2)
- }
- }
- const ErrorBoundaryExtended = {
- extends: ErrorBoundaryBase,
- mixins: [mixin],
- errorCaptured () {
- calls.push(3)
- },
- render: h => h(Child)
- }
- Vue.config.errorHandler = () => {
- calls.push(5)
- }
- new Vue({
- errorCaptured () {
- calls.push(4)
- },
- render: h => h(ErrorBoundaryExtended)
- }).$mount()
- expect(calls).toEqual([1, 2, 3, 4, 5])
- })
- it('should work across multiple parents, mixins and extends with return false', () => {
- const calls = []
- const Child = {
- created () {
- throw new Error('child')
- },
- render () {}
- }
- const ErrorBoundaryBase = {
- errorCaptured () {
- calls.push(1)
- }
- }
- const mixin = {
- errorCaptured () {
- calls.push(2)
- }
- }
- const ErrorBoundaryExtended = {
- extends: ErrorBoundaryBase,
- mixins: [mixin],
- errorCaptured () {
- calls.push(3)
- return false
- },
- render: h => h(Child)
- }
- Vue.config.errorHandler = () => {
- calls.push(5)
- }
- new Vue({
- errorCaptured () {
- calls.push(4)
- },
- render: h => h(ErrorBoundaryExtended)
- }).$mount()
- expect(calls).toEqual([1, 2, 3])
- })
- })
|