2019-12-09 22:17:36 +03:00
|
|
|
import * as cp from 'child_process'
|
|
|
|
import * as path from 'path'
|
2019-07-26 17:17:14 +03:00
|
|
|
import { expect } from 'chai'
|
2019-10-31 02:38:21 +03:00
|
|
|
import { BrowserWindow, Menu, MenuItem } from 'electron'
|
2019-07-26 17:17:14 +03:00
|
|
|
import { sortMenuItems } from '../lib/browser/api/menu-utils'
|
2019-12-09 22:17:36 +03:00
|
|
|
import { emittedOnce } from './events-helpers'
|
|
|
|
import { ifit } from './spec-helpers'
|
2019-07-26 17:17:14 +03:00
|
|
|
import { closeWindow } from './window-helpers'
|
2016-01-12 05:40:23 +03:00
|
|
|
|
2019-12-09 22:17:36 +03:00
|
|
|
const fixturesPath = path.resolve(__dirname, 'fixtures')
|
|
|
|
|
2019-07-26 17:17:14 +03:00
|
|
|
describe('Menu module', function () {
|
|
|
|
this.timeout(5000)
|
2017-10-27 23:45:58 +03:00
|
|
|
describe('Menu.buildFromTemplate', () => {
|
|
|
|
it('should be able to attach extra fields', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2016-01-12 05:40:23 +03:00
|
|
|
{
|
|
|
|
label: 'text',
|
|
|
|
extra: 'field'
|
2019-07-26 17:17:14 +03:00
|
|
|
} as MenuItem | Record<string, any>
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2019-07-26 17:17:14 +03:00
|
|
|
expect((menu.items[0] as any).extra).to.equal('field')
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2019-02-06 21:04:40 +03:00
|
|
|
it('should be able to accept only MenuItems', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
new MenuItem({ label: 'one' }),
|
|
|
|
new MenuItem({ label: 'two' })
|
|
|
|
])
|
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be able to accept only MenuItems in a submenu', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
label: 'one',
|
|
|
|
submenu: [
|
2019-07-26 17:17:14 +03:00
|
|
|
new MenuItem({ label: 'two' }) as any
|
2019-02-06 21:04:40 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
])
|
|
|
|
expect(menu.items[0].label).to.equal('one')
|
2019-07-26 17:17:14 +03:00
|
|
|
expect(menu.items[0].submenu!.items[0].label).to.equal('two')
|
2019-02-06 21:04:40 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should be able to accept MenuItems and plain objects', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
new MenuItem({ label: 'one' }),
|
|
|
|
{ label: 'two' }
|
|
|
|
])
|
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
})
|
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
it('does not modify the specified template', () => {
|
2018-09-13 19:10:51 +03:00
|
|
|
const template = [{ label: 'text', submenu: [{ label: 'sub' }] }]
|
2019-07-26 17:17:14 +03:00
|
|
|
const templateCopy = JSON.parse(JSON.stringify(template))
|
|
|
|
Menu.buildFromTemplate(template)
|
|
|
|
expect(template).to.deep.equal(templateCopy)
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
it('does not throw exceptions for undefined/null values', () => {
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(() => {
|
2016-03-18 02:09:16 +03:00
|
|
|
Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
label: 'text',
|
|
|
|
accelerator: undefined
|
2016-03-18 02:14:31 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'text again',
|
2019-07-26 17:17:14 +03:00
|
|
|
accelerator: null as any
|
2016-03-18 02:09:16 +03:00
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2018-06-30 10:25:28 +03:00
|
|
|
}).to.not.throw()
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-03-18 02:09:16 +03:00
|
|
|
|
2018-08-17 23:10:14 +03:00
|
|
|
it('does throw exceptions for empty objects and null values', () => {
|
|
|
|
expect(() => {
|
2019-07-26 17:17:14 +03:00
|
|
|
Menu.buildFromTemplate([{}, null as any])
|
2018-08-17 23:10:14 +03:00
|
|
|
}).to.throw(/Invalid template for MenuItem: must have at least one of label, role or type/)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('does throw exception for object without role, label, or type attribute', () => {
|
|
|
|
expect(() => {
|
2020-03-20 18:12:18 +03:00
|
|
|
Menu.buildFromTemplate([{ visible: true }])
|
2018-08-17 23:10:14 +03:00
|
|
|
}).to.throw(/Invalid template for MenuItem: must have at least one of label, role or type/)
|
|
|
|
})
|
|
|
|
it('does throw exception for undefined', () => {
|
|
|
|
expect(() => {
|
2019-07-26 17:17:14 +03:00
|
|
|
Menu.buildFromTemplate([undefined as any])
|
2018-08-17 23:10:14 +03:00
|
|
|
}).to.throw(/Invalid template for MenuItem: must have at least one of label, role or type/)
|
|
|
|
})
|
|
|
|
|
2018-05-05 19:37:29 +03:00
|
|
|
describe('Menu sorting and building', () => {
|
|
|
|
describe('sorts groups', () => {
|
|
|
|
it('does a simple sort', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
label: 'two',
|
|
|
|
id: '2',
|
2020-03-20 18:12:18 +03:00
|
|
|
afterGroupContaining: ['1']
|
|
|
|
},
|
2018-05-05 19:37:29 +03:00
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
afterGroupContaining: ['1']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
2019-02-06 21:04:40 +03:00
|
|
|
it('does a simple sort with MenuItems', () => {
|
|
|
|
const firstItem = new MenuItem({ id: '1', label: 'one' })
|
|
|
|
const secondItem = new MenuItem({
|
|
|
|
label: 'two',
|
|
|
|
id: '2',
|
|
|
|
afterGroupContaining: ['1']
|
|
|
|
})
|
|
|
|
const sep = new MenuItem({ type: 'separator' })
|
|
|
|
|
2020-03-20 18:12:18 +03:00
|
|
|
const items = [secondItem, sep, firstItem]
|
|
|
|
const expected = [firstItem, sep, secondItem]
|
2019-02-06 21:04:40 +03:00
|
|
|
|
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
|
|
|
})
|
|
|
|
|
2018-05-05 19:37:29 +03:00
|
|
|
it('resolves cycles by ignoring things that conflict', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
afterGroupContaining: ['1']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
afterGroupContaining: ['2']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
afterGroupContaining: ['2']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
afterGroupContaining: ['1']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('ignores references to commands that do not exist', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
afterGroupContaining: ['does-not-exist']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
afterGroupContaining: ['does-not-exist']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('only respects the first matching [before|after]GroupContaining rule in a given group', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
beforeGroupContaining: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four',
|
|
|
|
afterGroupContaining: ['2']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
beforeGroupContaining: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four',
|
|
|
|
afterGroupContaining: ['2']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('moves an item to a different group by merging groups', () => {
|
|
|
|
it('can move a group of one item', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{ type: 'separator' }
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it("moves all items in the moving item's group", () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four'
|
|
|
|
},
|
|
|
|
{ type: 'separator' }
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it("ignores positions relative to commands that don't exist", () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['does-not-exist']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{ type: 'separator' }
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['does-not-exist']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
label: 'four',
|
|
|
|
after: ['1']
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can handle recursive group merging', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
after: ['3']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
before: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two',
|
|
|
|
before: ['1']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
after: ['3']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can merge multiple groups when given a list of before/after commands', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1', '2']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1', '2']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can merge multiple groups based on both before/after commands', () => {
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
},
|
|
|
|
{ type: 'separator' },
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1'],
|
|
|
|
before: ['2']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const expected = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
label: 'one'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
label: 'three',
|
|
|
|
after: ['1'],
|
|
|
|
before: ['2']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(sortMenuItems(items)).to.deep.equal(expected)
|
2018-05-05 19:37:29 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
it('should position before existing item', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2016-01-12 05:40:23 +03:00
|
|
|
{
|
2018-05-05 19:37:29 +03:00
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
2018-05-05 19:37:29 +03:00
|
|
|
id: '3',
|
|
|
|
label: 'three'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
|
|
|
id: '1',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'one',
|
|
|
|
before: ['2']
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2018-05-05 19:37:29 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
expect(menu.items[2].label).to.equal('three')
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
it('should position after existing item', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2016-01-12 05:40:23 +03:00
|
|
|
{
|
|
|
|
id: '2',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'two',
|
|
|
|
after: ['1']
|
|
|
|
},
|
2016-01-12 05:40:23 +03:00
|
|
|
{
|
|
|
|
id: '1',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'one'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
|
|
|
id: '3',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'three'
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2018-02-05 20:55:12 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
expect(menu.items[2].label).to.equal('three')
|
2018-02-05 20:55:12 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should filter excess menu separators', () => {
|
|
|
|
const menuOne = Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
type: 'separator'
|
|
|
|
}, {
|
|
|
|
label: 'a'
|
|
|
|
}, {
|
|
|
|
label: 'b'
|
|
|
|
}, {
|
|
|
|
label: 'c'
|
|
|
|
}, {
|
|
|
|
type: 'separator'
|
|
|
|
}
|
|
|
|
])
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menuOne.items).to.have.length(3)
|
|
|
|
expect(menuOne.items[0].label).to.equal('a')
|
|
|
|
expect(menuOne.items[1].label).to.equal('b')
|
|
|
|
expect(menuOne.items[2].label).to.equal('c')
|
2018-02-05 20:55:12 +03:00
|
|
|
|
|
|
|
const menuTwo = Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
type: 'separator'
|
|
|
|
}, {
|
|
|
|
type: 'separator'
|
|
|
|
}, {
|
|
|
|
label: 'a'
|
|
|
|
}, {
|
|
|
|
label: 'b'
|
|
|
|
}, {
|
|
|
|
label: 'c'
|
|
|
|
}, {
|
|
|
|
type: 'separator'
|
|
|
|
}, {
|
|
|
|
type: 'separator'
|
|
|
|
}
|
|
|
|
])
|
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menuTwo.items).to.have.length(3)
|
|
|
|
expect(menuTwo.items[0].label).to.equal('a')
|
|
|
|
expect(menuTwo.items[1].label).to.equal('b')
|
|
|
|
expect(menuTwo.items[2].label).to.equal('c')
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2018-05-05 19:37:29 +03:00
|
|
|
it('should continue inserting items at next index when no specifier is present', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2016-01-12 05:40:23 +03:00
|
|
|
{
|
|
|
|
id: '2',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'two'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
|
|
|
id: '3',
|
2018-05-05 19:37:29 +03:00
|
|
|
label: 'three'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
2018-05-05 19:37:29 +03:00
|
|
|
id: '4',
|
|
|
|
label: 'four'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
2018-05-05 19:37:29 +03:00
|
|
|
id: '5',
|
|
|
|
label: 'five'
|
2016-01-12 05:40:23 +03:00
|
|
|
}, {
|
2018-05-05 19:37:29 +03:00
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
before: ['2']
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2018-05-05 19:37:29 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
expect(menu.items[2].label).to.equal('three')
|
|
|
|
expect(menu.items[3].label).to.equal('four')
|
|
|
|
expect(menu.items[4].label).to.equal('five')
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2019-02-06 21:04:40 +03:00
|
|
|
|
|
|
|
it('should continue inserting MenuItems at next index when no specifier is present', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
new MenuItem({
|
|
|
|
id: '2',
|
|
|
|
label: 'two'
|
|
|
|
}), new MenuItem({
|
|
|
|
id: '3',
|
|
|
|
label: 'three'
|
|
|
|
}), new MenuItem({
|
|
|
|
id: '4',
|
|
|
|
label: 'four'
|
|
|
|
}), new MenuItem({
|
|
|
|
id: '5',
|
|
|
|
label: 'five'
|
|
|
|
}), new MenuItem({
|
|
|
|
id: '1',
|
|
|
|
label: 'one',
|
|
|
|
before: ['2']
|
|
|
|
})
|
|
|
|
])
|
|
|
|
|
|
|
|
expect(menu.items[0].label).to.equal('one')
|
|
|
|
expect(menu.items[1].label).to.equal('two')
|
|
|
|
expect(menu.items[2].label).to.equal('three')
|
|
|
|
expect(menu.items[3].label).to.equal('four')
|
|
|
|
expect(menu.items[4].label).to.equal('five')
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
describe('Menu.getMenuItemById', () => {
|
|
|
|
it('should return the item with the given id', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2017-09-27 03:05:51 +03:00
|
|
|
{
|
|
|
|
label: 'View',
|
|
|
|
submenu: [
|
|
|
|
{
|
|
|
|
label: 'Enter Fullscreen',
|
2018-05-05 19:37:29 +03:00
|
|
|
accelerator: 'ControlCommandF',
|
2017-09-27 03:05:51 +03:00
|
|
|
id: 'fullScreen'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])
|
|
|
|
const fsc = menu.getMenuItemById('fullScreen')
|
2019-07-26 17:17:14 +03:00
|
|
|
expect(menu.items[0].submenu!.items[0]).to.equal(fsc)
|
2017-09-27 03:05:51 +03:00
|
|
|
})
|
2018-10-19 23:09:40 +03:00
|
|
|
|
|
|
|
it('should return the separator with the given id', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
label: 'Item 1',
|
|
|
|
id: 'item_1'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'separator',
|
|
|
|
type: 'separator'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Item 2',
|
|
|
|
id: 'item_2'
|
|
|
|
}
|
|
|
|
])
|
|
|
|
const separator = menu.getMenuItemById('separator')
|
|
|
|
expect(separator).to.be.an('object')
|
|
|
|
expect(separator).to.equal(menu.items[1])
|
|
|
|
})
|
2017-09-27 03:05:51 +03:00
|
|
|
})
|
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
describe('Menu.insert', () => {
|
2019-03-18 17:58:42 +03:00
|
|
|
it('should throw when attempting to insert at out-of-range indices', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
|
|
|
{ label: '1' },
|
|
|
|
{ label: '2' },
|
|
|
|
{ label: '3' }
|
|
|
|
])
|
|
|
|
|
|
|
|
const item = new MenuItem({ label: 'badInsert' })
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
menu.insert(9999, item)
|
|
|
|
}).to.throw(/Position 9999 cannot be greater than the total MenuItem count/)
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
menu.insert(-9999, item)
|
|
|
|
}).to.throw(/Position -9999 cannot be less than 0/)
|
|
|
|
})
|
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
it('should store item in @items by its index', () => {
|
2017-10-25 03:27:26 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2018-09-13 19:10:51 +03:00
|
|
|
{ label: '1' },
|
|
|
|
{ label: '2' },
|
|
|
|
{ label: '3' }
|
2016-03-25 23:03:49 +03:00
|
|
|
])
|
2017-10-25 05:40:31 +03:00
|
|
|
|
2017-10-25 03:27:26 +03:00
|
|
|
const item = new MenuItem({ label: 'inserted' })
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
menu.insert(1, item)
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menu.items[0].label).to.equal('1')
|
|
|
|
expect(menu.items[1].label).to.equal('inserted')
|
|
|
|
expect(menu.items[2].label).to.equal('2')
|
|
|
|
expect(menu.items[3].label).to.equal('3')
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
describe('Menu.append', () => {
|
|
|
|
it('should add the item to the end of the menu', () => {
|
2017-10-25 05:40:31 +03:00
|
|
|
const menu = Menu.buildFromTemplate([
|
2018-09-13 19:10:51 +03:00
|
|
|
{ label: '1' },
|
|
|
|
{ label: '2' },
|
|
|
|
{ label: '3' }
|
2017-10-25 05:40:31 +03:00
|
|
|
])
|
|
|
|
|
2018-02-23 16:53:59 +03:00
|
|
|
const item = new MenuItem({ label: 'inserted' })
|
2017-10-25 05:40:31 +03:00
|
|
|
menu.append(item)
|
2018-02-23 16:53:59 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(menu.items[0].label).to.equal('1')
|
|
|
|
expect(menu.items[1].label).to.equal('2')
|
|
|
|
expect(menu.items[2].label).to.equal('3')
|
|
|
|
expect(menu.items[3].label).to.equal('inserted')
|
2017-10-25 05:40:31 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-01-27 20:38:55 +03:00
|
|
|
describe('Menu.popup', () => {
|
2019-07-26 17:17:14 +03:00
|
|
|
let w: BrowserWindow
|
|
|
|
let menu: Menu
|
2017-10-25 03:27:26 +03:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-09-13 19:10:51 +03:00
|
|
|
w = new BrowserWindow({ show: false, width: 200, height: 200 })
|
2017-10-25 03:27:26 +03:00
|
|
|
menu = Menu.buildFromTemplate([
|
2018-09-13 19:10:51 +03:00
|
|
|
{ label: '1' },
|
|
|
|
{ label: '2' },
|
|
|
|
{ label: '3' }
|
2017-10-25 03:27:26 +03:00
|
|
|
])
|
|
|
|
})
|
2017-02-16 21:58:12 +03:00
|
|
|
|
2019-07-26 17:17:14 +03:00
|
|
|
afterEach(async () => {
|
2017-12-12 23:23:02 +03:00
|
|
|
menu.closePopup()
|
|
|
|
menu.closePopup(w)
|
2019-07-26 17:17:14 +03:00
|
|
|
await closeWindow(w)
|
|
|
|
w = null as unknown as BrowserWindow
|
2017-02-16 21:58:12 +03:00
|
|
|
})
|
|
|
|
|
2018-03-17 00:31:10 +03:00
|
|
|
it('throws an error if options is not an object', () => {
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(() => {
|
2019-07-26 17:17:14 +03:00
|
|
|
menu.popup('this is a string, not an object' as any)
|
2018-06-30 10:25:28 +03:00
|
|
|
}).to.throw(/Options must be an object/)
|
2018-03-17 00:31:10 +03:00
|
|
|
})
|
|
|
|
|
2018-08-09 01:38:52 +03:00
|
|
|
it('allows for options to be optional', () => {
|
|
|
|
expect(() => {
|
|
|
|
menu.popup({})
|
|
|
|
}).to.not.throw()
|
|
|
|
})
|
|
|
|
|
2018-01-27 19:23:46 +03:00
|
|
|
it('should emit menu-will-show event', (done) => {
|
|
|
|
menu.on('menu-will-show', () => { done() })
|
2018-09-13 19:10:51 +03:00
|
|
|
menu.popup({ window: w })
|
2018-01-27 19:23:46 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit menu-will-close event', (done) => {
|
2018-01-27 20:36:51 +03:00
|
|
|
menu.on('menu-will-close', () => { done() })
|
2018-09-13 19:10:51 +03:00
|
|
|
menu.popup({ window: w })
|
2019-07-26 17:17:14 +03:00
|
|
|
// https://github.com/electron/electron/issues/19411
|
|
|
|
setTimeout(() => {
|
|
|
|
menu.closePopup()
|
|
|
|
})
|
2018-01-27 19:23:46 +03:00
|
|
|
})
|
|
|
|
|
2017-09-14 00:13:45 +03:00
|
|
|
it('returns immediately', () => {
|
2018-09-13 19:10:51 +03:00
|
|
|
const input = { window: w, x: 100, y: 101 }
|
2019-07-26 17:17:14 +03:00
|
|
|
const output = menu.popup(input) as unknown as {x: number, y: number, browserWindow: BrowserWindow}
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(output.x).to.equal(input.x)
|
|
|
|
expect(output.y).to.equal(input.y)
|
|
|
|
expect(output.browserWindow).to.equal(input.window)
|
2017-12-12 00:54:43 +03:00
|
|
|
})
|
2017-12-09 01:52:21 +03:00
|
|
|
|
|
|
|
it('works without a given BrowserWindow and options', () => {
|
2019-07-26 17:17:14 +03:00
|
|
|
const { browserWindow, x, y } = menu.popup({ x: 100, y: 101 }) as unknown as {x: number, y: number, browserWindow: BrowserWindow}
|
2017-12-12 00:54:43 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(browserWindow.constructor.name).to.equal('BrowserWindow')
|
|
|
|
expect(x).to.equal(100)
|
|
|
|
expect(y).to.equal(101)
|
2017-12-09 01:52:21 +03:00
|
|
|
})
|
|
|
|
|
2018-02-20 04:59:47 +03:00
|
|
|
it('works with a given BrowserWindow, options and callback', (done) => {
|
2018-09-13 19:10:51 +03:00
|
|
|
const { x, y } = menu.popup({
|
2018-02-20 19:10:53 +03:00
|
|
|
window: w,
|
|
|
|
x: 100,
|
|
|
|
y: 101,
|
|
|
|
callback: () => done()
|
2019-07-26 17:17:14 +03:00
|
|
|
}) as unknown as {x: number, y: number}
|
2017-12-12 00:54:43 +03:00
|
|
|
|
2018-06-30 10:25:28 +03:00
|
|
|
expect(x).to.equal(100)
|
|
|
|
expect(y).to.equal(101)
|
2019-07-26 17:17:14 +03:00
|
|
|
// https://github.com/electron/electron/issues/19411
|
|
|
|
setTimeout(() => {
|
|
|
|
menu.closePopup()
|
|
|
|
})
|
2018-02-19 21:15:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('works with a given BrowserWindow, no options, and a callback', (done) => {
|
2018-09-13 19:10:51 +03:00
|
|
|
menu.popup({ window: w, callback: () => done() })
|
2019-07-26 17:17:14 +03:00
|
|
|
// https://github.com/electron/electron/issues/19411
|
|
|
|
setTimeout(() => {
|
|
|
|
menu.closePopup()
|
|
|
|
})
|
2018-01-01 11:17:01 +03:00
|
|
|
})
|
2019-11-20 14:17:39 +03:00
|
|
|
|
|
|
|
it('prevents menu from getting garbage-collected when popuping', (done) => {
|
|
|
|
const menu = Menu.buildFromTemplate([{ role: 'paste' }])
|
|
|
|
menu.popup({ window: w })
|
|
|
|
|
|
|
|
// Keep a weak reference to the menu.
|
|
|
|
const v8Util = process.electronBinding('v8_util')
|
2019-11-21 15:32:31 +03:00
|
|
|
const map = v8Util.createIDWeakMap<Electron.Menu>()
|
2019-11-20 14:17:39 +03:00
|
|
|
map.set(0, menu)
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
// Do garbage collection, since |menu| is not referenced in this closure
|
|
|
|
// it would be gone after next call.
|
|
|
|
v8Util.requestGarbageCollectionForTesting()
|
|
|
|
setTimeout(() => {
|
|
|
|
// Try to receive menu from weak reference.
|
|
|
|
if (map.has(0)) {
|
2019-11-21 15:32:31 +03:00
|
|
|
map.get(0)!.closePopup()
|
2019-11-20 14:17:39 +03:00
|
|
|
done()
|
|
|
|
} else {
|
|
|
|
done('Menu is garbage-collected while popuping')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2017-02-16 21:58:12 +03:00
|
|
|
})
|
2017-10-25 05:40:31 +03:00
|
|
|
|
2017-10-27 23:45:58 +03:00
|
|
|
describe('Menu.setApplicationMenu', () => {
|
2017-11-08 00:29:37 +03:00
|
|
|
it('sets a menu', () => {
|
|
|
|
const menu = Menu.buildFromTemplate([
|
2018-09-13 19:10:51 +03:00
|
|
|
{ label: '1' },
|
|
|
|
{ label: '2' }
|
2017-11-08 00:29:37 +03:00
|
|
|
])
|
2018-02-23 16:53:59 +03:00
|
|
|
|
2017-11-08 00:29:37 +03:00
|
|
|
Menu.setApplicationMenu(menu)
|
2019-07-26 17:17:14 +03:00
|
|
|
expect(Menu.getApplicationMenu()).to.not.be.null('application menu')
|
2017-11-08 00:29:37 +03:00
|
|
|
})
|
|
|
|
|
2020-03-04 00:35:05 +03:00
|
|
|
// TODO(nornagon): this causes the focus handling tests to fail
|
|
|
|
it.skip('unsets a menu with null', () => {
|
2017-11-08 00:29:37 +03:00
|
|
|
Menu.setApplicationMenu(null)
|
2019-07-26 17:17:14 +03:00
|
|
|
expect(Menu.getApplicationMenu()).to.be.null('application menu')
|
2017-11-08 00:29:37 +03:00
|
|
|
})
|
2019-12-09 22:17:36 +03:00
|
|
|
|
|
|
|
ifit(process.platform !== 'darwin')('does not override menu visibility on startup', async () => {
|
|
|
|
const appPath = path.join(fixturesPath, 'api', 'test-menu-visibility')
|
|
|
|
const appProcess = cp.spawn(process.execPath, [appPath])
|
|
|
|
|
|
|
|
let output = ''
|
|
|
|
appProcess.stdout.on('data', data => { output += data })
|
|
|
|
|
2020-01-27 04:29:50 +03:00
|
|
|
await emittedOnce(appProcess, 'exit')
|
2019-12-09 22:17:36 +03:00
|
|
|
expect(output).to.include('Window has no menu')
|
|
|
|
})
|
|
|
|
|
|
|
|
ifit(process.platform !== 'darwin')('does not override null menu on startup', async () => {
|
|
|
|
const appPath = path.join(fixturesPath, 'api', 'test-menu-null')
|
|
|
|
const appProcess = cp.spawn(process.execPath, [appPath])
|
|
|
|
|
|
|
|
let output = ''
|
|
|
|
appProcess.stdout.on('data', data => { output += data })
|
2020-02-06 19:15:55 +03:00
|
|
|
appProcess.stderr.on('data', data => { output += data })
|
2019-12-09 22:17:36 +03:00
|
|
|
|
2020-02-06 19:15:55 +03:00
|
|
|
const [code] = await emittedOnce(appProcess, 'exit')
|
|
|
|
if (!output.includes('Window has no menu')) {
|
|
|
|
console.log(code, output)
|
|
|
|
}
|
2019-12-09 22:17:36 +03:00
|
|
|
expect(output).to.include('Window has no menu')
|
|
|
|
})
|
2017-10-25 05:40:31 +03:00
|
|
|
})
|
2016-10-05 22:24:08 +03:00
|
|
|
})
|