123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- import { shell } from 'electron/common';
- import { BrowserWindow, app } from 'electron/main';
- import { expect } from 'chai';
- import { once } from 'node:events';
- import * as fs from 'node:fs';
- import * as http from 'node:http';
- import * as os from 'node:os';
- import * as path from 'node:path';
- import { ifdescribe, ifit, listen } from './lib/spec-helpers';
- import { closeAllWindows } from './lib/window-helpers';
- describe('shell module', () => {
- describe('shell.openExternal()', () => {
- let envVars: Record<string, string | undefined> = {};
- let server: http.Server;
- beforeEach(function () {
- envVars = {
- display: process.env.DISPLAY,
- de: process.env.DE,
- browser: process.env.BROWSER
- };
- });
- afterEach(async () => {
- // reset env vars to prevent side effects
- if (process.platform === 'linux') {
- process.env.DE = envVars.de;
- process.env.BROWSER = envVars.browser;
- process.env.DISPLAY = envVars.display;
- }
- await closeAllWindows();
- if (server) {
- server.close();
- server = null as unknown as http.Server;
- }
- });
- async function urlOpened () {
- let url = 'http://127.0.0.1';
- let requestReceived: Promise<any>;
- if (process.platform === 'linux') {
- process.env.BROWSER = '/bin/true';
- process.env.DE = 'generic';
- process.env.DISPLAY = '';
- requestReceived = Promise.resolve();
- } else if (process.platform === 'darwin') {
- // On the Mac CI machines, Safari tries to ask for a password to the
- // code signing keychain we set up to test code signing (see
- // https://github.com/electron/electron/pull/19969#issuecomment-526278890),
- // so use a blur event as a crude proxy.
- const w = new BrowserWindow({ show: true });
- requestReceived = once(w, 'blur');
- } else {
- server = http.createServer((req, res) => {
- res.end();
- });
- url = (await listen(server)).url;
- requestReceived = new Promise<void>(resolve => server.on('connection', () => resolve()));
- }
- return { url, requestReceived };
- }
- it('opens an external link', async () => {
- const { url, requestReceived } = await urlOpened();
- await Promise.all<void>([
- shell.openExternal(url),
- requestReceived
- ]);
- });
- it('opens an external link in the renderer', async () => {
- const { url, requestReceived } = await urlOpened();
- const w = new BrowserWindow({ show: false, webPreferences: { sandbox: false, contextIsolation: false, nodeIntegration: true } });
- await w.loadURL('about:blank');
- await Promise.all<void>([
- w.webContents.executeJavaScript(`require("electron").shell.openExternal(${JSON.stringify(url)})`),
- requestReceived
- ]);
- });
- ifit(process.platform === 'darwin')('removes focus from the electron window after opening an external link', async () => {
- const url = 'http://127.0.0.1';
- const w = new BrowserWindow({ show: true });
- await once(w, 'focus');
- expect(w.isFocused()).to.be.true();
- await Promise.all<void>([
- shell.openExternal(url),
- once(w, 'blur') as Promise<any>
- ]);
- expect(w.isFocused()).to.be.false();
- });
- });
- describe('shell.trashItem()', () => {
- afterEach(closeAllWindows);
- it('moves an item to the trash', async () => {
- const dir = await fs.promises.mkdtemp(path.resolve(app.getPath('temp'), 'electron-shell-spec-'));
- const filename = path.join(dir, 'temp-to-be-deleted');
- await fs.promises.writeFile(filename, 'dummy-contents');
- await shell.trashItem(filename);
- expect(fs.existsSync(filename)).to.be.false();
- });
- it('throws when called with a nonexistent path', async () => {
- const filename = path.join(app.getPath('temp'), 'does-not-exist');
- await expect(shell.trashItem(filename)).to.eventually.be.rejected();
- });
- ifit(!(process.platform === 'win32' && process.arch === 'ia32'))('works in the renderer process', async () => {
- const w = new BrowserWindow({ show: false, webPreferences: { nodeIntegration: true, contextIsolation: false } });
- w.loadURL('about:blank');
- await expect(w.webContents.executeJavaScript('require(\'electron\').shell.trashItem(\'does-not-exist\')')).to.be.rejectedWith(/does-not-exist|Failed to move item|Failed to create FileOperation/);
- });
- });
- const shortcutOptions = {
- target: 'C:\\target',
- description: 'description',
- cwd: 'cwd',
- args: 'args',
- appUserModelId: 'appUserModelId',
- icon: 'icon',
- iconIndex: 1,
- toastActivatorClsid: '{0E3CFA27-6FEA-410B-824F-A174B6E865E5}'
- };
- ifdescribe(process.platform === 'win32')('shell.readShortcutLink(shortcutPath)', () => {
- it('throws when failed', () => {
- expect(() => {
- shell.readShortcutLink('not-exist');
- }).to.throw('Failed to read shortcut link');
- });
- const fixtures = path.resolve(__dirname, 'fixtures');
- it('reads all properties of a shortcut', () => {
- const shortcut = shell.readShortcutLink(path.join(fixtures, 'assets', 'shortcut.lnk'));
- expect(shortcut).to.deep.equal(shortcutOptions);
- });
- });
- ifdescribe(process.platform === 'win32')('shell.writeShortcutLink(shortcutPath[, operation], options)', () => {
- const tmpShortcut = path.join(os.tmpdir(), `${Date.now()}.lnk`);
- afterEach(() => {
- fs.unlinkSync(tmpShortcut);
- });
- it('writes the shortcut', () => {
- expect(shell.writeShortcutLink(tmpShortcut, { target: 'C:\\' })).to.be.true();
- expect(fs.existsSync(tmpShortcut)).to.be.true();
- });
- it('correctly sets the fields', () => {
- expect(shell.writeShortcutLink(tmpShortcut, shortcutOptions)).to.be.true();
- expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(shortcutOptions);
- });
- it('updates the shortcut', () => {
- expect(shell.writeShortcutLink(tmpShortcut, 'update', shortcutOptions)).to.be.false();
- expect(shell.writeShortcutLink(tmpShortcut, 'create', shortcutOptions)).to.be.true();
- expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(shortcutOptions);
- const change = { target: 'D:\\' };
- expect(shell.writeShortcutLink(tmpShortcut, 'update', change)).to.be.true();
- expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal({ ...shortcutOptions, ...change });
- });
- it('replaces the shortcut', () => {
- expect(shell.writeShortcutLink(tmpShortcut, 'replace', shortcutOptions)).to.be.false();
- expect(shell.writeShortcutLink(tmpShortcut, 'create', shortcutOptions)).to.be.true();
- expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(shortcutOptions);
- const change = {
- target: 'D:\\',
- description: 'description2',
- cwd: 'cwd2',
- args: 'args2',
- appUserModelId: 'appUserModelId2',
- icon: 'icon2',
- iconIndex: 2,
- toastActivatorClsid: '{C51A3996-CAD9-4934-848B-16285D4A1496}'
- };
- expect(shell.writeShortcutLink(tmpShortcut, 'replace', change)).to.be.true();
- expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(change);
- });
- });
- });
|