electron/spec/api-desktop-capturer-spec.js

51 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-03-25 20:03:49 +00:00
const assert = require('assert')
2017-10-27 00:44:06 +00:00
const {desktopCapturer, remote} = require('electron')
2016-01-12 02:40:23 +00:00
2017-10-27 00:44:06 +00:00
const isCI = remote.getGlobal('isCi')
2017-10-27 00:44:06 +00:00
describe('desktopCapturer', () => {
if (isCI && process.platform === 'win32') return
2017-10-27 00:44:06 +00:00
it('should return a non-empty array of sources', (done) => {
2016-01-19 18:54:12 +00:00
desktopCapturer.getSources({
2016-01-12 02:40:23 +00:00
types: ['window', 'screen']
2017-10-27 00:44:06 +00:00
}, (error, sources) => {
2016-03-25 20:03:49 +00:00
assert.equal(error, null)
assert.notEqual(sources.length, 0)
done()
})
})
2016-01-19 18:57:18 +00:00
2017-10-27 00:44:06 +00:00
it('throws an error for invalid options', (done) => {
desktopCapturer.getSources(['window', 'screen'], (error) => {
2016-08-09 22:31:24 +00:00
assert.equal(error.message, 'Invalid options')
done()
})
})
2017-10-27 00:44:06 +00:00
it('does not throw an error when called more than once (regression)', (done) => {
let callCount = 0
const callback = (error, sources) => {
2016-03-25 20:03:49 +00:00
callCount++
assert.equal(error, null)
assert.notEqual(sources.length, 0)
if (callCount === 2) done()
}
2016-01-19 18:57:18 +00:00
2016-03-25 20:03:49 +00:00
desktopCapturer.getSources({types: ['window', 'screen']}, callback)
desktopCapturer.getSources({types: ['window', 'screen']}, callback)
})
2017-10-27 00:44:06 +00:00
it('responds to subsequest calls of different options', (done) => {
let callCount = 0
const callback = (error, sources) => {
callCount++
assert.equal(error, null)
if (callCount === 2) done()
}
desktopCapturer.getSources({types: ['window']}, callback)
desktopCapturer.getSources({types: ['screen']}, callback)
})
2016-03-25 20:03:49 +00:00
})