electron/spec/api-shell-spec.js

86 lines
2.9 KiB
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
const { expect } = require('chai');
2020-03-20 20:28:31 +00:00
const fs = require('fs');
const path = require('path');
const os = require('os');
const http = require('http');
const { shell } = require('electron');
2017-11-01 14:48:09 +00:00
describe('shell module', () => {
2020-03-20 20:28:31 +00:00
const fixtures = path.resolve(__dirname, 'fixtures');
const shortcutOptions = {
target: 'C:\\target',
description: 'description',
cwd: 'cwd',
args: 'args',
appUserModelId: 'appUserModelId',
icon: 'icon',
iconIndex: 1
2020-03-20 20:28:31 +00:00
};
2017-11-01 14:48:09 +00:00
describe('shell.readShortcutLink(shortcutPath)', () => {
beforeEach(function () {
2020-03-20 20:28:31 +00:00
if (process.platform !== 'win32') this.skip();
});
2017-11-01 14:48:09 +00:00
it('throws when failed', () => {
expect(() => {
2020-03-20 20:28:31 +00:00
shell.readShortcutLink('not-exist');
}).to.throw('Failed to read shortcut link');
});
2017-11-01 14:48:09 +00:00
it('reads all properties of a shortcut', () => {
2020-03-20 20:28:31 +00:00
const shortcut = shell.readShortcutLink(path.join(fixtures, 'assets', 'shortcut.lnk'));
expect(shortcut).to.deep.equal(shortcutOptions);
});
});
2017-11-01 14:48:09 +00:00
describe('shell.writeShortcutLink(shortcutPath[, operation], options)', () => {
beforeEach(function () {
2020-03-20 20:28:31 +00:00
if (process.platform !== 'win32') this.skip();
});
2020-03-20 20:28:31 +00:00
const tmpShortcut = path.join(os.tmpdir(), `${Date.now()}.lnk`);
2017-11-01 14:48:09 +00:00
afterEach(() => {
2020-03-20 20:28:31 +00:00
fs.unlinkSync(tmpShortcut);
});
2017-11-01 14:48:09 +00:00
it('writes the shortcut', () => {
2020-03-20 20:28:31 +00:00
expect(shell.writeShortcutLink(tmpShortcut, { target: 'C:\\' })).to.be.true();
expect(fs.existsSync(tmpShortcut)).to.be.true();
});
2017-11-01 14:48:09 +00:00
it('correctly sets the fields', () => {
2020-03-20 20:28:31 +00:00
expect(shell.writeShortcutLink(tmpShortcut, shortcutOptions)).to.be.true();
expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(shortcutOptions);
});
2017-11-01 14:48:09 +00:00
it('updates the shortcut', () => {
2020-03-20 20:28:31 +00:00
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(Object.assign(shortcutOptions, change));
});
2017-11-01 14:48:09 +00:00
it('replaces the shortcut', () => {
2020-03-20 20:28:31 +00:00
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
2020-03-20 20:28:31 +00:00
};
expect(shell.writeShortcutLink(tmpShortcut, 'replace', change)).to.be.true();
expect(shell.readShortcutLink(tmpShortcut)).to.deep.equal(change);
});
});
});