electron/spec/api-debugger-spec.js

205 строки
5.7 KiB
JavaScript
Исходник Обычный вид История

2018-06-18 01:35:24 +03:00
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const http = require('http')
2016-03-25 23:03:49 +03:00
const path = require('path')
const {closeWindow} = require('./window-helpers')
2016-03-25 23:03:49 +03:00
const BrowserWindow = require('electron').remote.BrowserWindow
2016-01-22 11:47:23 +03:00
2018-06-18 01:35:24 +03:00
const {expect} = chai
chai.use(dirtyChai)
2017-10-27 03:35:33 +03:00
describe('debugger module', () => {
2017-10-27 03:32:04 +03:00
const fixtures = path.resolve(__dirname, 'fixtures')
let w = null
2017-10-27 03:32:04 +03:00
beforeEach(() => {
2016-01-22 11:47:23 +03:00
w = new BrowserWindow({
show: false,
width: 400,
height: 400
2016-03-25 23:03:49 +03:00
})
})
2017-10-27 03:32:04 +03:00
afterEach(() => closeWindow(w).then(() => { w = null }))
2016-01-22 11:47:23 +03:00
2017-10-27 03:32:04 +03:00
describe('debugger.attach', () => {
2018-06-18 01:35:24 +03:00
it('fails when devtools is already open', done => {
2017-10-27 03:32:04 +03:00
w.webContents.on('did-finish-load', () => {
2016-03-25 23:03:49 +03:00
w.webContents.openDevTools()
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2018-06-18 01:35:24 +03:00
expect(w.webContents.debugger.isAttached()).to.be.true()
2016-03-25 23:03:49 +03:00
done()
2016-01-22 11:47:23 +03:00
}
2016-03-25 23:03:49 +03:00
})
w.webContents.loadFile(path.join(fixtures, 'pages', 'a.html'))
2016-03-25 23:03:49 +03:00
})
2016-01-22 11:47:23 +03:00
2018-06-18 01:35:24 +03:00
it('fails when protocol version is not supported', done => {
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach('2.0')
2016-03-29 02:19:18 +03:00
} catch (err) {
2018-06-18 01:35:24 +03:00
expect(w.webContents.debugger.isAttached()).to.be.false()
2016-03-25 23:03:49 +03:00
done()
2016-01-22 11:47:23 +03:00
}
2016-03-25 23:03:49 +03:00
})
2016-01-22 11:47:23 +03:00
2018-06-18 01:35:24 +03:00
it('attaches when no protocol version is specified', done => {
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2017-10-27 03:32:04 +03:00
done(`unexpected error : ${err}`)
2016-01-22 11:47:23 +03:00
}
2018-06-18 01:35:24 +03:00
expect(w.webContents.debugger.isAttached()).to.be.true()
2016-03-25 23:03:49 +03:00
done()
})
})
2016-01-22 11:47:23 +03:00
2017-10-27 03:32:04 +03:00
describe('debugger.detach', () => {
it('fires detach event', (done) => {
w.webContents.debugger.on('detach', (e, reason) => {
2018-06-18 01:35:24 +03:00
expect(reason).to.equal('target closed')
expect(w.webContents.debugger.isAttached()).to.be.false()
2016-03-25 23:03:49 +03:00
done()
})
2018-06-18 01:35:24 +03:00
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2017-10-27 03:32:04 +03:00
done(`unexpected error : ${err}`)
2016-01-22 11:47:23 +03:00
}
2016-03-25 23:03:49 +03:00
w.webContents.debugger.detach()
})
})
2016-01-22 11:47:23 +03:00
2017-10-27 03:32:04 +03:00
describe('debugger.sendCommand', () => {
let server
2017-10-27 03:32:04 +03:00
afterEach(() => {
if (server != null) {
server.close()
server = null
}
})
2018-06-18 01:35:24 +03:00
it('returns response', done => {
2016-03-25 23:03:49 +03:00
w.webContents.loadURL('about:blank')
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2018-06-18 01:35:24 +03:00
return done(`unexpected error : ${err}`)
2016-03-25 23:03:49 +03:00
}
2018-06-18 01:35:24 +03:00
const callback = (err, res) => {
2018-06-18 18:56:24 +03:00
expect(err.message).to.be.undefined()
2018-06-18 01:35:24 +03:00
expect(res.wasThrown).to.be.undefined()
expect(res.result.value).to.equal(6)
2016-03-25 23:03:49 +03:00
w.webContents.debugger.detach()
done()
2016-01-22 11:47:23 +03:00
}
2018-06-18 01:35:24 +03:00
const params = {'expression': '4+2'}
2016-03-25 23:03:49 +03:00
w.webContents.debugger.sendCommand('Runtime.evaluate', params, callback)
})
2016-01-22 11:47:23 +03:00
2018-06-18 01:35:24 +03:00
it('fires message event', done => {
2017-10-27 03:32:04 +03:00
const url = process.platform !== 'win32'
? `file://${path.join(fixtures, 'pages', 'a.html')}`
2018-06-18 01:35:24 +03:00
: `file:///${path.join(fixtures, 'pages', 'a.html').replace(/\\/g, '/')}`
w.webContents.loadFile(path.join(fixtures, 'pages', 'a.html'))
2018-06-18 01:35:24 +03:00
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2018-06-18 01:35:24 +03:00
done(`unexpected error : ${err}`)
2016-01-22 11:47:23 +03:00
}
2018-06-18 01:35:24 +03:00
2017-10-27 03:32:04 +03:00
w.webContents.debugger.on('message', (e, method, params) => {
if (method === 'Console.messageAdded') {
2018-06-18 01:35:24 +03:00
expect(params.message.level).to.equal('log')
expect(params.message.url).to.equal(url)
expect(params.message.text).to.equal('a')
2016-03-25 23:03:49 +03:00
w.webContents.debugger.detach()
done()
2016-01-22 11:47:23 +03:00
}
2016-03-25 23:03:49 +03:00
})
w.webContents.debugger.sendCommand('Console.enable')
})
2016-01-22 11:47:23 +03:00
2018-06-18 01:35:24 +03:00
it('returns error message when command fails', done => {
2016-03-25 23:03:49 +03:00
w.webContents.loadURL('about:blank')
2016-01-22 11:47:23 +03:00
try {
2016-03-25 23:03:49 +03:00
w.webContents.debugger.attach()
2016-03-29 02:19:18 +03:00
} catch (err) {
2017-10-27 03:32:04 +03:00
done(`unexpected error : ${err}`)
2016-01-22 11:47:23 +03:00
}
2018-06-18 01:35:24 +03:00
w.webContents.debugger.sendCommand('Test', err => {
expect(err.message).to.equal("'Test' wasn't found")
2016-03-25 23:03:49 +03:00
w.webContents.debugger.detach()
done()
})
})
2018-06-11 15:20:46 +03:00
// TODO(alexeykuzmin): [Ch66] Times out. Fix it and enable back.
xit('handles valid unicode characters in message', (done) => {
try {
w.webContents.debugger.attach()
} catch (err) {
2017-10-27 03:32:04 +03:00
done(`unexpected error : ${err}`)
}
w.webContents.debugger.on('message', (event, method, params) => {
if (method === 'Network.loadingFinished') {
w.webContents.debugger.sendCommand('Network.getResponseBody', {
requestId: params.requestId
2018-02-02 03:47:52 +03:00
}, (_, data) => {
2018-06-18 01:35:24 +03:00
expect(data.body).to.equal('\u0024')
done()
})
}
})
2018-02-02 03:47:52 +03:00
server = http.createServer((req, res) => {
res.setHeader('Content-Type', 'text/plain; charset=utf-8')
res.end('\u0024')
})
server.listen(0, '127.0.0.1', () => {
w.webContents.debugger.sendCommand('Network.enable')
w.loadURL(`http://127.0.0.1:${server.address().port}`)
})
})
2018-06-11 15:20:46 +03:00
// TODO(alexeykuzmin): [Ch66] Times out. Fix it and enable back.
xit('does not crash for invalid unicode characters in message', (done) => {
2018-02-02 03:47:52 +03:00
try {
w.webContents.debugger.attach()
} catch (err) {
done(`unexpected error : ${err}`)
}
w.webContents.debugger.on('message', (event, method, params) => {
// loadingFinished indicates that page has been loaded and it did not
// crash because of invalid UTF-8 data
if (method === 'Network.loadingFinished') {
done()
}
})
server = http.createServer((req, res) => {
res.setHeader('Content-Type', 'text/plain; charset=utf-8')
res.end('\uFFFF')
})
server.listen(0, '127.0.0.1', () => {
w.webContents.debugger.sendCommand('Network.enable')
w.loadURL(`http://127.0.0.1:${server.address().port}`)
})
})
2016-03-25 23:03:49 +03:00
})
})