123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- const assert = require('assert')
- const fs = require('fs')
- const path = require('path')
- const os = require('os')
- const { shell, remote } = require('electron')
- const { BrowserWindow } = remote
- const { closeWindow } = require('./window-helpers')
- describe('shell module', () => {
- const fixtures = path.resolve(__dirname, 'fixtures')
- const shortcutOptions = {
- target: 'C:\\target',
- description: 'description',
- cwd: 'cwd',
- args: 'args',
- appUserModelId: 'appUserModelId',
- icon: 'icon',
- iconIndex: 1
- }
- describe('shell.openExternal()', () => {
- let envVars = {}
- let w
- beforeEach(function () {
- envVars = {
- display: process.env.DISPLAY,
- de: process.env.DE,
- browser: process.env.BROWSER
- }
- })
- afterEach(async () => {
- await closeWindow(w)
- w = null
- // 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
- }
- })
- it('opens an external link asynchronously', done => {
- const url = 'http://www.example.com'
- if (process.platform === 'linux') {
- process.env.BROWSER = '/bin/true'
- process.env.DE = 'generic'
- process.env.DISPLAY = ''
- }
- // Ensure an external window is activated via a new window's blur event
- w = new BrowserWindow()
- let promiseResolved = false
- let blurEventEmitted = false
- w.on('blur', () => {
- blurEventEmitted = true
- if (promiseResolved) {
- done()
- }
- })
- shell.openExternal(url).then(() => {
- promiseResolved = true
- if (blurEventEmitted || process.platform === 'linux') {
- done()
- }
- })
- })
- it('opens an external link synchronously', () => {
- const url = 'http://www.example.com'
- if (process.platform === 'linux') {
- process.env.DE = 'generic'
- process.env.DE = '/bin/true'
- process.env.DISPLAY = ''
- }
- const success = shell.openExternalSync(url)
- assert.strictEqual(true, success)
- })
- })
- describe('shell.readShortcutLink(shortcutPath)', () => {
- beforeEach(function () {
- if (process.platform !== 'win32') this.skip()
- })
- it('throws when failed', () => {
- assert.throws(() => {
- shell.readShortcutLink('not-exist')
- }, /Failed to read shortcut link/)
- })
- it('reads all properties of a shortcut', () => {
- const shortcut = shell.readShortcutLink(path.join(fixtures, 'assets', 'shortcut.lnk'))
- assert.deepStrictEqual(shortcut, shortcutOptions)
- })
- })
- describe('shell.writeShortcutLink(shortcutPath[, operation], options)', () => {
- beforeEach(function () {
- if (process.platform !== 'win32') this.skip()
- })
- const tmpShortcut = path.join(os.tmpdir(), `${Date.now()}.lnk`)
- afterEach(() => {
- fs.unlinkSync(tmpShortcut)
- })
- it('writes the shortcut', () => {
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, { target: 'C:\\' }), true)
- assert.strictEqual(fs.existsSync(tmpShortcut), true)
- })
- it('correctly sets the fields', () => {
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, shortcutOptions), true)
- assert.deepStrictEqual(shell.readShortcutLink(tmpShortcut), shortcutOptions)
- })
- it('updates the shortcut', () => {
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'update', shortcutOptions), false)
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'create', shortcutOptions), true)
- assert.deepStrictEqual(shell.readShortcutLink(tmpShortcut), shortcutOptions)
- const change = { target: 'D:\\' }
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'update', change), true)
- assert.deepStrictEqual(shell.readShortcutLink(tmpShortcut), Object.assign(shortcutOptions, change))
- })
- it('replaces the shortcut', () => {
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'replace', shortcutOptions), false)
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'create', shortcutOptions), true)
- assert.deepStrictEqual(shell.readShortcutLink(tmpShortcut), shortcutOptions)
- const change = {
- target: 'D:\\',
- description: 'description2',
- cwd: 'cwd2',
- args: 'args2',
- appUserModelId: 'appUserModelId2',
- icon: 'icon2',
- iconIndex: 2
- }
- assert.strictEqual(shell.writeShortcutLink(tmpShortcut, 'replace', change), true)
- assert.deepStrictEqual(shell.readShortcutLink(tmpShortcut), change)
- })
- })
- })
|