2020-03-20 20:28:31 +00:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import * as ChildProcess from 'child_process';
|
|
|
|
import * as path from 'path';
|
|
|
|
import { emittedOnce } from './events-helpers';
|
|
|
|
import { closeWindow } from './window-helpers';
|
2018-05-18 07:36:43 +00:00
|
|
|
|
2020-04-09 07:01:16 +00:00
|
|
|
import { TopLevelWindow, WebContentsView } from 'electron/main';
|
2018-05-18 07:36:43 +00:00
|
|
|
|
|
|
|
describe('WebContentsView', () => {
|
2020-03-20 20:28:31 +00:00
|
|
|
let w: TopLevelWindow;
|
|
|
|
afterEach(() => closeWindow(w as any).then(() => { w = null as unknown as TopLevelWindow; }));
|
2018-05-18 07:36:43 +00:00
|
|
|
|
|
|
|
it('can be used as content view', () => {
|
2020-03-20 20:28:31 +00:00
|
|
|
w = new TopLevelWindow({ show: false });
|
2020-04-09 07:01:16 +00:00
|
|
|
w.setContentView(new WebContentsView({}));
|
2020-03-20 20:28:31 +00:00
|
|
|
});
|
2018-11-08 15:57:28 +00:00
|
|
|
|
|
|
|
describe('new WebContentsView()', () => {
|
|
|
|
it('does not crash on exit', async () => {
|
2020-03-20 20:28:31 +00:00
|
|
|
const appPath = path.join(__dirname, 'fixtures', 'api', 'leak-exit-webcontentsview.js');
|
|
|
|
const electronPath = process.execPath;
|
|
|
|
const appProcess = ChildProcess.spawn(electronPath, ['--enable-logging', appPath]);
|
|
|
|
let output = '';
|
|
|
|
appProcess.stdout.on('data', data => { output += data; });
|
|
|
|
appProcess.stderr.on('data', data => { output += data; });
|
|
|
|
const [code] = await emittedOnce(appProcess, 'exit');
|
2020-02-06 16:15:55 +00:00
|
|
|
if (code !== 0) {
|
2020-03-20 20:28:31 +00:00
|
|
|
console.log(code, output);
|
2020-02-06 16:15:55 +00:00
|
|
|
}
|
2020-03-20 20:28:31 +00:00
|
|
|
expect(code).to.equal(0);
|
|
|
|
});
|
|
|
|
});
|
2020-03-13 17:33:37 +00:00
|
|
|
|
|
|
|
function triggerGCByAllocation () {
|
2020-03-20 20:28:31 +00:00
|
|
|
const arr = [];
|
2020-03-13 17:33:37 +00:00
|
|
|
for (let i = 0; i < 1000000; i++) {
|
2020-03-20 20:28:31 +00:00
|
|
|
arr.push([]);
|
2020-03-13 17:33:37 +00:00
|
|
|
}
|
2020-03-20 20:28:31 +00:00
|
|
|
return arr;
|
2020-03-13 17:33:37 +00:00
|
|
|
}
|
|
|
|
|
2020-03-20 15:12:18 +00:00
|
|
|
it('doesn\'t crash when GCed during allocation', (done) => {
|
2020-03-13 17:33:37 +00:00
|
|
|
// eslint-disable-next-line no-new
|
2020-04-09 07:01:16 +00:00
|
|
|
new WebContentsView({});
|
2020-03-13 17:33:37 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
// NB. the crash we're testing for is the lack of a current `v8::Context`
|
|
|
|
// when emitting an event in WebContents's destructor. V8 is inconsistent
|
|
|
|
// about whether or not there's a current context during garbage
|
|
|
|
// collection, and it seems that `v8Util.requestGarbageCollectionForTesting`
|
|
|
|
// causes a GC in which there _is_ a current context, so the crash isn't
|
|
|
|
// triggered. Thus, we force a GC by other means: namely, by allocating a
|
|
|
|
// bunch of stuff.
|
2020-03-20 20:28:31 +00:00
|
|
|
triggerGCByAllocation();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|