test: drop now-empty remote runner (#35343)
* test: drop the now-empty remote runner from CI * move fixtures to spec-main * remove remote runner * fix stuff * remove global-paths hack * move ts-smoke to spec/ * fix test after merge * rename spec-main to spec * no need to ignore spec/node_modules twice * simplify spec-runner a little * no need to hash pj/yl twice * undo lint change to verify-mksnapshot.py * excessive .. * update electron_woa_testing.yml * don't search for test-results-remote.xml it is never produced now
This commit is contained in:
parent
e87c4015fe
commit
db7c92fd57
327 changed files with 950 additions and 1707 deletions
165
spec/api-net-log-spec.ts
Normal file
165
spec/api-net-log-spec.ts
Normal file
|
@ -0,0 +1,165 @@
|
|||
import { expect } from 'chai';
|
||||
import * as http from 'http';
|
||||
import * as fs from 'fs';
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
import * as ChildProcess from 'child_process';
|
||||
import { session, net } from 'electron/main';
|
||||
import { Socket, AddressInfo } from 'net';
|
||||
import { ifit } from './spec-helpers';
|
||||
import { emittedOnce } from './events-helpers';
|
||||
|
||||
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 testNetLog = () => session.fromPartition('net-log').netLog;
|
||||
|
||||
describe('netLog module', () => {
|
||||
let server: http.Server;
|
||||
let serverUrl: string;
|
||||
const connections: Set<Socket> = new Set();
|
||||
|
||||
before(done => {
|
||||
server = http.createServer();
|
||||
server.listen(0, '127.0.0.1', () => {
|
||||
serverUrl = `http://127.0.0.1:${(server.address() as AddressInfo).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 as any;
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
expect(testNetLog().currentlyLogging).to.be.false('currently logging');
|
||||
});
|
||||
afterEach(() => {
|
||||
try {
|
||||
if (fs.existsSync(dumpFile)) {
|
||||
fs.unlinkSync(dumpFile);
|
||||
}
|
||||
if (fs.existsSync(dumpFileDynamic)) {
|
||||
fs.unlinkSync(dumpFileDynamic);
|
||||
}
|
||||
} catch (e) {
|
||||
// Ignore error
|
||||
}
|
||||
expect(testNetLog().currentlyLogging).to.be.false('currently logging');
|
||||
});
|
||||
|
||||
it('should begin and end logging to file when .startLogging() and .stopLogging() is called', async () => {
|
||||
await testNetLog().startLogging(dumpFileDynamic);
|
||||
|
||||
expect(testNetLog().currentlyLogging).to.be.true('currently logging');
|
||||
|
||||
await testNetLog().stopLogging();
|
||||
|
||||
expect(fs.existsSync(dumpFileDynamic)).to.be.true('currently logging');
|
||||
});
|
||||
|
||||
it('should throw an error when .stopLogging() is called without calling .startLogging()', async () => {
|
||||
await expect(testNetLog().stopLogging()).to.be.rejectedWith('No net log in progress');
|
||||
});
|
||||
|
||||
it('should throw an error when .startLogging() is called with an invalid argument', () => {
|
||||
expect(() => testNetLog().startLogging('')).to.throw();
|
||||
expect(() => testNetLog().startLogging(null as any)).to.throw();
|
||||
expect(() => testNetLog().startLogging([] as any)).to.throw();
|
||||
expect(() => testNetLog().startLogging('aoeu', { captureMode: 'aoeu' as any })).to.throw();
|
||||
expect(() => testNetLog().startLogging('aoeu', { maxFileSize: null as any })).to.throw();
|
||||
});
|
||||
|
||||
it('should include cookies when requested', async () => {
|
||||
await testNetLog().startLogging(dumpFileDynamic, { captureMode: 'includeSensitive' });
|
||||
const unique = require('uuid').v4();
|
||||
await new Promise<void>((resolve) => {
|
||||
const req = net.request(serverUrl);
|
||||
req.setHeader('Cookie', `foo=${unique}`);
|
||||
req.on('response', (response) => {
|
||||
response.on('data', () => {}); // https://github.com/electron/electron/issues/19214
|
||||
response.on('end', () => resolve());
|
||||
});
|
||||
req.end();
|
||||
});
|
||||
await testNetLog().stopLogging();
|
||||
expect(fs.existsSync(dumpFileDynamic)).to.be.true('dump file exists');
|
||||
const dump = fs.readFileSync(dumpFileDynamic, 'utf8');
|
||||
expect(dump).to.contain(`foo=${unique}`);
|
||||
});
|
||||
|
||||
it('should include socket bytes when requested', async () => {
|
||||
await testNetLog().startLogging(dumpFileDynamic, { captureMode: 'everything' });
|
||||
const unique = require('uuid').v4();
|
||||
await new Promise<void>((resolve) => {
|
||||
const req = net.request({ method: 'POST', url: serverUrl });
|
||||
req.on('response', (response) => {
|
||||
response.on('data', () => {}); // https://github.com/electron/electron/issues/19214
|
||||
response.on('end', () => resolve());
|
||||
});
|
||||
req.end(Buffer.from(unique));
|
||||
});
|
||||
await testNetLog().stopLogging();
|
||||
expect(fs.existsSync(dumpFileDynamic)).to.be.true('dump file exists');
|
||||
const dump = fs.readFileSync(dumpFileDynamic, 'utf8');
|
||||
expect(JSON.parse(dump).events.some((x: any) => x.params && x.params.bytes && Buffer.from(x.params.bytes, 'base64').includes(unique))).to.be.true('uuid present in dump');
|
||||
});
|
||||
|
||||
ifit(process.platform !== 'linux')('should begin and end logging automatically when --log-net-log is passed', async () => {
|
||||
const appProcess = ChildProcess.spawn(process.execPath,
|
||||
[appPath], {
|
||||
env: {
|
||||
TEST_REQUEST_URL: serverUrl,
|
||||
TEST_DUMP_FILE: dumpFile
|
||||
}
|
||||
});
|
||||
|
||||
await emittedOnce(appProcess, 'exit');
|
||||
expect(fs.existsSync(dumpFile)).to.be.true('dump file exists');
|
||||
});
|
||||
|
||||
ifit(process.platform !== 'linux')('should begin and end logging automatically when --log-net-log is passed, and behave correctly when .startLogging() and .stopLogging() is called', async () => {
|
||||
const appProcess = ChildProcess.spawn(process.execPath,
|
||||
[appPath], {
|
||||
env: {
|
||||
TEST_REQUEST_URL: serverUrl,
|
||||
TEST_DUMP_FILE: dumpFile,
|
||||
TEST_DUMP_FILE_DYNAMIC: dumpFileDynamic,
|
||||
TEST_MANUAL_STOP: 'true'
|
||||
}
|
||||
});
|
||||
|
||||
await emittedOnce(appProcess, 'exit');
|
||||
expect(fs.existsSync(dumpFile)).to.be.true('dump file exists');
|
||||
expect(fs.existsSync(dumpFileDynamic)).to.be.true('dynamic dump file exists');
|
||||
});
|
||||
|
||||
ifit(process.platform !== 'linux')('should end logging automatically when only .startLogging() is called', async () => {
|
||||
const appProcess = ChildProcess.spawn(process.execPath,
|
||||
[appPath], {
|
||||
env: {
|
||||
TEST_REQUEST_URL: serverUrl,
|
||||
TEST_DUMP_FILE_DYNAMIC: dumpFileDynamic
|
||||
}
|
||||
});
|
||||
|
||||
await emittedOnce(appProcess, 'exit');
|
||||
expect(fs.existsSync(dumpFileDynamic)).to.be.true('dynamic dump file exists');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue