electron/spec-main/api-touch-bar-spec.ts

111 lines
4 KiB
TypeScript
Raw Normal View History

import * as path from 'path'
import { BrowserWindow, TouchBar } from 'electron'
import { closeWindow } from './window-helpers'
import { expect } from 'chai'
2017-03-03 18:22:25 +00:00
const { TouchBarButton, TouchBarColorPicker, TouchBarGroup, TouchBarLabel, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer } = TouchBar
2017-03-03 18:22:25 +00:00
2017-10-27 01:08:47 +00:00
describe('TouchBar module', () => {
it('throws an error when created without an options object', () => {
expect(() => {
const touchBar = new (TouchBar as any)()
2017-03-03 18:22:25 +00:00
touchBar.toString()
}).to.throw('Must specify options object as first argument')
2017-03-03 18:22:25 +00:00
})
2017-10-27 01:08:47 +00:00
it('throws an error when created with invalid items', () => {
expect(() => {
const touchBar = new TouchBar({ items: [1, true, {}, []] as any })
2017-03-03 18:22:25 +00:00
touchBar.toString()
}).to.throw('Each item must be an instance of TouchBarItem')
2017-03-03 18:22:25 +00:00
})
2017-10-27 01:08:47 +00:00
it('throws an error when an invalid escape item is set', () => {
expect(() => {
const touchBar = new TouchBar({ items: [], escapeItem: 'esc' as any })
touchBar.toString()
}).to.throw('Escape item must be an instance of TouchBarItem')
expect(() => {
2018-09-13 16:10:51 +00:00
const touchBar = new TouchBar({ items: [] })
touchBar.escapeItem = 'esc' as any
}).to.throw('Escape item must be an instance of TouchBarItem')
})
2017-10-27 01:08:47 +00:00
describe('BrowserWindow behavior', () => {
let window: BrowserWindow
2017-03-03 18:22:25 +00:00
2017-10-27 01:08:47 +00:00
beforeEach(() => {
2019-11-01 20:37:02 +00:00
window = new BrowserWindow({ show: false })
2017-03-03 18:22:25 +00:00
})
afterEach(async () => {
2017-03-03 18:22:25 +00:00
window.setTouchBar(null)
await closeWindow(window)
window = null as unknown as BrowserWindow
2017-03-03 18:22:25 +00:00
})
2017-10-27 01:08:47 +00:00
it('can be added to and removed from a window', () => {
2018-09-13 16:10:51 +00:00
const label = new TouchBarLabel({ label: 'bar' })
const touchBar = new TouchBar({ items: [
2018-09-13 16:10:51 +00:00
new TouchBarButton({ label: 'foo', backgroundColor: '#F00', click: () => {} }),
2017-04-18 16:01:43 +00:00
new TouchBarButton({
icon: path.join(__dirname, 'fixtures', 'assets', 'logo.png'),
iconPosition: 'right',
click: () => {}
}),
2018-09-13 16:10:51 +00:00
new TouchBarColorPicker({ selectedColor: '#F00', change: () => {} }),
new TouchBarGroup({ items: new TouchBar({ items: [new TouchBarLabel({ label: 'hello' })] }) }),
label,
new TouchBarPopover({ items: new TouchBar({ items: [new TouchBarButton({ label: 'pop' })] }) }),
2018-09-13 16:10:51 +00:00
new TouchBarSlider({ label: 'slide', value: 5, minValue: 2, maxValue: 75, change: () => {} }),
new TouchBarSpacer({ size: 'large' }),
new TouchBarSegmentedControl({
segmentStyle: 'capsule',
2018-09-13 16:10:51 +00:00
segments: [{ label: 'baz', enabled: false }],
selectedIndex: 5
}),
2018-09-13 16:10:51 +00:00
new TouchBarSegmentedControl({ segments: [] }),
2017-03-13 18:17:55 +00:00
new TouchBarScrubber({
2018-09-13 16:10:51 +00:00
items: [{ label: 'foo' }, { label: 'bar' }, { label: 'baz' }],
selectedStyle: 'outline',
mode: 'fixed',
showArrowButtons: true
2017-03-13 18:17:55 +00:00
})
2019-11-01 20:37:02 +00:00
] })
2018-09-13 16:10:51 +00:00
const escapeButton = new TouchBarButton({ label: 'foo' })
window.setTouchBar(touchBar)
touchBar.escapeItem = escapeButton
label.label = 'baz'
escapeButton.label = 'hello'
window.setTouchBar(null)
2019-11-01 20:37:02 +00:00
window.setTouchBar(new TouchBar({ items: [new TouchBarLabel({ label: 'two' })] }))
touchBar.escapeItem = null
2017-03-03 18:22:25 +00:00
})
2017-10-27 01:08:47 +00:00
it('calls the callback on the items when a window interaction event fires', (done) => {
const button = new TouchBarButton({
label: 'bar',
click: () => {
done()
}
})
2018-09-13 16:10:51 +00:00
const touchBar = new TouchBar({ items: [button] })
window.setTouchBar(touchBar)
window.emit('-touch-bar-interaction', {}, (button as any).id)
})
2017-10-27 01:08:47 +00:00
it('calls the callback on the escape item when a window interaction event fires', (done) => {
const button = new TouchBarButton({
label: 'bar',
click: () => {
done()
}
})
2018-09-13 16:10:51 +00:00
const touchBar = new TouchBar({ escapeItem: button })
window.setTouchBar(touchBar)
window.emit('-touch-bar-interaction', {}, (button as any).id)
})
2017-03-03 18:22:25 +00:00
})
})