electron/spec-main/api-shell-spec.ts

116 lines
4.3 KiB
TypeScript
Raw Normal View History

import { BrowserWindow, app } from 'electron/main';
import { shell } from 'electron/common';
2020-03-20 20:28:31 +00:00
import { closeAllWindows } from './window-helpers';
import { emittedOnce } from './events-helpers';
import * as http from 'http';
import * as fs from 'fs-extra';
import * as path from 'path';
2020-03-20 20:28:31 +00:00
import { AddressInfo } from 'net';
import { expect } from 'chai';
import { ifit } from './spec-helpers';
import { execSync } from 'child_process';
describe('shell module', () => {
describe('shell.openExternal()', () => {
2020-03-20 20:28:31 +00:00
let envVars: Record<string, string | undefined> = {};
beforeEach(function () {
envVars = {
display: process.env.DISPLAY,
de: process.env.DE,
browser: process.env.BROWSER
2020-03-20 20:28:31 +00:00
};
});
afterEach(async () => {
// reset env vars to prevent side effects
if (process.platform === 'linux') {
2020-03-20 20:28:31 +00:00
process.env.DE = envVars.de;
process.env.BROWSER = envVars.browser;
process.env.DISPLAY = envVars.display;
}
2020-03-20 20:28:31 +00:00
});
afterEach(closeAllWindows);
it('opens an external link', async () => {
2020-03-20 20:28:31 +00:00
let url = 'http://127.0.0.1';
let requestReceived;
if (process.platform === 'linux') {
2020-03-20 20:28:31 +00:00
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.
2020-03-20 20:28:31 +00:00
const w = new BrowserWindow({ show: true });
requestReceived = emittedOnce(w, 'blur');
} else {
const server = http.createServer((req, res) => {
2020-03-20 20:28:31 +00:00
res.end();
});
await new Promise(resolve => server.listen(0, '127.0.0.1', resolve));
requestReceived = new Promise(resolve => server.on('connection', () => resolve()));
url = `http://127.0.0.1:${(server.address() as AddressInfo).port}`;
}
await Promise.all([
shell.openExternal(url),
requestReceived
2020-03-20 20:28:31 +00:00
]);
});
});
describe('shell.moveItemToTrash()', () => {
it('moves an item to the trash', async () => {
const dir = await fs.mkdtemp(path.resolve(app.getPath('temp'), 'electron-shell-spec-'));
const filename = path.join(dir, 'temp-to-be-deleted');
await fs.writeFile(filename, 'dummy-contents');
const result = shell.moveItemToTrash(filename);
expect(result).to.be.true();
expect(fs.existsSync(filename)).to.be.false();
});
it('returns false when called with a nonexistent path', () => {
const filename = path.join(app.getPath('temp'), 'does-not-exist');
const result = shell.moveItemToTrash(filename);
expect(result).to.be.false();
});
ifit(process.platform === 'darwin')('returns false when file has immutable flag', async () => {
const dir = await fs.mkdtemp(path.resolve(app.getPath('temp'), 'electron-shell-spec-'));
const tempPath = path.join(dir, 'locked-file');
await fs.writeFile(tempPath, 'delete me if you can');
// https://ss64.com/osx/chflags.html
execSync(`chflags uchg ${tempPath}`);
expect(shell.moveItemToTrash(tempPath)).to.be.false();
expect(await fs.pathExists(tempPath)).to.be.true();
execSync(`chflags nouchg ${tempPath}`);
expect(shell.moveItemToTrash(tempPath)).to.be.true();
expect(await fs.pathExists(tempPath)).to.be.false();
});
ifit(process.platform === 'win32')('returns false when path is in use', async () => {
const tempPath = await fs.mkdtemp(path.resolve(app.getPath('temp'), 'electron-shell-spec-'));
const cwd = process.cwd();
try {
// A process working directory is automatically locked on Windows.
// This is a workaround to avoid pulling in fs-extras flock method.
process.chdir(tempPath);
expect(shell.moveItemToTrash(tempPath)).to.be.false();
expect(await fs.pathExists(tempPath)).to.be.true();
} finally {
process.chdir(cwd);
}
expect(shell.moveItemToTrash(tempPath)).to.be.true();
expect(await fs.pathExists(tempPath)).to.be.false();
});
});
2020-03-20 20:28:31 +00:00
});