123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740 |
- import { expect } from 'chai';
- import * as http from 'node:http';
- import * as https from 'node:https';
- import * as path from 'node:path';
- import * as fs from 'node:fs';
- import * as ChildProcess from 'node:child_process';
- import { app, session, BrowserWindow, net, ipcMain, Session, webFrameMain, WebFrameMain } from 'electron/main';
- import * as send from 'send';
- import * as auth from 'basic-auth';
- import { closeAllWindows } from './lib/window-helpers';
- import { defer, listen } from './lib/spec-helpers';
- import { once } from 'node:events';
- import { setTimeout } from 'node:timers/promises';
- describe('session module', () => {
- const fixtures = path.resolve(__dirname, 'fixtures');
- const url = 'http://127.0.0.1';
- describe('session.defaultSession', () => {
- it('returns the default session', () => {
- expect(session.defaultSession).to.equal(session.fromPartition(''));
- });
- });
- describe('session.fromPartition(partition, options)', () => {
- it('returns existing session with same partition', () => {
- expect(session.fromPartition('test')).to.equal(session.fromPartition('test'));
- });
- });
- describe('session.fromPath(path)', () => {
- it('returns storage path of a session which was created with an absolute path', () => {
- const tmppath = require('electron').app.getPath('temp');
- const ses = session.fromPath(tmppath);
- expect(ses.storagePath).to.equal(tmppath);
- });
- });
- describe('ses.cookies', () => {
- const name = '0';
- const value = '0';
- afterEach(closeAllWindows);
- // Clear cookie of defaultSession after each test.
- afterEach(async () => {
- const { cookies } = session.defaultSession;
- const cs = await cookies.get({ url });
- for (const c of cs) {
- await cookies.remove(url, c.name);
- }
- });
- it('should get cookies', async () => {
- const server = http.createServer((req, res) => {
- res.setHeader('Set-Cookie', [`${name}=${value}`]);
- res.end('finished');
- server.close();
- });
- const { port } = await listen(server);
- const w = new BrowserWindow({ show: false });
- await w.loadURL(`${url}:${port}`);
- const list = await w.webContents.session.cookies.get({ url });
- const cookie = list.find(cookie => cookie.name === name);
- expect(cookie).to.exist.and.to.have.property('value', value);
- });
- it('sets cookies', async () => {
- const { cookies } = session.defaultSession;
- const name = '1';
- const value = '1';
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- const c = (await cookies.get({ url }))[0];
- expect(c.name).to.equal(name);
- expect(c.value).to.equal(value);
- expect(c.session).to.equal(false);
- });
- it('sets session cookies', async () => {
- const { cookies } = session.defaultSession;
- const name = '2';
- const value = '1';
- await cookies.set({ url, name, value });
- const c = (await cookies.get({ url }))[0];
- expect(c.name).to.equal(name);
- expect(c.value).to.equal(value);
- expect(c.session).to.equal(true);
- });
- it('sets cookies without name', async () => {
- const { cookies } = session.defaultSession;
- const value = '3';
- await cookies.set({ url, value });
- const c = (await cookies.get({ url }))[0];
- expect(c.name).to.be.empty();
- expect(c.value).to.equal(value);
- });
- for (const sameSite of <const>['unspecified', 'no_restriction', 'lax', 'strict']) {
- it(`sets cookies with samesite=${sameSite}`, async () => {
- const { cookies } = session.defaultSession;
- const value = 'hithere';
- await cookies.set({ url, value, sameSite });
- const c = (await cookies.get({ url }))[0];
- expect(c.name).to.be.empty();
- expect(c.value).to.equal(value);
- expect(c.sameSite).to.equal(sameSite);
- });
- }
- it('fails to set cookies with samesite=garbage', async () => {
- const { cookies } = session.defaultSession;
- const value = 'hithere';
- await expect(cookies.set({ url, value, sameSite: 'garbage' as any })).to.eventually.be.rejectedWith('Failed to convert \'garbage\' to an appropriate cookie same site value');
- });
- it('gets cookies without url', async () => {
- const { cookies } = session.defaultSession;
- const name = '1';
- const value = '1';
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- const cs = await cookies.get({ domain: '127.0.0.1' });
- expect(cs.some(c => c.name === name && c.value === value)).to.equal(true);
- });
- it('rejects when setting a cookie with missing required fields', async () => {
- const { cookies } = session.defaultSession;
- const name = '1';
- const value = '1';
- await expect(
- cookies.set({ url: '', name, value })
- ).to.eventually.be.rejectedWith('Failed to set cookie - The cookie was set with an invalid Domain attribute.');
- });
- it('rejects when setting a cookie with an invalid URL', async () => {
- const { cookies } = session.defaultSession;
- const name = '1';
- const value = '1';
- await expect(
- cookies.set({ url: 'asdf', name, value })
- ).to.eventually.be.rejectedWith('Failed to set cookie - The cookie was set with an invalid Domain attribute.');
- });
- it('rejects when setting a cookie with an invalid ASCII control character', async () => {
- const { cookies } = session.defaultSession;
- const name = 'BadCookie';
- const value = 'test;test';
- await expect(
- cookies.set({ url, name, value })
- ).to.eventually.be.rejectedWith('Failed to set cookie - The cookie contains ASCII control characters');
- });
- it('should overwrite previous cookies', async () => {
- const { cookies } = session.defaultSession;
- const name = 'DidOverwrite';
- for (const value of ['No', 'Yes']) {
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- const list = await cookies.get({ url });
- expect(list.some(cookie => cookie.name === name && cookie.value === value)).to.equal(true);
- }
- });
- it('should remove cookies', async () => {
- const { cookies } = session.defaultSession;
- const name = '2';
- const value = '2';
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- await cookies.remove(url, name);
- const list = await cookies.get({ url });
- expect(list.some(cookie => cookie.name === name && cookie.value === value)).to.equal(false);
- });
- // DISABLED-FIXME
- it('should set cookie for standard scheme', async () => {
- const { cookies } = session.defaultSession;
- const domain = 'fake-host';
- const url = `${standardScheme}://${domain}`;
- const name = 'custom';
- const value = '1';
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- const list = await cookies.get({ url });
- expect(list).to.have.lengthOf(1);
- expect(list[0]).to.have.property('name', name);
- expect(list[0]).to.have.property('value', value);
- expect(list[0]).to.have.property('domain', domain);
- });
- it('emits a changed event when a cookie is added or removed', async () => {
- const { cookies } = session.fromPartition('cookies-changed');
- const name = 'foo';
- const value = 'bar';
- const a = once(cookies, 'changed');
- await cookies.set({ url, name, value, expirationDate: (Date.now()) / 1000 + 120 });
- const [, setEventCookie, setEventCause, setEventRemoved] = await a;
- const b = once(cookies, 'changed');
- await cookies.remove(url, name);
- const [, removeEventCookie, removeEventCause, removeEventRemoved] = await b;
- expect(setEventCookie.name).to.equal(name);
- expect(setEventCookie.value).to.equal(value);
- expect(setEventCause).to.equal('explicit');
- expect(setEventRemoved).to.equal(false);
- expect(removeEventCookie.name).to.equal(name);
- expect(removeEventCookie.value).to.equal(value);
- expect(removeEventCause).to.equal('explicit');
- expect(removeEventRemoved).to.equal(true);
- });
- describe('ses.cookies.flushStore()', async () => {
- it('flushes the cookies to disk', async () => {
- const name = 'foo';
- const value = 'bar';
- const { cookies } = session.defaultSession;
- await cookies.set({ url, name, value });
- await cookies.flushStore();
- });
- });
- it('should survive an app restart for persistent partition', async function () {
- this.timeout(60000);
- const appPath = path.join(fixtures, 'api', 'cookie-app');
- const runAppWithPhase = (phase: string) => {
- return new Promise((resolve) => {
- let output = '';
- const appProcess = ChildProcess.spawn(
- process.execPath,
- [appPath],
- { env: { PHASE: phase, ...process.env } }
- );
- appProcess.stdout.on('data', data => { output += data; });
- appProcess.on('exit', () => {
- resolve(output.replaceAll(/(\r\n|\n|\r)/gm, ''));
- });
- });
- };
- expect(await runAppWithPhase('one')).to.equal('011');
- expect(await runAppWithPhase('two')).to.equal('110');
- });
- });
- describe('ses.clearStorageData(options)', () => {
- afterEach(closeAllWindows);
- it('clears localstorage data', async () => {
- const w = new BrowserWindow({ show: false, webPreferences: { nodeIntegration: true } });
- await w.loadFile(path.join(fixtures, 'api', 'localstorage.html'));
- await w.webContents.session.clearStorageData({
- origin: 'file://',
- storages: ['localstorage'],
- quotas: ['temporary']
- });
- while (await w.webContents.executeJavaScript('localStorage.length') !== 0) {
- // The storage clear isn't instantly visible to the renderer, so keep
- // trying until it is.
- }
- });
- });
- describe('will-download event', () => {
- afterEach(closeAllWindows);
- it('can cancel default download behavior', async () => {
- const w = new BrowserWindow({ show: false });
- const mockFile = Buffer.alloc(1024);
- const contentDisposition = 'inline; filename="mockFile.txt"';
- const downloadServer = http.createServer((req, res) => {
- res.writeHead(200, {
- 'Content-Length': mockFile.length,
- 'Content-Type': 'application/plain',
- 'Content-Disposition': contentDisposition
- });
- res.end(mockFile);
- downloadServer.close();
- });
- const url = (await listen(downloadServer)).url;
- const downloadPrevented: Promise<{itemUrl: string, itemFilename: string, item: Electron.DownloadItem}> = new Promise(resolve => {
- w.webContents.session.once('will-download', function (e, item) {
- e.preventDefault();
- resolve({ itemUrl: item.getURL(), itemFilename: item.getFilename(), item });
- });
- });
- w.loadURL(url);
- const { item, itemUrl, itemFilename } = await downloadPrevented;
- expect(itemUrl).to.equal(url + '/');
- expect(itemFilename).to.equal('mockFile.txt');
- // Delay till the next tick.
- await new Promise(setImmediate);
- expect(() => item.getURL()).to.throw('DownloadItem used after being destroyed');
- });
- });
- describe('ses.protocol', () => {
- const partitionName = 'temp';
- const protocolName = 'sp';
- let customSession: Session;
- const protocol = session.defaultSession.protocol;
- const handler = (ignoredError: any, callback: Function) => {
- callback({ data: '<script>require(\'electron\').ipcRenderer.send(\'hello\')</script>', mimeType: 'text/html' });
- };
- beforeEach(async () => {
- customSession = session.fromPartition(partitionName);
- await customSession.protocol.registerStringProtocol(protocolName, handler);
- });
- afterEach(async () => {
- await customSession.protocol.unregisterProtocol(protocolName);
- customSession = null as any;
- });
- afterEach(closeAllWindows);
- it('does not affect defaultSession', () => {
- const result1 = protocol.isProtocolRegistered(protocolName);
- expect(result1).to.equal(false);
- const result2 = customSession.protocol.isProtocolRegistered(protocolName);
- expect(result2).to.equal(true);
- });
- it('handles requests from partition', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- partition: partitionName,
- nodeIntegration: true,
- contextIsolation: false
- }
- });
- customSession = session.fromPartition(partitionName);
- await customSession.protocol.registerStringProtocol(protocolName, handler);
- w.loadURL(`${protocolName}://fake-host`);
- await once(ipcMain, 'hello');
- });
- });
- describe('ses.setProxy(options)', () => {
- let server: http.Server;
- let customSession: Electron.Session;
- let created = false;
- beforeEach(async () => {
- customSession = session.fromPartition('proxyconfig');
- if (!created) {
- // Work around for https://github.com/electron/electron/issues/26166 to
- // reduce flake
- await setTimeout(100);
- created = true;
- }
- });
- afterEach(() => {
- if (server) {
- server.close();
- }
- customSession = null as any;
- });
- it('allows configuring proxy settings', async () => {
- const config = { proxyRules: 'http=myproxy:80' };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://example.com/');
- expect(proxy).to.equal('PROXY myproxy:80');
- });
- it('allows removing the implicit bypass rules for localhost', async () => {
- const config = {
- proxyRules: 'http=myproxy:80',
- proxyBypassRules: '<-loopback>'
- };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://localhost');
- expect(proxy).to.equal('PROXY myproxy:80');
- });
- it('allows configuring proxy settings with pacScript', async () => {
- server = http.createServer((req, res) => {
- const pac = `
- function FindProxyForURL(url, host) {
- return "PROXY myproxy:8132";
- }
- `;
- res.writeHead(200, {
- 'Content-Type': 'application/x-ns-proxy-autoconfig'
- });
- res.end(pac);
- });
- const { url } = await listen(server);
- {
- const config = { pacScript: url };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('https://google.com');
- expect(proxy).to.equal('PROXY myproxy:8132');
- }
- {
- const config = { mode: 'pac_script' as any, pacScript: url };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('https://google.com');
- expect(proxy).to.equal('PROXY myproxy:8132');
- }
- });
- it('allows bypassing proxy settings', async () => {
- const config = {
- proxyRules: 'http=myproxy:80',
- proxyBypassRules: '<local>'
- };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://example/');
- expect(proxy).to.equal('DIRECT');
- });
- it('allows configuring proxy settings with mode `direct`', async () => {
- const config = { mode: 'direct' as const, proxyRules: 'http=myproxy:80' };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://example.com/');
- expect(proxy).to.equal('DIRECT');
- });
- it('allows configuring proxy settings with mode `auto_detect`', async () => {
- const config = { mode: 'auto_detect' as const };
- await customSession.setProxy(config);
- });
- it('allows configuring proxy settings with mode `pac_script`', async () => {
- const config = { mode: 'pac_script' as const };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://example.com/');
- expect(proxy).to.equal('DIRECT');
- });
- it('allows configuring proxy settings with mode `fixed_servers`', async () => {
- const config = { mode: 'fixed_servers' as const, proxyRules: 'http=myproxy:80' };
- await customSession.setProxy(config);
- const proxy = await customSession.resolveProxy('http://example.com/');
- expect(proxy).to.equal('PROXY myproxy:80');
- });
- it('allows configuring proxy settings with mode `system`', async () => {
- const config = { mode: 'system' as const };
- await customSession.setProxy(config);
- });
- it('disallows configuring proxy settings with mode `invalid`', async () => {
- const config = { mode: 'invalid' as any };
- await expect(customSession.setProxy(config)).to.eventually.be.rejectedWith(/Invalid mode/);
- });
- it('reload proxy configuration', async () => {
- let proxyPort = 8132;
- server = http.createServer((req, res) => {
- const pac = `
- function FindProxyForURL(url, host) {
- return "PROXY myproxy:${proxyPort}";
- }
- `;
- res.writeHead(200, {
- 'Content-Type': 'application/x-ns-proxy-autoconfig'
- });
- res.end(pac);
- });
- const { url } = await listen(server);
- const config = { mode: 'pac_script' as const, pacScript: url };
- await customSession.setProxy(config);
- {
- const proxy = await customSession.resolveProxy('https://google.com');
- expect(proxy).to.equal(`PROXY myproxy:${proxyPort}`);
- }
- {
- proxyPort = 8133;
- await customSession.forceReloadProxyConfig();
- const proxy = await customSession.resolveProxy('https://google.com');
- expect(proxy).to.equal(`PROXY myproxy:${proxyPort}`);
- }
- });
- });
- describe('ses.resolveHost(host)', () => {
- let customSession: Electron.Session;
- beforeEach(async () => {
- customSession = session.fromPartition('resolvehost');
- });
- afterEach(() => {
- customSession = null as any;
- });
- it('resolves ipv4.localhost2', async () => {
- const { endpoints } = await customSession.resolveHost('ipv4.localhost2');
- expect(endpoints).to.be.a('array');
- expect(endpoints).to.have.lengthOf(1);
- expect(endpoints[0].family).to.equal('ipv4');
- expect(endpoints[0].address).to.equal('10.0.0.1');
- });
- it('fails to resolve AAAA record for ipv4.localhost2', async () => {
- await expect(customSession.resolveHost('ipv4.localhost2', {
- queryType: 'AAAA'
- }))
- .to.eventually.be.rejectedWith(/net::ERR_NAME_NOT_RESOLVED/);
- });
- it('resolves ipv6.localhost2', async () => {
- const { endpoints } = await customSession.resolveHost('ipv6.localhost2');
- expect(endpoints).to.be.a('array');
- expect(endpoints).to.have.lengthOf(1);
- expect(endpoints[0].family).to.equal('ipv6');
- expect(endpoints[0].address).to.equal('::1');
- });
- it('fails to resolve A record for ipv6.localhost2', async () => {
- await expect(customSession.resolveHost('notfound.localhost2', {
- queryType: 'A'
- }))
- .to.eventually.be.rejectedWith(/net::ERR_NAME_NOT_RESOLVED/);
- });
- it('fails to resolve notfound.localhost2', async () => {
- await expect(customSession.resolveHost('notfound.localhost2'))
- .to.eventually.be.rejectedWith(/net::ERR_NAME_NOT_RESOLVED/);
- });
- });
- describe('ses.getBlobData()', () => {
- const scheme = 'cors-blob';
- const protocol = session.defaultSession.protocol;
- const url = `${scheme}://host`;
- after(async () => {
- await protocol.unregisterProtocol(scheme);
- });
- afterEach(closeAllWindows);
- it('returns blob data for uuid', (done) => {
- const postData = JSON.stringify({
- type: 'blob',
- value: 'hello'
- });
- const content = `<html>
- <script>
- let fd = new FormData();
- fd.append('file', new Blob(['${postData}'], {type:'application/json'}));
- fetch('${url}', {method:'POST', body: fd });
- </script>
- </html>`;
- protocol.registerStringProtocol(scheme, (request, callback) => {
- try {
- if (request.method === 'GET') {
- callback({ data: content, mimeType: 'text/html' });
- } else if (request.method === 'POST') {
- const uuid = request.uploadData![1].blobUUID;
- expect(uuid).to.be.a('string');
- session.defaultSession.getBlobData(uuid!).then(result => {
- try {
- expect(result.toString()).to.equal(postData);
- done();
- } catch (e) {
- done(e);
- }
- });
- }
- } catch (e) {
- done(e);
- }
- });
- const w = new BrowserWindow({ show: false });
- w.loadURL(url);
- });
- });
- describe('ses.getBlobData2()', () => {
- const scheme = 'cors-blob';
- const protocol = session.defaultSession.protocol;
- const url = `${scheme}://host`;
- after(async () => {
- await protocol.unregisterProtocol(scheme);
- });
- afterEach(closeAllWindows);
- it('returns blob data for uuid', (done) => {
- const content = `<html>
- <script>
- let fd = new FormData();
- fd.append("data", new Blob(new Array(65_537).fill('a')));
- fetch('${url}', {method:'POST', body: fd });
- </script>
- </html>`;
- protocol.registerStringProtocol(scheme, (request, callback) => {
- try {
- if (request.method === 'GET') {
- callback({ data: content, mimeType: 'text/html' });
- } else if (request.method === 'POST') {
- const uuid = request.uploadData![1].blobUUID;
- expect(uuid).to.be.a('string');
- session.defaultSession.getBlobData(uuid!).then(result => {
- try {
- const data = new Array(65_537).fill('a');
- expect(result.toString()).to.equal(data.join(''));
- done();
- } catch (e) {
- done(e);
- }
- });
- }
- } catch (e) {
- done(e);
- }
- });
- const w = new BrowserWindow({ show: false });
- w.loadURL(url);
- });
- });
- describe('ses.setCertificateVerifyProc(callback)', () => {
- let server: http.Server;
- let serverUrl: string;
- beforeEach(async () => {
- const certPath = path.join(fixtures, 'certificates');
- const options = {
- key: fs.readFileSync(path.join(certPath, 'server.key')),
- cert: fs.readFileSync(path.join(certPath, 'server.pem')),
- ca: [
- fs.readFileSync(path.join(certPath, 'rootCA.pem')),
- fs.readFileSync(path.join(certPath, 'intermediateCA.pem'))
- ],
- rejectUnauthorized: false
- };
- server = https.createServer(options, (req, res) => {
- res.writeHead(200);
- res.end('<title>hello</title>');
- });
- serverUrl = (await listen(server)).url;
- });
- afterEach((done) => {
- server.close(done);
- });
- afterEach(closeAllWindows);
- it('accepts the request when the callback is called with 0', async () => {
- const ses = session.fromPartition(`${Math.random()}`);
- let validate: () => void;
- ses.setCertificateVerifyProc(({ hostname, verificationResult, errorCode }, callback) => {
- if (hostname !== '127.0.0.1') return callback(-3);
- validate = () => {
- expect(verificationResult).to.be.oneOf(['net::ERR_CERT_AUTHORITY_INVALID', 'net::ERR_CERT_COMMON_NAME_INVALID']);
- expect(errorCode).to.be.oneOf([-202, -200]);
- };
- callback(0);
- });
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- await w.loadURL(serverUrl);
- expect(w.webContents.getTitle()).to.equal('hello');
- expect(validate!).not.to.be.undefined();
- validate!();
- });
- it('rejects the request when the callback is called with -2', async () => {
- const ses = session.fromPartition(`${Math.random()}`);
- let validate: () => void;
- ses.setCertificateVerifyProc(({ hostname, certificate, verificationResult, isIssuedByKnownRoot }, callback) => {
- if (hostname !== '127.0.0.1') return callback(-3);
- validate = () => {
- expect(certificate.issuerName).to.equal('Intermediate CA');
- expect(certificate.subjectName).to.equal('localhost');
- expect(certificate.issuer.commonName).to.equal('Intermediate CA');
- expect(certificate.subject.commonName).to.equal('localhost');
- expect(certificate.issuerCert.issuer.commonName).to.equal('Root CA');
- expect(certificate.issuerCert.subject.commonName).to.equal('Intermediate CA');
- expect(certificate.issuerCert.issuerCert.issuer.commonName).to.equal('Root CA');
- expect(certificate.issuerCert.issuerCert.subject.commonName).to.equal('Root CA');
- expect(certificate.issuerCert.issuerCert.issuerCert).to.equal(undefined);
- expect(verificationResult).to.be.oneOf(['net::ERR_CERT_AUTHORITY_INVALID', 'net::ERR_CERT_COMMON_NAME_INVALID']);
- expect(isIssuedByKnownRoot).to.be.false();
- };
- callback(-2);
- });
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- await expect(w.loadURL(serverUrl)).to.eventually.be.rejectedWith(/ERR_FAILED/);
- expect(validate!).not.to.be.undefined();
- validate!();
- });
- it('saves cached results', async () => {
- const ses = session.fromPartition(`${Math.random()}`);
- let numVerificationRequests = 0;
- ses.setCertificateVerifyProc((e, callback) => {
- if (e.hostname !== '127.0.0.1') return callback(-3);
- numVerificationRequests++;
- callback(-2);
- });
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- await expect(w.loadURL(serverUrl), 'first load').to.eventually.be.rejectedWith(/ERR_FAILED/);
- await once(w.webContents, 'did-stop-loading');
- await expect(w.loadURL(serverUrl + '/test'), 'second load').to.eventually.be.rejectedWith(/ERR_FAILED/);
- expect(numVerificationRequests).to.equal(1);
- });
- it('does not cancel requests in other sessions', async () => {
- const ses1 = session.fromPartition(`${Math.random()}`);
- ses1.setCertificateVerifyProc((opts, cb) => cb(0));
- const ses2 = session.fromPartition(`${Math.random()}`);
- const req = net.request({ url: serverUrl, session: ses1, credentials: 'include' });
- req.end();
- setTimeout().then(() => {
- ses2.setCertificateVerifyProc((opts, callback) => callback(0));
- });
- await expect(new Promise<void>((resolve, reject) => {
- req.on('error', (err) => {
- reject(err);
- });
- req.on('response', () => {
- resolve();
- });
- })).to.eventually.be.fulfilled();
- });
- });
- describe('ses.clearAuthCache()', () => {
- it('can clear http auth info from cache', async () => {
- const ses = session.fromPartition('auth-cache');
- const server = http.createServer((req, res) => {
- const credentials = auth(req);
- if (!credentials || credentials.name !== 'test' || credentials.pass !== 'test') {
- res.statusCode = 401;
- res.setHeader('WWW-Authenticate', 'Basic realm="Restricted"');
- res.end();
- } else {
- res.end('authenticated');
- }
- });
- const { port } = await listen(server);
- const fetch = (url: string) => new Promise((resolve, reject) => {
- const request = net.request({ url, session: ses });
- request.on('response', (response) => {
- let data: string | null = null;
- response.on('data', (chunk) => {
- if (!data) {
- data = '';
- }
- data += chunk;
- });
- response.on('end', () => {
- if (!data) {
- reject(new Error('Empty response'));
- } else {
- resolve(data);
- }
- });
- response.on('error', (error: any) => { reject(new Error(error)); });
- });
- request.on('error', (error: any) => { reject(new Error(error)); });
- request.end();
- });
- // the first time should throw due to unauthenticated
- await expect(fetch(`http://127.0.0.1:${port}`)).to.eventually.be.rejected();
- // passing the password should let us in
- expect(await fetch(`http://test:[email protected]:${port}`)).to.equal('authenticated');
- // subsequently, the credentials are cached
- expect(await fetch(`http://127.0.0.1:${port}`)).to.equal('authenticated');
- await ses.clearAuthCache();
- // once the cache is cleared, we should get an error again
- await expect(fetch(`http://127.0.0.1:${port}`)).to.eventually.be.rejected();
- });
- });
- describe('DownloadItem', () => {
- const mockPDF = Buffer.alloc(1024 * 1024 * 5);
- const downloadFilePath = path.join(__dirname, '..', 'fixtures', 'mock.pdf');
- const protocolName = 'custom-dl';
- const contentDisposition = 'inline; filename="mock.pdf"';
- let port: number;
- let downloadServer: http.Server;
- before(async () => {
- downloadServer = http.createServer((req, res) => {
- res.writeHead(200, {
- 'Content-Length': mockPDF.length,
- 'Content-Type': 'application/pdf',
- 'Content-Disposition': req.url === '/?testFilename' ? 'inline' : contentDisposition
- });
- res.end(mockPDF);
- });
- port = (await listen(downloadServer)).port;
- });
- after(async () => {
- await new Promise(resolve => downloadServer.close(resolve));
- });
- afterEach(closeAllWindows);
- const isPathEqual = (path1: string, path2: string) => {
- return path.relative(path1, path2) === '';
- };
- const assertDownload = (state: string, item: Electron.DownloadItem, isCustom = false) => {
- expect(state).to.equal('completed');
- expect(item.getFilename()).to.equal('mock.pdf');
- expect(path.isAbsolute(item.savePath)).to.equal(true);
- expect(isPathEqual(item.savePath, downloadFilePath)).to.equal(true);
- if (isCustom) {
- expect(item.getURL()).to.equal(`${protocolName}://item`);
- } else {
- expect(item.getURL()).to.be.equal(`${url}:${port}/`);
- }
- expect(item.getMimeType()).to.equal('application/pdf');
- expect(item.getReceivedBytes()).to.equal(mockPDF.length);
- expect(item.getTotalBytes()).to.equal(mockPDF.length);
- expect(item.getContentDisposition()).to.equal(contentDisposition);
- expect(fs.existsSync(downloadFilePath)).to.equal(true);
- fs.unlinkSync(downloadFilePath);
- };
- describe('session.downloadURL', () => {
- it('can perform a download', (done) => {
- session.defaultSession.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function (e, state) {
- try {
- assertDownload(state, item);
- done();
- } catch (e) {
- done(e);
- }
- });
- });
- session.defaultSession.downloadURL(`${url}:${port}`);
- });
- it('can perform a download with a valid auth header', async () => {
- const server = http.createServer((req, res) => {
- const { authorization } = req.headers;
- if (!authorization || authorization !== 'Basic i-am-an-auth-header') {
- res.statusCode = 401;
- res.setHeader('WWW-Authenticate', 'Basic realm="Restricted"');
- res.end();
- } else {
- res.writeHead(200, {
- 'Content-Length': mockPDF.length,
- 'Content-Type': 'application/pdf',
- 'Content-Disposition': req.url === '/?testFilename' ? 'inline' : contentDisposition
- });
- res.end(mockPDF);
- }
- });
- const { port } = await listen(server);
- const downloadDone: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- session.defaultSession.once('will-download', (e, item) => {
- item.savePath = downloadFilePath;
- item.on('done', () => {
- try {
- resolve(item);
- } catch { }
- });
- });
- });
- session.defaultSession.downloadURL(`${url}:${port}`, {
- headers: {
- Authorization: 'Basic i-am-an-auth-header'
- }
- });
- const item = await downloadDone;
- expect(item.getState()).to.equal('completed');
- expect(item.getFilename()).to.equal('mock.pdf');
- expect(item.getMimeType()).to.equal('application/pdf');
- expect(item.getReceivedBytes()).to.equal(mockPDF.length);
- expect(item.getTotalBytes()).to.equal(mockPDF.length);
- expect(item.getContentDisposition()).to.equal(contentDisposition);
- });
- it('throws when called with invalid headers', () => {
- expect(() => {
- session.defaultSession.downloadURL(`${url}:${port}`, {
- // @ts-ignore this line is intentionally incorrect
- headers: 'i-am-a-bad-header'
- });
- }).to.throw(/Invalid value for headers - must be an object/);
- });
- it('correctly handles a download with an invalid auth header', async () => {
- const server = http.createServer((req, res) => {
- const { authorization } = req.headers;
- if (!authorization || authorization !== 'Basic i-am-an-auth-header') {
- res.statusCode = 401;
- res.setHeader('WWW-Authenticate', 'Basic realm="Restricted"');
- res.end();
- } else {
- res.writeHead(200, {
- 'Content-Length': mockPDF.length,
- 'Content-Type': 'application/pdf',
- 'Content-Disposition': req.url === '/?testFilename' ? 'inline' : contentDisposition
- });
- res.end(mockPDF);
- }
- });
- const { port } = await listen(server);
- const downloadFailed: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- session.defaultSession.once('will-download', (_, item) => {
- item.savePath = downloadFilePath;
- item.on('done', (e, state) => {
- console.log(state);
- try {
- resolve(item);
- } catch { }
- });
- });
- });
- session.defaultSession.downloadURL(`${url}:${port}`, {
- headers: {
- Authorization: 'wtf-is-this'
- }
- });
- const item = await downloadFailed;
- expect(item.getState()).to.equal('interrupted');
- expect(item.getReceivedBytes()).to.equal(0);
- expect(item.getTotalBytes()).to.equal(0);
- });
- });
- describe('webContents.downloadURL', () => {
- it('can perform a download', (done) => {
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function (e, state) {
- try {
- assertDownload(state, item);
- done();
- } catch (e) {
- done(e);
- }
- });
- });
- w.webContents.downloadURL(`${url}:${port}`);
- });
- it('can perform a download with a valid auth header', async () => {
- const server = http.createServer((req, res) => {
- const { authorization } = req.headers;
- if (!authorization || authorization !== 'Basic i-am-an-auth-header') {
- res.statusCode = 401;
- res.setHeader('WWW-Authenticate', 'Basic realm="Restricted"');
- res.end();
- } else {
- res.writeHead(200, {
- 'Content-Length': mockPDF.length,
- 'Content-Type': 'application/pdf',
- 'Content-Disposition': req.url === '/?testFilename' ? 'inline' : contentDisposition
- });
- res.end(mockPDF);
- }
- });
- const { port } = await listen(server);
- const w = new BrowserWindow({ show: false });
- const downloadDone: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- w.webContents.session.once('will-download', (e, item) => {
- item.savePath = downloadFilePath;
- item.on('done', () => {
- try {
- resolve(item);
- } catch { }
- });
- });
- });
- w.webContents.downloadURL(`${url}:${port}`, {
- headers: {
- Authorization: 'Basic i-am-an-auth-header'
- }
- });
- const item = await downloadDone;
- expect(item.getState()).to.equal('completed');
- expect(item.getFilename()).to.equal('mock.pdf');
- expect(item.getMimeType()).to.equal('application/pdf');
- expect(item.getReceivedBytes()).to.equal(mockPDF.length);
- expect(item.getTotalBytes()).to.equal(mockPDF.length);
- expect(item.getContentDisposition()).to.equal(contentDisposition);
- });
- it('throws when called with invalid headers', () => {
- const w = new BrowserWindow({ show: false });
- expect(() => {
- w.webContents.downloadURL(`${url}:${port}`, {
- // @ts-ignore this line is intentionally incorrect
- headers: 'i-am-a-bad-header'
- });
- }).to.throw(/Invalid value for headers - must be an object/);
- });
- it('correctly handles a download and an invalid auth header', async () => {
- const server = http.createServer((req, res) => {
- const { authorization } = req.headers;
- if (!authorization || authorization !== 'Basic i-am-an-auth-header') {
- res.statusCode = 401;
- res.setHeader('WWW-Authenticate', 'Basic realm="Restricted"');
- res.end();
- } else {
- res.writeHead(200, {
- 'Content-Length': mockPDF.length,
- 'Content-Type': 'application/pdf',
- 'Content-Disposition': req.url === '/?testFilename' ? 'inline' : contentDisposition
- });
- res.end(mockPDF);
- }
- });
- const { port } = await listen(server);
- const w = new BrowserWindow({ show: false });
- const downloadFailed: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- w.webContents.session.once('will-download', (_, item) => {
- item.savePath = downloadFilePath;
- item.on('done', (e, state) => {
- console.log(state);
- try {
- resolve(item);
- } catch { }
- });
- });
- });
- w.webContents.downloadURL(`${url}:${port}`, {
- headers: {
- Authorization: 'wtf-is-this'
- }
- });
- const item = await downloadFailed;
- expect(item.getState()).to.equal('interrupted');
- expect(item.getReceivedBytes()).to.equal(0);
- expect(item.getTotalBytes()).to.equal(0);
- });
- it('can download from custom protocols', (done) => {
- const protocol = session.defaultSession.protocol;
- const handler = (ignoredError: any, callback: Function) => {
- callback({ url: `${url}:${port}` });
- };
- protocol.registerHttpProtocol(protocolName, handler);
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function (e, state) {
- try {
- assertDownload(state, item, true);
- done();
- } catch (e) {
- done(e);
- }
- });
- });
- w.webContents.downloadURL(`${protocolName}://item`);
- });
- it('can cancel download', (done) => {
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function (e, state) {
- try {
- expect(state).to.equal('cancelled');
- expect(item.getFilename()).to.equal('mock.pdf');
- expect(item.getMimeType()).to.equal('application/pdf');
- expect(item.getReceivedBytes()).to.equal(0);
- expect(item.getTotalBytes()).to.equal(mockPDF.length);
- expect(item.getContentDisposition()).to.equal(contentDisposition);
- done();
- } catch (e) {
- done(e);
- }
- });
- item.cancel();
- });
- w.webContents.downloadURL(`${url}:${port}/`);
- });
- it('can generate a default filename', function (done) {
- if (process.env.APPVEYOR === 'True') {
- // FIXME(alexeykuzmin): Skip the test.
- // this.skip()
- return done();
- }
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function () {
- try {
- expect(item.getFilename()).to.equal('download.pdf');
- done();
- } catch (e) {
- done(e);
- }
- });
- item.cancel();
- });
- w.webContents.downloadURL(`${url}:${port}/?testFilename`);
- });
- it('can set options for the save dialog', (done) => {
- const filePath = path.join(__dirname, 'fixtures', 'mock.pdf');
- const options = {
- window: null,
- title: 'title',
- message: 'message',
- buttonLabel: 'buttonLabel',
- nameFieldLabel: 'nameFieldLabel',
- defaultPath: '/',
- filters: [{
- name: '1', extensions: ['.1', '.2']
- }, {
- name: '2', extensions: ['.3', '.4', '.5']
- }],
- showsTagField: true,
- securityScopedBookmarks: true
- };
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.setSavePath(filePath);
- item.setSaveDialogOptions(options);
- item.on('done', function () {
- try {
- expect(item.getSaveDialogOptions()).to.deep.equal(options);
- done();
- } catch (e) {
- done(e);
- }
- });
- item.cancel();
- });
- w.webContents.downloadURL(`${url}:${port}`);
- });
- describe('when a save path is specified and the URL is unavailable', () => {
- it('does not display a save dialog and reports the done state as interrupted', (done) => {
- const w = new BrowserWindow({ show: false });
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- if (item.getState() === 'interrupted') {
- item.resume();
- }
- item.on('done', function (e, state) {
- try {
- expect(state).to.equal('interrupted');
- done();
- } catch (e) {
- done(e);
- }
- });
- });
- w.webContents.downloadURL(`file://${path.join(__dirname, 'does-not-exist.txt')}`);
- });
- });
- });
- describe('WebView.downloadURL', () => {
- it('can perform a download', async () => {
- const w = new BrowserWindow({ show: false, webPreferences: { webviewTag: true } });
- await w.loadURL('about:blank');
- function webviewDownload ({ fixtures, url, port }: { fixtures: string, url: string, port: string }) {
- const webview = new (window as any).WebView();
- webview.addEventListener('did-finish-load', () => {
- webview.downloadURL(`${url}:${port}/`);
- });
- webview.src = `file://${fixtures}/api/blank.html`;
- document.body.appendChild(webview);
- }
- const done: Promise<[string, Electron.DownloadItem]> = new Promise(resolve => {
- w.webContents.session.once('will-download', function (e, item) {
- item.savePath = downloadFilePath;
- item.on('done', function (e, state) {
- resolve([state, item]);
- });
- });
- });
- await w.webContents.executeJavaScript(`(${webviewDownload})(${JSON.stringify({ fixtures, url, port })})`);
- const [state, item] = await done;
- assertDownload(state, item);
- });
- });
- });
- describe('ses.createInterruptedDownload(options)', () => {
- afterEach(closeAllWindows);
- it('can create an interrupted download item', async () => {
- const downloadFilePath = path.join(__dirname, '..', 'fixtures', 'mock.pdf');
- const options = {
- path: downloadFilePath,
- urlChain: ['http://127.0.0.1/'],
- mimeType: 'application/pdf',
- offset: 0,
- length: 5242880
- };
- const w = new BrowserWindow({ show: false });
- const p = once(w.webContents.session, 'will-download');
- w.webContents.session.createInterruptedDownload(options);
- const [, item] = await p;
- expect(item.getState()).to.equal('interrupted');
- item.cancel();
- expect(item.getURLChain()).to.deep.equal(options.urlChain);
- expect(item.getMimeType()).to.equal(options.mimeType);
- expect(item.getReceivedBytes()).to.equal(options.offset);
- expect(item.getTotalBytes()).to.equal(options.length);
- expect(item.savePath).to.equal(downloadFilePath);
- });
- it('can be resumed', async () => {
- const downloadFilePath = path.join(fixtures, 'logo.png');
- const rangeServer = http.createServer((req, res) => {
- const options = { root: fixtures };
- send(req, req.url!, options)
- .on('error', (error: any) => { throw error; }).pipe(res);
- });
- try {
- const { url } = await listen(rangeServer);
- const w = new BrowserWindow({ show: false });
- const downloadCancelled: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- w.webContents.session.once('will-download', function (e, item) {
- item.setSavePath(downloadFilePath);
- item.on('done', function () {
- resolve(item);
- });
- item.cancel();
- });
- });
- const downloadUrl = `${url}/assets/logo.png`;
- w.webContents.downloadURL(downloadUrl);
- const item = await downloadCancelled;
- expect(item.getState()).to.equal('cancelled');
- const options = {
- path: item.savePath,
- urlChain: item.getURLChain(),
- mimeType: item.getMimeType(),
- offset: item.getReceivedBytes(),
- length: item.getTotalBytes(),
- lastModified: item.getLastModifiedTime(),
- eTag: item.getETag()
- };
- const downloadResumed: Promise<Electron.DownloadItem> = new Promise((resolve) => {
- w.webContents.session.once('will-download', function (e, item) {
- expect(item.getState()).to.equal('interrupted');
- item.setSavePath(downloadFilePath);
- item.resume();
- item.on('done', function () {
- resolve(item);
- });
- });
- });
- w.webContents.session.createInterruptedDownload(options);
- const completedItem = await downloadResumed;
- expect(completedItem.getState()).to.equal('completed');
- expect(completedItem.getFilename()).to.equal('logo.png');
- expect(completedItem.savePath).to.equal(downloadFilePath);
- expect(completedItem.getURL()).to.equal(downloadUrl);
- expect(completedItem.getMimeType()).to.equal('image/png');
- expect(completedItem.getReceivedBytes()).to.equal(14022);
- expect(completedItem.getTotalBytes()).to.equal(14022);
- expect(fs.existsSync(downloadFilePath)).to.equal(true);
- } finally {
- rangeServer.close();
- }
- });
- });
- describe('ses.setPermissionRequestHandler(handler)', () => {
- afterEach(closeAllWindows);
- // These tests are done on an http server because navigator.userAgentData
- // requires a secure context.
- let server: http.Server;
- let serverUrl: string;
- before(async () => {
- server = http.createServer((req, res) => {
- res.setHeader('Content-Type', 'text/html');
- res.end('');
- });
- serverUrl = (await listen(server)).url;
- });
- after(() => {
- server.close();
- });
- it('cancels any pending requests when cleared', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- partition: 'very-temp-permission-handler',
- nodeIntegration: true,
- contextIsolation: false
- }
- });
- const ses = w.webContents.session;
- ses.setPermissionRequestHandler(() => {
- ses.setPermissionRequestHandler(null);
- });
- ses.protocol.interceptStringProtocol('https', (req, cb) => {
- cb(`<html><script>(${remote})()</script></html>`);
- });
- const result = once(require('electron').ipcMain, 'message');
- function remote () {
- (navigator as any).requestMIDIAccess({ sysex: true }).then(() => {}, (err: any) => {
- require('electron').ipcRenderer.send('message', err.name);
- });
- }
- await w.loadURL('https://myfakesite');
- const [, name] = await result;
- expect(name).to.deep.equal('SecurityError');
- });
- it('successfully resolves when calling legacy getUserMedia', async () => {
- const ses = session.fromPartition('' + Math.random());
- ses.setPermissionRequestHandler(
- (_webContents, _permission, callback) => {
- callback(true);
- }
- );
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- await w.loadURL(serverUrl);
- const { ok, message } = await w.webContents.executeJavaScript(`
- new Promise((resolve, reject) => navigator.getUserMedia({
- video: true,
- audio: true,
- }, x => resolve({ok: x instanceof MediaStream}), e => reject({ok: false, message: e.message})))
- `);
- expect(ok).to.be.true(message);
- });
- it('successfully rejects when calling legacy getUserMedia', async () => {
- const ses = session.fromPartition('' + Math.random());
- ses.setPermissionRequestHandler(
- (_webContents, _permission, callback) => {
- callback(false);
- }
- );
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- await w.loadURL(serverUrl);
- await expect(w.webContents.executeJavaScript(`
- new Promise((resolve, reject) => navigator.getUserMedia({
- video: true,
- audio: true,
- }, x => resolve({ok: x instanceof MediaStream}), e => reject({ok: false, message: e.message})))
- `)).to.eventually.be.rejectedWith('Permission denied');
- });
- });
- describe('ses.setPermissionCheckHandler(handler)', () => {
- afterEach(closeAllWindows);
- it('details provides requestingURL for mainFrame', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- partition: 'very-temp-permission-handler'
- }
- });
- const ses = w.webContents.session;
- const loadUrl = 'https://myfakesite/';
- let handlerDetails : Electron.PermissionCheckHandlerHandlerDetails;
- ses.protocol.interceptStringProtocol('https', (req, cb) => {
- cb('<html><script>console.log(\'test\');</script></html>');
- });
- ses.setPermissionCheckHandler((wc, permission, requestingOrigin, details) => {
- if (permission === 'clipboard-read') {
- handlerDetails = details;
- return true;
- }
- return false;
- });
- const readClipboardPermission: any = () => {
- return w.webContents.executeJavaScript(`
- navigator.permissions.query({name: 'clipboard-read'})
- .then(permission => permission.state).catch(err => err.message);
- `, true);
- };
- await w.loadURL(loadUrl);
- const state = await readClipboardPermission();
- expect(state).to.equal('granted');
- expect(handlerDetails!.requestingUrl).to.equal(loadUrl);
- });
- it('details provides requestingURL for cross origin subFrame', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- partition: 'very-temp-permission-handler'
- }
- });
- const ses = w.webContents.session;
- const loadUrl = 'https://myfakesite/';
- let handlerDetails : Electron.PermissionCheckHandlerHandlerDetails;
- ses.protocol.interceptStringProtocol('https', (req, cb) => {
- cb('<html><script>console.log(\'test\');</script></html>');
- });
- ses.setPermissionCheckHandler((wc, permission, requestingOrigin, details) => {
- if (permission === 'clipboard-read') {
- handlerDetails = details;
- return true;
- }
- return false;
- });
- const readClipboardPermission: any = (frame: WebFrameMain) => {
- return frame.executeJavaScript(`
- navigator.permissions.query({name: 'clipboard-read'})
- .then(permission => permission.state).catch(err => err.message);
- `, true);
- };
- await w.loadFile(path.join(fixtures, 'api', 'blank.html'));
- w.webContents.executeJavaScript(`
- var iframe = document.createElement('iframe');
- iframe.src = '${loadUrl}';
- iframe.allow = 'clipboard-read';
- document.body.appendChild(iframe);
- null;
- `);
- const [,, frameProcessId, frameRoutingId] = await once(w.webContents, 'did-frame-finish-load');
- const state = await readClipboardPermission(webFrameMain.fromId(frameProcessId, frameRoutingId));
- expect(state).to.equal('granted');
- expect(handlerDetails!.requestingUrl).to.equal(loadUrl);
- expect(handlerDetails!.isMainFrame).to.be.false();
- expect(handlerDetails!.embeddingOrigin).to.equal('file:///');
- });
- });
- describe('ses.isPersistent()', () => {
- afterEach(closeAllWindows);
- it('returns default session as persistent', () => {
- const w = new BrowserWindow({
- show: false
- });
- const ses = w.webContents.session;
- expect(ses.isPersistent()).to.be.true();
- });
- it('returns persist: session as persistent', () => {
- const ses = session.fromPartition(`persist:${Math.random()}`);
- expect(ses.isPersistent()).to.be.true();
- });
- it('returns temporary session as not persistent', () => {
- const ses = session.fromPartition(`${Math.random()}`);
- expect(ses.isPersistent()).to.be.false();
- });
- });
- describe('ses.setUserAgent()', () => {
- afterEach(closeAllWindows);
- it('can be retrieved with getUserAgent()', () => {
- const userAgent = 'test-agent';
- const ses = session.fromPartition('' + Math.random());
- ses.setUserAgent(userAgent);
- expect(ses.getUserAgent()).to.equal(userAgent);
- });
- it('sets the User-Agent header for web requests made from renderers', async () => {
- const userAgent = 'test-agent';
- const ses = session.fromPartition('' + Math.random());
- ses.setUserAgent(userAgent, 'en-US,fr,de');
- const w = new BrowserWindow({ show: false, webPreferences: { session: ses } });
- let headers: http.IncomingHttpHeaders | null = null;
- const server = http.createServer((req, res) => {
- headers = req.headers;
- res.end();
- server.close();
- });
- const { url } = await listen(server);
- await w.loadURL(url);
- expect(headers!['user-agent']).to.equal(userAgent);
- expect(headers!['accept-language']).to.equal('en-US,fr;q=0.9,de;q=0.8');
- });
- });
- describe('session-created event', () => {
- it('is emitted when a session is created', async () => {
- const sessionCreated = once(app, 'session-created') as Promise<[any, Session]>;
- const session1 = session.fromPartition('' + Math.random());
- const [session2] = await sessionCreated;
- expect(session1).to.equal(session2);
- });
- });
- describe('session.storagePage', () => {
- it('returns a string', () => {
- expect(session.defaultSession.storagePath).to.be.a('string');
- });
- it('returns null for in memory sessions', () => {
- expect(session.fromPartition('in-memory').storagePath).to.equal(null);
- });
- it('returns different paths for partitions and the default session', () => {
- expect(session.defaultSession.storagePath).to.not.equal(session.fromPartition('persist:two').storagePath);
- });
- it('returns different paths for different partitions', () => {
- expect(session.fromPartition('persist:one').storagePath).to.not.equal(session.fromPartition('persist:two').storagePath);
- });
- });
- describe('session.setCodeCachePath()', () => {
- it('throws when relative or empty path is provided', () => {
- expect(() => {
- session.defaultSession.setCodeCachePath('../fixtures');
- }).to.throw('Absolute path must be provided to store code cache.');
- expect(() => {
- session.defaultSession.setCodeCachePath('');
- }).to.throw('Absolute path must be provided to store code cache.');
- expect(() => {
- session.defaultSession.setCodeCachePath(path.join(app.getPath('userData'), 'electron-test-code-cache'));
- }).to.not.throw();
- });
- });
- describe('ses.setSSLConfig()', () => {
- it('can disable cipher suites', async () => {
- const ses = session.fromPartition('' + Math.random());
- const fixturesPath = path.resolve(__dirname, 'fixtures');
- const certPath = path.join(fixturesPath, 'certificates');
- const server = https.createServer({
- key: fs.readFileSync(path.join(certPath, 'server.key')),
- cert: fs.readFileSync(path.join(certPath, 'server.pem')),
- ca: [
- fs.readFileSync(path.join(certPath, 'rootCA.pem')),
- fs.readFileSync(path.join(certPath, 'intermediateCA.pem'))
- ],
- minVersion: 'TLSv1.2',
- maxVersion: 'TLSv1.2',
- ciphers: 'AES128-GCM-SHA256'
- }, (req, res) => {
- res.end('hi');
- });
- const { port } = await listen(server);
- defer(() => server.close());
- function request () {
- return new Promise((resolve, reject) => {
- const r = net.request({
- url: `https://127.0.0.1:${port}`,
- session: ses
- });
- r.on('response', (res) => {
- let data = '';
- res.on('data', (chunk) => {
- data += chunk.toString('utf8');
- });
- res.on('end', () => {
- resolve(data);
- });
- });
- r.on('error', (err) => {
- reject(err);
- });
- r.end();
- });
- }
- await expect(request()).to.be.rejectedWith(/ERR_CERT_AUTHORITY_INVALID/);
- ses.setSSLConfig({
- disabledCipherSuites: [0x009C]
- });
- await expect(request()).to.be.rejectedWith(/ERR_SSL_VERSION_OR_CIPHER_MISMATCH/);
- });
- });
- describe('ses.clearData()', () => {
- afterEach(closeAllWindows);
- // NOTE: This API clears more than localStorage, but localStorage is a
- // convenient test target for this API
- it('clears all data when no options supplied', async () => {
- const w = new BrowserWindow({ show: false, webPreferences: { nodeIntegration: true } });
- await w.loadFile(path.join(fixtures, 'api', 'localstorage.html'));
- expect(await w.webContents.executeJavaScript('localStorage.length')).to.be.greaterThan(0);
- await w.webContents.session.clearData();
- expect(await w.webContents.executeJavaScript('localStorage.length')).to.equal(0);
- });
- it('clears all data when no options supplied, called twice in parallel', async () => {
- const w = new BrowserWindow({ show: false, webPreferences: { nodeIntegration: true } });
- await w.loadFile(path.join(fixtures, 'api', 'localstorage.html'));
- expect(await w.webContents.executeJavaScript('localStorage.length')).to.be.greaterThan(0);
- // This first call is not awaited immediately
- const clearDataPromise = w.webContents.session.clearData();
- await w.webContents.session.clearData();
- expect(await w.webContents.executeJavaScript('localStorage.length')).to.equal(0);
- // Await the first promise so it doesn't creep into another test
- await clearDataPromise;
- });
- it('only clears specified data categories', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: { nodeIntegration: true, contextIsolation: false }
- });
- await w.loadFile(
- path.join(fixtures, 'api', 'localstorage-and-indexeddb.html')
- );
- const { webContents } = w;
- const { session } = webContents;
- await once(ipcMain, 'indexeddb-ready');
- async function queryData (channel: string): Promise<string> {
- const event = once(ipcMain, `result-${channel}`);
- webContents.send(`get-${channel}`);
- return (await event)[1];
- }
- // Data is in localStorage
- await expect(queryData('localstorage')).to.eventually.equal('hello localstorage');
- // Data is in indexedDB
- await expect(queryData('indexeddb')).to.eventually.equal('hello indexeddb');
- // Clear only indexedDB, not localStorage
- await session.clearData({ dataTypes: ['indexedDB'] });
- // The localStorage data should still be there
- await expect(queryData('localstorage')).to.eventually.equal('hello localstorage');
- // The indexedDB data should be gone
- await expect(queryData('indexeddb')).to.eventually.be.undefined();
- });
- it('only clears the specified origins', async () => {
- const w = new BrowserWindow({ show: false });
- await w.loadURL('about:blank');
- const { session } = w.webContents;
- const { cookies } = session;
- await Promise.all([
- cookies.set({
- url: 'https://example.com/',
- name: 'testdotcom',
- value: 'testdotcom'
- }),
- cookies.set({
- url: 'https://example.org/',
- name: 'testdotorg',
- value: 'testdotorg'
- })
- ]);
- await session.clearData({ origins: ['https://example.com'] });
- expect((await cookies.get({ url: 'https://example.com/', name: 'testdotcom' })).length).to.equal(0);
- expect((await cookies.get({ url: 'https://example.org/', name: 'testdotorg' })).length).to.be.greaterThan(0);
- });
- it('clears all except the specified origins', async () => {
- const w = new BrowserWindow({ show: false });
- await w.loadURL('about:blank');
- const { session } = w.webContents;
- const { cookies } = session;
- await Promise.all([
- cookies.set({
- url: 'https://example.com/',
- name: 'testdotcom',
- value: 'testdotcom'
- }),
- cookies.set({
- url: 'https://example.org/',
- name: 'testdotorg',
- value: 'testdotorg'
- })
- ]);
- await session.clearData({ excludeOrigins: ['https://example.com'] });
- expect((await cookies.get({ url: 'https://example.com/', name: 'testdotcom' })).length).to.be.greaterThan(0);
- expect((await cookies.get({ url: 'https://example.org/', name: 'testdotorg' })).length).to.equal(0);
- });
- });
- });
|