Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: avoid possible infinite loop by accessing observables in error handler (fix vuex#1505) #9489

Merged
merged 1 commit into from
Feb 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 20 additions & 12 deletions src/core/util/error.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,33 @@ import config from '../config'
import { warn } from './debug'
import { inBrowser, inWeex } from './env'
import { isPromise } from 'shared/util'
import { pushTarget, popTarget } from '../observer/dep'

export function handleError (err: Error, vm: any, info: string) {
if (vm) {
let cur = vm
while ((cur = cur.$parent)) {
const hooks = cur.$options.errorCaptured
if (hooks) {
for (let i = 0; i < hooks.length; i++) {
try {
const capture = hooks[i].call(cur, err, vm, info) === false
if (capture) return
} catch (e) {
globalHandleError(e, cur, 'errorCaptured hook')
// Deactivate deps tracking while processing error handler to avoid possible infinite rendering.
// See: https://github.com/vuejs/vuex/issues/1505
pushTarget()
try {
if (vm) {
let cur = vm
while ((cur = cur.$parent)) {
const hooks = cur.$options.errorCaptured
if (hooks) {
for (let i = 0; i < hooks.length; i++) {
try {
const capture = hooks[i].call(cur, err, vm, info) === false
if (capture) return
} catch (e) {
globalHandleError(e, cur, 'errorCaptured hook')
}
}
}
}
}
globalHandleError(err, vm, info)
} finally {
popTarget()
}
globalHandleError(err, vm, info)
}

export function invokeWithErrorHandling (
Expand Down
38 changes: 38 additions & 0 deletions test/unit/features/options/errorCaptured.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,42 @@ describe('Options errorCaptured', () => {

expect(calls).toEqual([1, 2, 3])
})

// ref: https://github.com/vuejs/vuex/issues/1505
it('should not add watchers to render deps if they are referred from errorCaptured callback', done => {
const store = new Vue({
data: {
errors: []
}
})

const Child = {
computed: {
test() {
throw new Error('render error')
}
},

render(h) {
return h('div', {
attrs: {
'data-test': this.test
}
})
}
}

new Vue({
errorCaptured(error) {
store.errors.push(error)
},
render: h => h(Child)
}).$mount()

// Ensure not to trigger infinite loop
waitForUpdate(() => {
expect(store.errors.length).toBe(1)
expect(store.errors[0]).toEqual(new Error('render error'))
}).then(done)
})
})