123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- import { expect } from 'chai';
- import * as path from 'path';
- import { emittedOnce } from './events-helpers';
- import { BrowserView, BrowserWindow, webContents } from 'electron/main';
- import { closeWindow } from './window-helpers';
- import { defer, startRemoteControlApp } from './spec-helpers';
- describe('BrowserView module', () => {
- const fixtures = path.resolve(__dirname, '..', 'spec', 'fixtures');
- let w: BrowserWindow;
- let view: BrowserView;
- beforeEach(() => {
- expect(webContents.getAllWebContents()).to.have.length(0);
- w = new BrowserWindow({
- show: false,
- width: 400,
- height: 400,
- webPreferences: {
- backgroundThrottling: false
- }
- });
- });
- afterEach(async () => {
- const p = emittedOnce(w.webContents, 'destroyed');
- await closeWindow(w);
- w = null as any;
- await p;
- if (view) {
- const p = emittedOnce(view.webContents, 'destroyed');
- (view.webContents as any).destroy();
- view = null as any;
- await p;
- }
- expect(webContents.getAllWebContents()).to.have.length(0);
- });
- it('can be created with an existing webContents', async () => {
- const wc = (webContents as any).create({ sandbox: true });
- await wc.loadURL('about:blank');
- view = new BrowserView({ webContents: wc } as any);
- expect(view.webContents.getURL()).to.equal('about:blank');
- });
- describe('BrowserView.setBackgroundColor()', () => {
- it('does not throw for valid args', () => {
- view = new BrowserView();
- view.setBackgroundColor('#000');
- });
- it('throws for invalid args', () => {
- view = new BrowserView();
- expect(() => {
- view.setBackgroundColor(null as any);
- }).to.throw(/conversion failure/);
- });
- });
- describe('BrowserView.setAutoResize()', () => {
- it('does not throw for valid args', () => {
- view = new BrowserView();
- view.setAutoResize({});
- view.setAutoResize({ width: true, height: false });
- });
- it('throws for invalid args', () => {
- view = new BrowserView();
- expect(() => {
- view.setAutoResize(null as any);
- }).to.throw(/conversion failure/);
- });
- });
- describe('BrowserView.setBounds()', () => {
- it('does not throw for valid args', () => {
- view = new BrowserView();
- view.setBounds({ x: 0, y: 0, width: 1, height: 1 });
- });
- it('throws for invalid args', () => {
- view = new BrowserView();
- expect(() => {
- view.setBounds(null as any);
- }).to.throw(/conversion failure/);
- expect(() => {
- view.setBounds({} as any);
- }).to.throw(/conversion failure/);
- });
- });
- describe('BrowserView.getBounds()', () => {
- it('returns the current bounds', () => {
- view = new BrowserView();
- const bounds = { x: 10, y: 20, width: 30, height: 40 };
- view.setBounds(bounds);
- expect(view.getBounds()).to.deep.equal(bounds);
- });
- });
- describe('BrowserWindow.setBrowserView()', () => {
- it('does not throw for valid args', () => {
- view = new BrowserView();
- w.setBrowserView(view);
- });
- it('does not throw if called multiple times with same view', () => {
- view = new BrowserView();
- w.setBrowserView(view);
- w.setBrowserView(view);
- w.setBrowserView(view);
- });
- });
- describe('BrowserWindow.getBrowserView()', () => {
- it('returns the set view', () => {
- view = new BrowserView();
- w.setBrowserView(view);
- const view2 = w.getBrowserView();
- expect(view2!.webContents.id).to.equal(view.webContents.id);
- });
- it('returns null if none is set', () => {
- const view = w.getBrowserView();
- expect(view).to.be.null('view');
- });
- });
- describe('BrowserWindow.addBrowserView()', () => {
- it('does not throw for valid args', () => {
- const view1 = new BrowserView();
- defer(() => (view1.webContents as any).destroy());
- w.addBrowserView(view1);
- defer(() => w.removeBrowserView(view1));
- const view2 = new BrowserView();
- defer(() => (view2.webContents as any).destroy());
- w.addBrowserView(view2);
- defer(() => w.removeBrowserView(view2));
- });
- it('does not throw if called multiple times with same view', () => {
- view = new BrowserView();
- w.addBrowserView(view);
- w.addBrowserView(view);
- w.addBrowserView(view);
- });
- it('does not crash if the BrowserView webContents are destroyed prior to window removal', () => {
- expect(() => {
- const view1 = new BrowserView();
- (view1.webContents as any).destroy();
- w.addBrowserView(view1);
- }).to.not.throw();
- });
- it('can handle BrowserView reparenting', async () => {
- view = new BrowserView();
- w.addBrowserView(view);
- view.webContents.loadURL('about:blank');
- await emittedOnce(view.webContents, 'did-finish-load');
- const w2 = new BrowserWindow({ show: false });
- w2.addBrowserView(view);
- w.close();
- view.webContents.loadURL(`file://${fixtures}/pages/blank.html`);
- await emittedOnce(view.webContents, 'did-finish-load');
- // Clean up - the afterEach hook assumes the webContents on w is still alive.
- w = new BrowserWindow({ show: false });
- w2.close();
- w2.destroy();
- });
- });
- describe('BrowserWindow.removeBrowserView()', () => {
- it('does not throw if called multiple times with same view', () => {
- expect(() => {
- view = new BrowserView();
- w.addBrowserView(view);
- w.removeBrowserView(view);
- w.removeBrowserView(view);
- }).to.not.throw();
- });
- });
- describe('BrowserWindow.getBrowserViews()', () => {
- it('returns same views as was added', () => {
- const view1 = new BrowserView();
- defer(() => (view1.webContents as any).destroy());
- w.addBrowserView(view1);
- defer(() => w.removeBrowserView(view1));
- const view2 = new BrowserView();
- defer(() => (view2.webContents as any).destroy());
- w.addBrowserView(view2);
- defer(() => w.removeBrowserView(view2));
- const views = w.getBrowserViews();
- expect(views).to.have.lengthOf(2);
- expect(views[0].webContents.id).to.equal(view1.webContents.id);
- expect(views[1].webContents.id).to.equal(view2.webContents.id);
- });
- });
- describe('BrowserWindow.setTopBrowserView()', () => {
- it('should throw an error when a BrowserView is not attached to the window', () => {
- view = new BrowserView();
- expect(() => {
- w.setTopBrowserView(view);
- }).to.throw(/is not attached/);
- });
- it('should throw an error when a BrowserView is attached to some other window', () => {
- view = new BrowserView();
- const win2 = new BrowserWindow();
- w.addBrowserView(view);
- view.setBounds({ x: 0, y: 0, width: 100, height: 100 });
- win2.addBrowserView(view);
- expect(() => {
- w.setTopBrowserView(view);
- }).to.throw(/is not attached/);
- win2.close();
- win2.destroy();
- });
- });
- describe('BrowserView.webContents.getOwnerBrowserWindow()', () => {
- it('points to owning window', () => {
- view = new BrowserView();
- expect(view.webContents.getOwnerBrowserWindow()).to.be.null('owner browser window');
- w.setBrowserView(view);
- expect(view.webContents.getOwnerBrowserWindow()).to.equal(w);
- w.setBrowserView(null);
- expect(view.webContents.getOwnerBrowserWindow()).to.be.null('owner browser window');
- });
- });
- describe('shutdown behavior', () => {
- it('does not crash on exit', async () => {
- const rc = await startRemoteControlApp();
- await rc.remotely(() => {
- const { BrowserView, app } = require('electron');
- new BrowserView({}) // eslint-disable-line
- setTimeout(() => {
- app.quit();
- });
- });
- const [code] = await emittedOnce(rc.process, 'exit');
- expect(code).to.equal(0);
- });
- it('does not crash on exit if added to a browser window', async () => {
- const rc = await startRemoteControlApp();
- await rc.remotely(() => {
- const { app, BrowserView, BrowserWindow } = require('electron');
- const bv = new BrowserView();
- bv.webContents.loadURL('about:blank');
- const bw = new BrowserWindow({ show: false });
- bw.addBrowserView(bv);
- setTimeout(() => {
- app.quit();
- });
- });
- const [code] = await emittedOnce(rc.process, 'exit');
- expect(code).to.equal(0);
- });
- });
- describe('window.open()', () => {
- it('works in BrowserView', async () => {
- view = new BrowserView();
- w.setBrowserView(view);
- const newWindow = emittedOnce(view.webContents, 'new-window');
- view.webContents.once('new-window', event => event.preventDefault());
- view.webContents.loadFile(path.join(fixtures, 'pages', 'window-open.html'));
- const [, url, frameName,,, additionalFeatures] = await newWindow;
- expect(url).to.equal('http://host/');
- expect(frameName).to.equal('host');
- expect(additionalFeatures[0]).to.equal('this-is-not-a-standard-feature');
- });
- });
- });
|