electron/spec/api-touch-bar-spec.js

111 строки
3.9 KiB
JavaScript
Исходник Обычный вид История

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