2016-03-25 20:03:49 +00:00
|
|
|
const assert = require('assert')
|
|
|
|
const deprecations = require('electron').deprecations
|
2016-02-16 23:09:35 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
describe('deprecations', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
deprecations.setHandler(null)
|
|
|
|
process.throwDeprecation = true
|
|
|
|
})
|
2016-02-16 23:09:35 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
it('allows a deprecation handler function to be specified', function () {
|
|
|
|
var messages = []
|
2016-02-16 23:09:35 +00:00
|
|
|
|
|
|
|
deprecations.setHandler(function (message) {
|
2016-03-25 20:03:49 +00:00
|
|
|
messages.push(message)
|
|
|
|
})
|
2016-02-16 23:09:35 +00:00
|
|
|
|
2016-04-28 18:15:39 +00:00
|
|
|
require('electron').deprecate.log('this is deprecated')
|
2016-02-16 23:09:35 +00:00
|
|
|
|
2016-04-28 18:15:39 +00:00
|
|
|
assert.deepEqual(messages, ['this is deprecated'])
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-02-16 23:09:35 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
it('throws an exception if no deprecation handler is specified', function () {
|
|
|
|
assert.throws(function () {
|
2016-04-28 18:17:03 +00:00
|
|
|
require('electron').deprecate.log('this is deprecated')
|
|
|
|
}, /this is deprecated/)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|