2018-06-28 22:40:30 +00:00
const chai = require ( 'chai' )
const dirtyChai = require ( 'dirty-chai' )
2018-06-19 01:45:58 +00:00
const http = require ( 'http' )
const fs = require ( 'fs' )
const os = require ( 'os' )
const path = require ( 'path' )
const ChildProcess = require ( 'child_process' )
2018-09-13 16:10:51 +00:00
const { remote } = require ( 'electron' )
2018-10-04 18:08:56 +00:00
const { session } = remote
2018-06-19 01:45:58 +00:00
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' )
2018-09-13 16:10:51 +00:00
const { expect } = chai
2018-06-28 22:40:30 +00:00
chai . use ( dirtyChai )
2018-06-19 01:45:58 +00:00
const isCI = remote . getGlobal ( 'isCi' )
2018-10-04 18:08:56 +00:00
const netLog = session . fromPartition ( 'net-log' ) . netLog
2018-06-19 01:45:58 +00:00
describe ( 'netLog module' , ( ) => {
let server
const connections = new Set ( )
2018-06-28 22:40:30 +00:00
before ( done => {
2018-06-19 01:45:58 +00:00
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 ( )
} )
} )
2018-06-28 22:40:30 +00:00
after ( done => {
2018-06-19 01:45:58 +00:00
for ( const connection of connections ) {
connection . destroy ( )
}
server . close ( ( ) => {
server = null
done ( )
} )
} )
afterEach ( ( ) => {
try {
2018-10-04 18:08:56 +00:00
if ( fs . existsSync ( dumpFile ) ) {
fs . unlinkSync ( dumpFile )
}
if ( fs . existsSync ( dumpFileDynamic ) ) {
fs . unlinkSync ( dumpFileDynamic )
}
2018-06-19 01:45:58 +00:00
} catch ( e ) {
// Ignore error
}
} )
2018-06-28 22:40:30 +00:00
it ( 'should begin and end logging to file when .startLogging() and .stopLogging() is called' , done => {
expect ( netLog . currentlyLogging ) . to . be . false ( )
expect ( netLog . currentlyLoggingPath ) . to . equal ( '' )
2018-06-19 01:45:58 +00:00
netLog . startLogging ( dumpFileDynamic )
2018-06-28 22:40:30 +00:00
expect ( netLog . currentlyLogging ) . to . be . true ( )
expect ( netLog . currentlyLoggingPath ) . to . equal ( dumpFileDynamic )
2018-06-19 01:45:58 +00:00
netLog . stopLogging ( ( path ) => {
2018-06-28 22:40:30 +00:00
expect ( netLog . currentlyLogging ) . to . be . false ( )
expect ( netLog . currentlyLoggingPath ) . to . equal ( '' )
2018-06-19 01:45:58 +00:00
2018-06-28 22:40:30 +00:00
expect ( path ) . to . equal ( dumpFileDynamic )
expect ( fs . existsSync ( dumpFileDynamic ) ) . to . be . true ( )
2018-06-19 01:45:58 +00:00
done ( )
} )
} )
2018-06-28 22:40:30 +00:00
it ( 'should silence when .stopLogging() is called without calling .startLogging()' , done => {
expect ( netLog . currentlyLogging ) . to . be . false ( )
expect ( netLog . currentlyLoggingPath ) . to . equal ( '' )
2018-06-19 01:45:58 +00:00
2018-06-28 22:40:30 +00:00
netLog . stopLogging ( path => {
expect ( netLog . currentlyLogging ) . to . be . false ( )
expect ( netLog . currentlyLoggingPath ) . to . equal ( '' )
2018-06-19 01:45:58 +00:00
2018-06-28 22:40:30 +00:00
expect ( path ) . to . equal ( '' )
2018-06-19 01:45:58 +00:00
done ( )
} )
} )
2018-06-28 22:40:30 +00:00
it ( 'should begin and end logging automatically when --log-net-log is passed' , done => {
2018-06-19 01:45:58 +00:00
if ( isCI && process . platform === 'linux' ) {
done ( )
return
}
2018-10-02 01:56:31 +00:00
const appProcess = ChildProcess . spawn ( remote . process . execPath ,
2018-10-04 18:08:56 +00:00
[ appPath ] , {
2018-06-19 01:45:58 +00:00
env : {
2018-10-04 18:08:56 +00:00
TEST _REQUEST _URL : server . url ,
TEST _DUMP _FILE : dumpFile
2018-06-19 01:45:58 +00:00
}
} )
2018-10-08 05:48:25 +00:00
appProcess . once ( 'exit' , ( ) => {
2018-06-28 22:40:30 +00:00
expect ( fs . existsSync ( dumpFile ) ) . to . be . true ( )
2018-06-19 01:45:58 +00:00
done ( )
} )
} )
2018-10-09 01:01:52 +00:00
// FIXME(deepak1556): Ch69 follow up.
2018-10-30 22:45:05 +00:00
it ( 'should begin and end logging automtically when --log-net-log is passed, and behave correctly when .startLogging() and .stopLogging() is called' , done => {
2018-06-19 01:45:58 +00:00
if ( isCI && process . platform === 'linux' ) {
done ( )
return
}
2018-10-02 01:56:31 +00:00
const appProcess = ChildProcess . spawn ( remote . process . execPath ,
2018-10-04 18:08:56 +00:00
[ appPath ] , {
2018-06-19 01:45:58 +00:00
env : {
TEST _REQUEST _URL : server . url ,
2018-10-04 18:08:56 +00:00
TEST _DUMP _FILE : dumpFile ,
TEST _DUMP _FILE _DYNAMIC : dumpFileDynamic ,
2018-06-19 01:45:58 +00:00
TEST _MANUAL _STOP : true
}
} )
2018-10-08 05:48:25 +00:00
appProcess . once ( 'exit' , ( ) => {
2018-06-28 22:40:30 +00:00
expect ( fs . existsSync ( dumpFile ) ) . to . be . true ( )
expect ( fs . existsSync ( dumpFileDynamic ) ) . to . be . true ( )
2018-06-19 01:45:58 +00:00
done ( )
} )
} )
2018-06-28 22:40:30 +00:00
it ( 'should end logging automatically when only .startLogging() is called' , done => {
2018-06-19 01:45:58 +00:00
if ( isCI && process . platform === 'linux' ) {
done ( )
return
}
2018-10-02 01:56:31 +00:00
const appProcess = ChildProcess . spawn ( remote . process . execPath ,
2018-06-19 01:45:58 +00:00
[ appPath ] , {
env : {
TEST _REQUEST _URL : server . url ,
2018-10-04 18:08:56 +00:00
TEST _DUMP _FILE _DYNAMIC : dumpFileDynamic
2018-06-19 01:45:58 +00:00
}
} )
2018-10-04 18:08:56 +00:00
appProcess . once ( 'close' , ( ) => {
2018-06-28 22:40:30 +00:00
expect ( fs . existsSync ( dumpFileDynamic ) ) . to . be . true ( )
2018-06-19 01:45:58 +00:00
done ( )
} )
} )
} )