test: ensure cleanup of net requests in tests (#20510)

ref #19389
This commit is contained in:
Jeremy Apthorp 2019-10-10 05:14:41 -07:00 committed by Shelley Vohr
parent 8de925c4c2
commit 1dc1ef6091

View file

@ -1,9 +1,22 @@
import { expect } from 'chai'
import { net, session, ClientRequest } from 'electron'
import { net as originalNet, session, ClientRequest } from 'electron'
import * as http from 'http'
import * as url from 'url'
import { AddressInfo } from 'net'
const outstandingRequests: ClientRequest[] = []
const net: {request: (typeof originalNet)['request']} = {
request: (...args) => {
const r = originalNet.request(...args)
outstandingRequests.push(r)
return r
}
}
const abortOutstandingRequests = () => {
outstandingRequests.forEach(r => r.abort())
outstandingRequests.length = 0
}
const kOneKiloByte = 1024
const kOneMegaByte = kOneKiloByte * kOneKiloByte
@ -57,6 +70,7 @@ respondOnce.toSingleURL = (fn: http.RequestListener) => {
}
describe('net module', () => {
afterEach(abortOutstandingRequests)
describe('HTTP basics', () => {
it('should be able to issue a basic GET request', (done) => {
respondOnce.toSingleURL((request, response) => {