123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- const assert = require('assert')
- const http = require('http')
- const fs = require('fs')
- const os = require('os')
- const path = require('path')
- const ChildProcess = require('child_process')
- const {remote} = require('electron')
- const {netLog} = remote
- const appPath = path.join(__dirname, 'fixtures', 'api', 'net-log')
- const dumpFile = path.join(os.tmpdir(), 'net_log.json')
- const dumpFileDynamic = path.join(os.tmpdir(), 'net_log_dynamic.json')
- const isCI = remote.getGlobal('isCi')
- describe('netLog module', () => {
- let server
- const connections = new Set()
- before((done) => {
- server = http.createServer()
- server.listen(0, '127.0.0.1', () => {
- server.url = `http://127.0.0.1:${server.address().port}`
- done()
- })
- server.on('connection', (connection) => {
- connections.add(connection)
- connection.once('close', () => {
- connections.delete(connection)
- })
- })
- server.on('request', (request, response) => {
- response.end()
- })
- })
- after((done) => {
- for (const connection of connections) {
- connection.destroy()
- }
- server.close(() => {
- server = null
- done()
- })
- })
- afterEach(() => {
- try {
- fs.unlinkSync(dumpFile)
- fs.unlinkSync(dumpFileDynamic)
- } catch (e) {
- // Ignore error
- }
- })
- it('should begin and end logging to file when .startLogging() and .stopLogging() is called', (done) => {
- assert(!netLog.currentlyLogging)
- assert.equal(netLog.currentlyLoggingPath, '')
- netLog.startLogging(dumpFileDynamic)
- assert(netLog.currentlyLogging)
- assert.equal(netLog.currentlyLoggingPath, dumpFileDynamic)
- netLog.stopLogging((path) => {
- assert(!netLog.currentlyLogging)
- assert.equal(netLog.currentlyLoggingPath, '')
- assert.equal(path, dumpFileDynamic)
- assert(fs.existsSync(dumpFileDynamic))
- done()
- })
- })
- it('should silence when .stopLogging() is called without calling .startLogging()', (done) => {
- assert(!netLog.currentlyLogging)
- assert.equal(netLog.currentlyLoggingPath, '')
- netLog.stopLogging((path) => {
- assert(!netLog.currentlyLogging)
- assert.equal(netLog.currentlyLoggingPath, '')
- assert.equal(path, '')
- done()
- })
- })
- // The following tests are skipped on Linux CI
- it('should begin and end logging automatically when --log-net-log is passed', (done) => {
- if (isCI && process.platform === 'linux') {
- done()
- return
- }
- let appProcess = ChildProcess.spawn(remote.process.execPath,
- [appPath, `--log-net-log=${dumpFile}`], {
- env: {
- TEST_REQUEST_URL: server.url
- }
- })
- appProcess.once('exit', () => {
- assert(fs.existsSync(dumpFile))
- done()
- })
- })
- it('should begin and end logging automtically when --log-net-log is passed, and behave correctly when .startLogging() and .stopLogging() is called', (done) => {
- if (isCI && process.platform === 'linux') {
- done()
- return
- }
- let appProcess = ChildProcess.spawn(remote.process.execPath,
- [appPath, `--log-net-log=${dumpFile}`], {
- env: {
- TEST_REQUEST_URL: server.url,
- TEST_DUMP_FILE: dumpFileDynamic,
- TEST_MANUAL_STOP: true
- }
- })
- appProcess.stdout.on('data', (data) => {
- console.log(data.toString())
- })
- appProcess.once('exit', () => {
- assert(fs.existsSync(dumpFile))
- assert(fs.existsSync(dumpFileDynamic))
- done()
- })
- })
- it('should end logging automatically when only .startLogging() is called', (done) => {
- if (isCI && process.platform === 'linux') {
- done()
- return
- }
- let appProcess = ChildProcess.spawn(remote.process.execPath,
- [appPath], {
- env: {
- TEST_REQUEST_URL: server.url,
- TEST_DUMP_FILE: dumpFileDynamic
- }
- })
- appProcess.once('exit', () => {
- assert(fs.existsSync(dumpFileDynamic))
- done()
- })
- })
- })
|